summaryrefslogtreecommitdiffstats
path: root/libhb/muxavi.c
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-02-10 00:24:31 +0000
committerjbrjake <[email protected]>2008-02-10 00:24:31 +0000
commit4db966afd37f2c5c835ce22a021aaa2ef4fa58f8 (patch)
tree8d31dab598c8f41d911cb15d88e97c9ad4ae1583 /libhb/muxavi.c
parente22aa649e345c4d93e9a06ed56edbcd63f3f2720 (diff)
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
Diffstat (limited to 'libhb/muxavi.c')
-rw-r--r--libhb/muxavi.c4
1 files 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 )