diff options
author | jbrjake <[email protected]> | 2009-05-26 15:23:21 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2009-05-26 15:23:21 +0000 |
commit | 4106a36fa2425ab6eed7d76d0c5861691cd5df17 (patch) | |
tree | eabd80a8e99398b8d546b766f2936f6a93cb05bb /libhb/muxavi.c | |
parent | fdadd571645edc4360f5cd25e3bb45c21a3e65f8 (diff) |
Excises xvid from libhb because it's not worthy. Having two different MPEG-4 Part 2 encoders is superfluous and when choosing between ffmpeg and xvid, xvid is the clear loser since we need to keep ffmpeg around for other functions and xvid constantly requires attention to ensure it compiles.
MacGui: Removes some stray references to the codec and unlinks it from the Xcode project.
CLI: Removes references to the codec and removes it as a dependency.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2448 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxavi.c')
-rw-r--r-- | libhb/muxavi.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libhb/muxavi.c b/libhb/muxavi.c index 4838ee133..85839e1ee 100644 --- a/libhb/muxavi.c +++ b/libhb/muxavi.c @@ -367,8 +367,6 @@ static int AVIInit( hb_mux_object_t * m ) if( job->vcodec == HB_VCODEC_FFMPEG ) h.Handler = FOURCC( "divx" ); - else if( job->vcodec == HB_VCODEC_XVID ) - h.Handler = FOURCC( "xvid" ); else if( job->vcodec == HB_VCODEC_X264 ) h.Handler = FOURCC( "h264" ); @@ -387,8 +385,6 @@ static int AVIInit( hb_mux_object_t * m ) f.BitCount = 24; if( job->vcodec == HB_VCODEC_FFMPEG ) f.Compression = FOURCC( "DX50" ); - else if( job->vcodec == HB_VCODEC_XVID ) - f.Compression = FOURCC( "XVID" ); else if( job->vcodec == HB_VCODEC_X264 ) f.Compression = FOURCC( "H264" ); #undef f |