avformat/mxfenc: fix index byte count in partition header

(cherry picked from commit 9e24b98b15)
This commit is contained in:
Baptiste Coudurier 2019-07-18 10:35:00 -07:00 committed by Marton Balint
parent 7c4064d9df
commit c60e1d6be5
1 changed files with 1 additions and 2 deletions

View File

@ -1944,8 +1944,7 @@ static int mxf_write_partition(AVFormatContext *s, int bodysid,
index_byte_count = 80;
if (index_byte_count) {
// add encoded ber length
index_byte_count += 16 + klv_ber_length(index_byte_count);
index_byte_count += 16 + 4; // add encoded ber4 length
index_byte_count += klv_fill_size(index_byte_count);
}