36f202a259
converter. HandBrake was originally available on the BeOS, but now has been ported over to MacOS X, GNU/Linux and FreeBSD. Features: * Can encode directly from DVDs (even encrypted ones) or from VIDEO_TS folders * Supports AC3, LPCM and MPEG audio tracks * Outputs MP4, AVI or OGM files * Outputs AAC, MP3 or Vorbis audio * Supports 2-pass encoding * Supports encoding of two audio tracks * Includes a bitrate calculator * Supports picture deinterlacing, cropping and scaling Known limitations: * Does not handle DTS audio tracks * Does not handle single VOB files or any other file format WWW: http://handbrake.m0k.org/ PR: 74214 Submitted by: Andrew Thompson Approved by: adamw (mentor)
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
--- core/Jamfile.orig Wed May 26 05:51:32 2004
|
|
+++ core/Jamfile Mon Nov 22 20:28:52 2004
|
|
@@ -15,25 +15,12 @@
|
|
Library libhb : $(LIBHB_SRC) ;
|
|
|
|
# Sadly, we might want to debug our code
|
|
-ObjectCcFlags $(LIBHB_SRC) : -g -Wall -W ;
|
|
+ObjectCcFlags $(LIBHB_SRC) : -g -Wall -W -I%%PREFIX%%/include ;
|
|
|
|
# Needed includes
|
|
-ObjectHdrs Ac3Dec.c : $(TOP)/contrib/liba52 ;
|
|
ObjectHdrs FfmpegEnc.c
|
|
- HandBrake.c
|
|
- MpgaDec.c
|
|
- Scale.c : $(TOP)/contrib/libavcodec ;
|
|
-ObjectHdrs DVDRead.c
|
|
- Scan.c : $(TOP)/contrib/libdvdread ;
|
|
-ObjectHdrs FaacEnc.c : $(TOP)/contrib/libfaac ;
|
|
-ObjectHdrs Mp3Enc.c : $(TOP)/contrib/libmp3lame ;
|
|
-ObjectHdrs Mp4Mux.c : $(TOP)/contrib/libmp4v2 ;
|
|
-ObjectHdrs Mpeg2Dec.c
|
|
- Scan.c : $(TOP)/contrib/libmpeg2 ;
|
|
-ObjectHdrs Resample.c : $(TOP)/contrib/libsamplerate ;
|
|
-ObjectHdrs OgmMux.c
|
|
- VorbisEnc.c : $(TOP)/contrib/libogg ;
|
|
-ObjectHdrs VorbisEnc.c : $(TOP)/contrib/libvorbis ;
|
|
+ HandBrake.c
|
|
+ MpgaDec.c
|
|
+ Scale.c : %%LIBAVCODEC%% ;
|
|
ObjectHdrs X264Enc.c : $(TOP)/contrib/libx264 ;
|
|
-ObjectHdrs XvidEnc.c : $(TOP)/contrib/libxvidcore ;
|
|
|