mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-12 13:06:36 +00:00
check body partitions count before writing
Originally committed as revision 17175 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2779cdad07
commit
cfa3caf81c
@ -1112,7 +1112,7 @@ static void mxf_write_partition(AVFormatContext *s, int bodysid,
|
||||
|
||||
if (!memcmp(key, body_partition_key, 16) && mxf->body_partitions_count > 1)
|
||||
put_be64(pb, mxf->body_partition_offset[mxf->body_partitions_count-2]); // PreviousPartition
|
||||
else if (!memcmp(key, footer_partition_key, 16))
|
||||
else if (!memcmp(key, footer_partition_key, 16) && mxf->body_partitions_count)
|
||||
put_be64(pb, mxf->body_partition_offset[mxf->body_partitions_count-1]); // PreviousPartition
|
||||
else
|
||||
put_be64(pb, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user