diff options
author | Martin Storsjö <martin@martin.st> | 2014-10-29 22:55:23 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-10-30 23:17:00 +0200 |
commit | aae6b3b918b4133b8cc2d1631196c1d406d0351a (patch) | |
tree | abf9037b32360dfc8c8b668250e2ffcdaa5605a3 /libavformat/movenc.c | |
parent | c55d1d382cd41345a79782ace41f9b43f45dca9a (diff) | |
download | ffmpeg-aae6b3b918b4133b8cc2d1631196c1d406d0351a.tar.gz |
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>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d79607b3b8..80a44cf186 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -2748,8 +2748,6 @@ static int mov_write_ftyp_tag(AVIOContext *pb, AVFormatContext *s) ffio_wfourcc(pb, "qt "); else if (mov->mode == MODE_ISM) { 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)) { ffio_wfourcc(pb, "isom"); ffio_wfourcc(pb, "iso2"); |