summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2015-11-19 14:17:33 -0800
committerJohn Stebbins <[email protected]>2015-11-19 14:17:33 -0800
commit6c731e1353608b909ce1e721e9b31b2fea6f932c (patch)
tree23c5b6f256a97217a98124e1ef3041bf80d89c1b
parent7bf2842f142b9702f75d354ea1b4b3415d3a0829 (diff)
qsv: fix compile error
missed renaming hb_h265_profile_names in qsv code
-rw-r--r--libhb/qsv_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c
index e59437ea6..037ff566b 100644
--- a/libhb/qsv_common.c
+++ b/libhb/qsv_common.c
@@ -1607,7 +1607,7 @@ const char* const* hb_qsv_profile_get_names(int encoder)
case HB_VCODEC_QSV_H264:
return hb_h264_profile_names_8bit;
case HB_VCODEC_QSV_H265:
- return hb_h265_profile_names;
+ return hb_h265_profile_names_8bit;
default:
return NULL;
}