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/work.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/work.c')
-rw-r--r-- | libhb/work.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index abdf19f4f..1016ba80e 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -1239,6 +1239,11 @@ static void do_job(hb_job_t *job) case HB_VCODEC_THEORA: w = hb_get_work( WORK_ENCTHEORA ); break; +#ifdef USE_X265 + case HB_VCODEC_X265: + w = hb_get_work( WORK_ENCX265 ); + break; +#endif } // Handle case where there are no filters. // This really should never happen. |