diff options
author | Rodeo <[email protected]> | 2014-02-10 17:38:41 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-02-10 17:38:41 +0000 |
commit | e1e76b53cd11e7706e884d802c5985633b849e4f (patch) | |
tree | 64630e6611b46ee27a7ba8804f96a8fce1524ab2 /libhb/muxcommon.c | |
parent | e22ffd488a656f6534ce93f85dcfdb8fdb7976bd (diff) |
Initial x265 integration. Patch by Zhang Zhiqiang. Thanks!
Build with --enable-x265 (requires CMake).
Use via HandBrakeCLI with -a none -e x265 -f raw
Only raw HEVC output is supported for now (no audio or subtitles).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6023 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r-- | libhb/muxcommon.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index b085bd769..4ac35d515 100644 --- a/libhb/muxcommon.c +++ b/libhb/muxcommon.c @@ -475,6 +475,10 @@ hb_work_object_t * hb_muxer_init( hb_job_t * job ) mux->m = hb_mux_avformat_init( job ); break; #endif +#ifdef USE_X265 + case HB_MUX_RAW: + break; +#endif default: hb_error( "No muxer selected, exiting" ); *job->done_error = HB_ERROR_INIT; |