mirror of https://git.ffmpeg.org/ffmpeg.git
10l
Originally committed as revision 2963 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6748046eaa
commit
5062c202e2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue