summaryrefslogtreecommitdiffstats
path: root/libhb/hb_dict.c
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/hb_dict.c
parent184f5bdee876b36ac737ada809ba9d75e98aa40a (diff)
encx265: Use HB_PROJECT_FEATURE_X265 instead of USE_X265
Diffstat (limited to 'libhb/hb_dict.c')
-rw-r--r--libhb/hb_dict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb_dict.c b/libhb/hb_dict.c
index 2f26f1426..2894c62ac 100644
--- a/libhb/hb_dict.c
+++ b/libhb/hb_dict.c
@@ -826,7 +826,7 @@ hb_dict_t * hb_encopts_to_dict(const char * encopts, int encoder)
// x264 has multiple names for some options
if (encoder & HB_VCODEC_X264_MASK)
name = hb_x264_encopt_name(name);
-#ifdef USE_X265
+#if HB_PROJECT_FEATURE_X265
// x265 has multiple names for some options
if (encoder & HB_VCODEC_X265_MASK)
name = hb_x265_encopt_name(name);