mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
movenc: Remove a now redundant check
When using the new first_trun flag instead of checking the track id, we don't need to have a special case for the separate_moof flag any longer. This simplifies the complicated codepath ever so slightly. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
1d8a0c1b43
commit
e7d20f12c5
@ -2473,7 +2473,7 @@ static int mov_write_trun_tag(AVIOContext *pb, MOVMuxContext *mov,
|
||||
|
||||
avio_wb32(pb, track->entry); /* sample count */
|
||||
if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET &&
|
||||
!(mov->flags & (FF_MOV_FLAG_SEPARATE_MOOF | FF_MOV_FLAG_DEFAULT_BASE_MOOF)) &&
|
||||
!(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF) &&
|
||||
!mov->first_trun)
|
||||
avio_wb32(pb, 0); /* Later tracks follow immediately after the previous one */
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user