Commit 2024c226 authored by Michael Niedermayer's avatar Michael Niedermayer

Write 0 instead of seeking forward (and leaving bytes uninitalized),

fixes odd regression test failure i had.

Originally committed as revision 11512 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ab3f71b
......@@ -197,7 +197,8 @@ static void put_ebml_void(ByteIOContext *pb, uint64_t size)
put_ebml_num(pb, size-1, 0);
else
put_ebml_num(pb, size-9, 8);
url_fseek(pb, currentpos + size, SEEK_SET);
while(url_ftell(pb) < currentpos + size)
put_byte(pb, 0);
}
static ebml_master start_ebml_master(ByteIOContext *pb, unsigned int elementid, uint64_t expectedsize)
......
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