You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-10-06 05:47:18 +02:00
mp4enc: dont store cts in trun if they are unneeded.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1447,7 +1447,10 @@ static int mov_write_trun_tag(AVIOContext *pb, MOVTrack *track)
|
||||
int tr_flags=0;
|
||||
int i;
|
||||
|
||||
tr_flags |= 0xF00; //FIXME
|
||||
tr_flags |= 0x700; //FIXME
|
||||
for(i=track->cluster_write_index; i<track->entry; i++){
|
||||
if(track->cluster[i].cts) tr_flags |= 0x800;
|
||||
}
|
||||
|
||||
avio_wb32(pb, 0);
|
||||
ffio_wfourcc(pb, "trun");
|
||||
|
Reference in New Issue
Block a user