Browse Source

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
tags/v0.5
Ian Braithwaite Benjamin Larsson 18 years ago
parent
commit
4ff5e6563e
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/cook.c

+ 3
- 0
libavcodec/cook.c View File

@@ -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…
Cancel
Save