mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
Fix writing Xiph header sizes
Originally committed as revision 10305 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
89e81bbbb9
commit
6d50a935c9
@ -191,7 +191,7 @@ static int mkv_write_header(AVFormatContext *s)
|
||||
for (j = 0; j < 2; j++) {
|
||||
for (k = 0; k < header_len[j] / 255; k++)
|
||||
put_byte(pb, 255);
|
||||
put_byte(pb, header_len[j]);
|
||||
put_byte(pb, header_len[j] % 255);
|
||||
}
|
||||
for (j = 0; j < 3; j++)
|
||||
put_buffer(pb, header_start[j], header_len[j]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user