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
This commit is contained in:
Anton Khirnov 2010-03-15 08:49:02 +00:00 committed by Benoit Fouet
parent 0298cc04bd
commit 63100f5885

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