mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Don't output the first two frames, since they don't contain valid audio.
This also eases comparison of decoded output with Real's binary decoder. Patch by Ian Braithwaite <ian at braithwaite dot dk> Originally committed as revision 8297 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
39076e27de
commit
4ff5e6563e
@ -1068,6 +1068,9 @@ static int cook_decode_frame(AVCodecContext *avctx,
|
||||
|
||||
*data_size = decode_subpacket(q, buf, avctx->block_align, data);
|
||||
|
||||
/* Discard the first two frames: no valid audio. */
|
||||
if (avctx->frame_number < 2) *data_size = 0;
|
||||
|
||||
return avctx->block_align;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user