Commit c9ae8be5 authored by Michael Bradshaw's avatar Michael Bradshaw Committed by Michael Niedermayer

avformat/matroskaenc: fix Voids with size < 10

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 390eea61
......@@ -280,7 +280,7 @@ static void put_ebml_void(AVIOContext *pb, uint64_t size)
// size we need to reserve so 2 cases, we use 8 bytes to store the
// size if possible, 1 byte otherwise
if (size < 10)
put_ebml_num(pb, size - 1, 0);
put_ebml_num(pb, size - 2, 0);
else
put_ebml_num(pb, size - 9, 8);
ffio_fill(pb, 0, currentpos + size - avio_tell(pb));
......
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