[FFmpeg-cvslog] movenc: Don't write any iso brands in ismv files

Martin Storsjö git at videolan.org
Fri Oct 31 02:58:45 CET 2014


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Oct 29 22:55:23 2014 +0200| [aae6b3b918b4133b8cc2d1631196c1d406d0351a] | committer: Martin Storsjö

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 at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aae6b3b918b4133b8cc2d1631196c1d406d0351a
---

 libavformat/movenc.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index d79607b..80a44cf 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");



More information about the ffmpeg-cvslog mailing list