summaryrefslogtreecommitdiffstats
path: root/libhb/common.h
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2019-04-17 10:04:28 -0600
committerJohn Stebbins <[email protected]>2019-04-17 11:25:12 -0600
commitb2cb27773a0cc1b84c847afec0b370e59236258d (patch)
tree122ac23cb6fccbf0f6bfa3c43385d46949e1c709 /libhb/common.h
parent184f5bdee876b36ac737ada809ba9d75e98aa40a (diff)
encx265: Use HB_PROJECT_FEATURE_X265 instead of USE_X265
Diffstat (limited to 'libhb/common.h')
-rw-r--r--libhb/common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h
index 14a16f620..cb307e079 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -10,6 +10,7 @@
#ifndef HB_COMMON_H
#define HB_COMMON_H
+#include "project.h"
#include "hbtypes.h"
#include "hb_dict.h"
#include <math.h>
@@ -1432,7 +1433,7 @@ char * hb_x264_param_unparse(int bit_depth, const char *x264_preset,
// x264 option name/synonym helper
const char * hb_x264_encopt_name( const char * name );
-#ifdef USE_X265
+#if HB_PROJECT_FEATURE_X265
// x265 option name/synonym helper
const char * hb_x265_encopt_name( const char * name );
#endif