]> granicus.if.org Git - handbrake/commitdiff
Use proper fourcc code of FMP4 for ffmpeg MPEG-4 video, instead of identifying it...
authorjbrjake <jb.rubin@gmail.com>
Sun, 10 Feb 2008 00:24:31 +0000 (00:24 +0000)
committerjbrjake <jb.rubin@gmail.com>
Sun, 10 Feb 2008 00:24:31 +0000 (00:24 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1254 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/muxavi.c

index 92ec80668037fb64df53d988b27d12d97de9282e..258cdb0c3edc5e1b147a58000736b3885930b57d 100644 (file)
@@ -314,7 +314,7 @@ static int AVIInit( hb_mux_object_t * m )
     h.Type       = FOURCC( "vids" );
 
     if( job->vcodec == HB_VCODEC_FFMPEG )
-        h.Handler = FOURCC( "divx" );
+        h.Handler = FOURCC( "fmp4" );
     else if( job->vcodec == HB_VCODEC_XVID )
         h.Handler = FOURCC( "xvid" );
     else if( job->vcodec == HB_VCODEC_X264 )
@@ -334,7 +334,7 @@ static int AVIInit( hb_mux_object_t * m )
     f.Planes      = 1;
     f.BitCount    = 24;
     if( job->vcodec == HB_VCODEC_FFMPEG )
-        f.Compression = FOURCC( "DX50" );
+        f.Compression = FOURCC( "FMP4" );
     else if( job->vcodec == HB_VCODEC_XVID )
         f.Compression = FOURCC( "XVID" );
     else if( job->vcodec == HB_VCODEC_X264 )