diff options
author | Rodeo <[email protected]> | 2013-09-01 09:44:45 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-09-01 09:44:45 +0000 |
commit | 8ddee7c254428171233bead5b9741ebe1ba18940 (patch) | |
tree | 98151f5adac2ec71c9f2c4bf9895dec57f984df9 /libhb/qsv_common.h | |
parent | 8270fcfeb84a2c6c051a24fcceea534b939eee58 (diff) |
QSV: minor cleanup.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5760 b64f7644-9d1e-0410-96f1-a4d463321fa5
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); |