From 121258c9e4e2c3502e9a6c635d9b87ea92495cb7 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Thu, 20 Mar 2008 16:27:20 +0000 Subject: Reverts r1254, so ffmpeg-in-avi again reports as DivX 5. Giving it the "correct" codes was a problem for lame Windows media players and didn't help the CrackBerry user who requested it. Moral of the story? Greet user requests with skepticism. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1352 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 cd88d84d1..0370c8858 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( "fmp4" ); + h.Handler = FOURCC( "divx" ); 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( "FMP4" ); + f.Compression = FOURCC( "DX50" ); else if( job->vcodec == HB_VCODEC_XVID ) f.Compression = FOURCC( "XVID" ); else if( job->vcodec == HB_VCODEC_X264 ) -- cgit v1.2.3