You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
movenc: Avoid writing separate flags for the first sample if not necessary
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -2490,7 +2490,8 @@ static int mov_write_trun_tag(AVIOContext *pb, MOVMuxContext *mov,
|
||||
if (i > 0 && get_sample_flags(track, &track->cluster[i]) != track->default_sample_flags)
|
||||
flags |= MOV_TRUN_SAMPLE_FLAGS;
|
||||
}
|
||||
if (!(flags & MOV_TRUN_SAMPLE_FLAGS))
|
||||
if (!(flags & MOV_TRUN_SAMPLE_FLAGS) && track->entry > 0 &&
|
||||
get_sample_flags(track, &track->cluster[0]) != track->default_sample_flags)
|
||||
flags |= MOV_TRUN_FIRST_SAMPLE_FLAGS;
|
||||
if (track->flags & MOV_TRACK_CTTS)
|
||||
flags |= MOV_TRUN_SAMPLE_CTS;
|
||||
|
Reference in New Issue
Block a user