Commit fdffeffc authored by bcoudurier's avatar bcoudurier

fix header byte count

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17119 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 79fef655
......@@ -1036,11 +1036,12 @@ static void mxf_write_partition(AVFormatContext *s, int bodysid,
if (write_metadata) {
// mark the start of the headermetadata and calculate metadata size
int64_t pos, start = url_ftell(s->pb);
int64_t pos, start;
unsigned header_byte_count;
mxf_write_klv_fill(s);
start = url_ftell(s->pb);
mxf_write_primer_pack(s);
mxf_write_header_metadata_sets(s);
pos = url_ftell(s->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