obs-qsv11: Fix target usage values
PR #1937 (commit b9ad1ce) added QSV target usage options, but there was a comma missing between two of the array entries. This resulted in "faster" and "veryfast" becoming "fasterveryfast", which is not valid. Code style changes were required by .clang-format.
This commit is contained in:
parent
b19ea6fe35
commit
56348a0b46
@ -74,17 +74,10 @@ static const struct qsv_rate_control_info qsv_ratecontrols[] = {
|
|||||||
{"AVBR", false}, {"ICQ", true}, {"LA_ICQ", true}, {"LA_CBR", true},
|
{"AVBR", false}, {"ICQ", true}, {"LA_ICQ", true}, {"LA_CBR", true},
|
||||||
{"LA_VBR", true}, {0, false}};
|
{"LA_VBR", true}, {0, false}};
|
||||||
static const char *const qsv_profile_names[] = {"high", "main", "baseline", 0};
|
static const char *const qsv_profile_names[] = {"high", "main", "baseline", 0};
|
||||||
static const char *const qsv_usage_names[] = {"quality",
|
static const char *const qsv_usage_names[] = {"quality", "balanced", "speed",
|
||||||
"balanced",
|
"veryslow", "slower", "slow",
|
||||||
"speed",
|
"medium", "fast", "faster",
|
||||||
"veryslow",
|
"veryfast", 0};
|
||||||
"slower",
|
|
||||||
"slow",
|
|
||||||
"medium",
|
|
||||||
"fast",
|
|
||||||
"faster"
|
|
||||||
"veryfast",
|
|
||||||
0};
|
|
||||||
|
|
||||||
typedef struct qsv_t qsv_t;
|
typedef struct qsv_t qsv_t;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user