Browse Source

riff: don't pad extradata when writing ASF.

Patch by Anton Khirnov mirror(moc liamg saksyw)

Originally committed as revision 22539 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Anton Khirnov Benoit Fouet 16 years ago
parent
commit
63100f5885
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/riff.c

+ 1
- 1
libavformat/riff.c View File

@@ -443,7 +443,7 @@ void ff_put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const AVCodecTag

put_buffer(pb, enc->extradata, enc->extradata_size);

if (enc->extradata_size & 1)
if (!for_asf && enc->extradata_size & 1)
put_byte(pb, 0);
}
#endif //CONFIG_MUXERS


Loading…
Cancel
Save