Commit c8c77d8d authored by Peter Ross's avatar Peter Ross

Use reported_size to truncate final Bink Audio frame

Originally committed as revision 21993 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 589760c6
...@@ -272,11 +272,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -272,11 +272,7 @@ static int decode_frame(AVCodecContext *avctx,
get_bits_align32(gb); get_bits_align32(gb);
} }
*data_size = (uint8_t*)samples - (uint8_t*)data; *data_size = FFMIN(reported_size, (uint8_t*)samples - (uint8_t*)data);
if (reported_size != *data_size) {
av_log(avctx, AV_LOG_WARNING, "reported data size (%d) does not match output data size (%d)\n",
reported_size, *data_size);
}
return buf_size; return buf_size;
} }
......
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