mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
movenc: Signal iso6 in compatible_brands when using tfdt
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
a9911a1b2d
commit
600d5ee6b1
@ -2742,6 +2742,11 @@ static int mov_write_ftyp_tag(AVIOContext *pb, AVFormatContext *s)
|
||||
ffio_wfourcc(pb, "avc1");
|
||||
}
|
||||
|
||||
// We add tfdt atoms when fragmenting, signal this with the iso6 compatible
|
||||
// brand. This is compatible with users that don't understand tfdt.
|
||||
if (mov->flags & FF_MOV_FLAG_FRAGMENT)
|
||||
ffio_wfourcc(pb, "iso6");
|
||||
|
||||
if (mov->mode == MODE_3GP)
|
||||
ffio_wfourcc(pb, has_h264 ? "3gp6":"3gp4");
|
||||
else if (mov->mode & MODE_3G2)
|
||||
|
Loading…
Reference in New Issue
Block a user