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/module.defs | |
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/module.defs')
-rw-r--r-- | libhb/module.defs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/module.defs b/libhb/module.defs index 17efc31ff..c79e70bfb 100644 --- a/libhb/module.defs +++ b/libhb/module.defs @@ -1,6 +1,6 @@ __deps__ := A52DEC BZIP2 FAAC FAAD2 FFMPEG LAME LIBDCA \ LIBDVDREAD LIBDVDNAV LIBMKV LIBOGG LIBSAMPLERATE LIBTHEORA LIBVORBIS \ - MP4V2 MPEG2DEC PTHREADW32 X264 XVIDCORE ZLIB + MP4V2 MPEG2DEC PTHREADW32 X264 ZLIB $(eval $(call import.MODULE.defs,LIBHB,libhb,$(__deps__))) $(eval $(call import.GCC,LIBHB)) @@ -89,7 +89,7 @@ LIBHB.lib = $(LIBHB.build/)hb.lib LIBHB.dll.libs = $(foreach n, \ a52 bz2 avcodec avformat avutil dca dvdnav dvdread faac faad mkv mpeg2 mp3lame mp4v2 \ - ogg pthreadGC2 samplerate swscale theora vorbis vorbisenc x264 xvidcore z, \ + ogg pthreadGC2 samplerate swscale theora vorbis vorbisenc x264 z, \ $(CONTRIB.build/)lib/lib$(n).a ) LIBHB.GCC.args.extra.dylib++ = -Wl,--out-implib,$(LIBHB.lib) |