Commit 63100f58 authored by Anton Khirnov's avatar Anton Khirnov Committed by Benoit Fouet

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
parent 0298cc04
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment