diff options
Diffstat (limited to 'libhb/qsv_common.h')
-rw-r--r-- | libhb/qsv_common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libhb/qsv_common.h b/libhb/qsv_common.h index 9e9b58f30..57b7c1685 100644 --- a/libhb/qsv_common.h +++ b/libhb/qsv_common.h @@ -106,7 +106,9 @@ typedef struct } hb_qsv_param_t; #define HB_QSV_CLIP3(min, max, val) ((val < min) ? min : (val > max) ? max : val) -int hb_qsv_codingoption_xlat(int val); +int hb_qsv_codingoption_xlat (int val); +const char* hb_qsv_codingoption_get_name(int val); + int hb_qsv_trellisvalue_xlat(int val); int hb_qsv_atoindex(const char* const *arr, const char *str, int *err); int hb_qsv_atobool (const char *str, int *err); |