Browse Source

Use reported_size to truncate final Bink Audio frame

Originally committed as revision 21993 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Peter Ross 15 years ago
parent
commit
c8c77d8d97
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      libavcodec/binkaudio.c

+ 1
- 5
libavcodec/binkaudio.c View File

@@ -272,11 +272,7 @@ static int decode_frame(AVCodecContext *avctx,
get_bits_align32(gb);
}

*data_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);
}
*data_size = FFMIN(reported_size, (uint8_t*)samples - (uint8_t*)data);
return buf_size;
}



Loading…
Cancel
Save