You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
movenc: Don't write any iso brands in ismv files
We deviate slightly from the iso specs for these files. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -2748,8 +2748,6 @@ static int mov_write_ftyp_tag(AVIOContext *pb, AVFormatContext *s)
|
|||||||
ffio_wfourcc(pb, "qt ");
|
ffio_wfourcc(pb, "qt ");
|
||||||
else if (mov->mode == MODE_ISM) {
|
else if (mov->mode == MODE_ISM) {
|
||||||
ffio_wfourcc(pb, "piff");
|
ffio_wfourcc(pb, "piff");
|
||||||
if (!(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF))
|
|
||||||
ffio_wfourcc(pb, "iso2");
|
|
||||||
} else if (!(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)) {
|
} else if (!(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)) {
|
||||||
ffio_wfourcc(pb, "isom");
|
ffio_wfourcc(pb, "isom");
|
||||||
ffio_wfourcc(pb, "iso2");
|
ffio_wfourcc(pb, "iso2");
|
||||||
|
Reference in New Issue
Block a user