From e2790dd13a1d4cfd851a46957d748a0d8e8af31a Mon Sep 17 00:00:00 2001 From: jbrjake Date: Sun, 10 Feb 2008 00:24:31 +0000 Subject: [PATCH] Use proper fourcc code of FMP4 for ffmpeg MPEG-4 video, instead of identifying it as DivX, like ffmpeg used to. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1254 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/muxavi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libhb/muxavi.c b/libhb/muxavi.c index 92ec8066..258cdb0c 100644 --- a/libhb/muxavi.c +++ b/libhb/muxavi.c @@ -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 ) -- 2.11.4.GIT