From 4db966afd37f2c5c835ce22a021aaa2ef4fa58f8 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Sun, 10 Feb 2008 00:24:31 +0000 Subject: 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 92ec80668..258cdb0c3 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 ) -- cgit v1.2.3