summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-03-20 16:27:20 +0000
committerjbrjake <[email protected]>2008-03-20 16:27:20 +0000
commit121258c9e4e2c3502e9a6c635d9b87ea92495cb7 (patch)
tree79c4e0986ef3e1244b235b37efb36c3b0e428b86
parent5265ea2db4fb71b3b894c16b830783091b34129a (diff)
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
-rw-r--r--libhb/muxavi.c4
1 files 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 )