Commit fcf65de4 authored by Max Kellermann's avatar Max Kellermann

mp4ff: always free the mp4ff_read_sample() buffer

When mp4ff_read_sample() returns a value bigger than zero, it guarantees that the buffer is set. Remove the check.
parent 5900ea52
......@@ -287,8 +287,8 @@ mp4_decode(struct decoder *mpd_decoder, struct input_stream *input_stream)
sample_buffer = faacDecDecode(decoder, &frame_info, mp4_buffer);
#endif
if (mp4_buffer)
free(mp4_buffer);
if (frame_info.error > 0) {
g_warning("faad2 error: %s\n",
faacDecGetErrorMessage(frame_info.error));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment