summaryrefslogtreecommitdiffstats
path: root/libhb/work.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2014-02-10 17:38:41 +0000
committerRodeo <[email protected]>2014-02-10 17:38:41 +0000
commite1e76b53cd11e7706e884d802c5985633b849e4f (patch)
tree64630e6611b46ee27a7ba8804f96a8fce1524ab2 /libhb/work.c
parente22ffd488a656f6534ce93f85dcfdb8fdb7976bd (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.c5
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.