summaryrefslogtreecommitdiffstats
path: root/libhb/muxcommon.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2014-08-18 17:22:30 +0000
committerjstebbins <[email protected]>2014-08-18 17:22:30 +0000
commitc548eb0cb8c86031541afaad848023fc8f4ff55a (patch)
tree95a2293b59a8289fa179fb19f52699aee024aae1 /libhb/muxcommon.c
parent748126d08ba751d866f2d0140d04d4d08346cdf3 (diff)
build: remove mp4v2 and libmkv dependencies
...and enable x265 by default git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6309 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r--libhb/muxcommon.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c
index f06651734..d1646e7fb 100644
--- a/libhb/muxcommon.c
+++ b/libhb/muxcommon.c
@@ -614,22 +614,10 @@ hb_work_object_t * hb_muxer_init( hb_job_t * job )
{
switch( job->mux )
{
-#ifdef USE_MP4V2
- case HB_MUX_MP4V2:
- mux->m = hb_mux_mp4_init( job );
- break;
-#endif
-#ifdef USE_LIBMKV
- case HB_MUX_LIBMKV:
- mux->m = hb_mux_mkv_init( job );
- break;
-#endif
-#ifdef USE_AVFORMAT
case HB_MUX_AV_MP4:
case HB_MUX_AV_MKV:
mux->m = hb_mux_avformat_init( job );
break;
-#endif
default:
hb_error( "No muxer selected, exiting" );
*job->done_error = HB_ERROR_INIT;