avformat/mxfenc: fix index byte count in partition header
This commit is contained in:
committed by
James Almer
parent
a5d2008e2a
commit
3c4e1a56e3
@@ -1857,8 +1857,7 @@ static int mxf_write_partition(AVFormatContext *s, int bodysid,
|
|||||||
index_byte_count = 80;
|
index_byte_count = 80;
|
||||||
|
|
||||||
if (index_byte_count) {
|
if (index_byte_count) {
|
||||||
// add encoded ber length
|
index_byte_count += 16 + 4; // add encoded ber4 length
|
||||||
index_byte_count += 16 + klv_ber_length(index_byte_count);
|
|
||||||
index_byte_count += klv_fill_size(index_byte_count);
|
index_byte_count += klv_fill_size(index_byte_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user