From 4106a36fa2425ab6eed7d76d0c5861691cd5df17 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Tue, 26 May 2009 15:23:21 +0000 Subject: 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 --- libhb/work.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libhb/work.c') diff --git a/libhb/work.c b/libhb/work.c index 21232debf..848c798e4 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -244,10 +244,6 @@ void hb_display_job_info( hb_job_t * job ) hb_log( " + encoder: FFmpeg" ); break; - case HB_VCODEC_XVID: - hb_log( " + encoder: XviD" ); - break; - case HB_VCODEC_X264: hb_log( " + encoder: x264" ); if( job->x264opts != NULL && *job->x264opts != '\0' ) @@ -456,9 +452,6 @@ static void do_job( hb_job_t * job, int cpu_count ) case HB_VCODEC_FFMPEG: w = hb_get_work( WORK_ENCAVCODEC ); break; - case HB_VCODEC_XVID: - w = hb_get_work( WORK_ENCXVID ); - break; case HB_VCODEC_X264: w = hb_get_work( WORK_ENCX264 ); break; -- cgit v1.2.3