Commit 5062c202 authored by Michael Niedermayer's avatar Michael Niedermayer

10l

Originally committed as revision 2963 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6748046e
......@@ -109,6 +109,10 @@ int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
put_le16(pb, enc->extradata_size);
put_buffer(pb, enc->extradata, enc->extradata_size);
hdrsize += enc->extradata_size;
if(hdrsize&1){
hdrsize++;
put_byte(pb, 0);
}
}
return hdrsize;
......
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