diff options
author | Rodeo <[email protected]> | 2014-04-05 01:24:07 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-04-05 01:24:07 +0000 |
commit | 0fb6f4a009f4d61b5695416d5bc7cd7c4405debf (patch) | |
tree | 2e91ff10df049f8ae47c559f7ed78a33516710b5 | |
parent | 7ef7d26d46c0d0f8de762d1adc6745745fa14a72 (diff) |
CLI: enable the --qsv-implementation option.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6151 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | test/test.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/test.c b/test/test.c index b7d98098f..4ecddd0b3 100644 --- a/test/test.c +++ b/test/test.c @@ -3665,9 +3665,10 @@ static int ParseOptions( int argc, char ** argv ) { "no-opencl", no_argument, NULL, NO_OPENCL }, #ifdef USE_QSV - { "qsv-baseline", no_argument, NULL, QSV_BASELINE, }, - { "qsv-async-depth", required_argument, NULL, QSV_ASYNC_DEPTH, }, - { "disable-qsv-decoding", no_argument, &qsv_decode, 0, }, + { "qsv-baseline", no_argument, NULL, QSV_BASELINE, }, + { "qsv-async-depth", required_argument, NULL, QSV_ASYNC_DEPTH, }, + { "qsv-implementation", required_argument, NULL, QSV_IMPLEMENTATION, }, + { "disable-qsv-decoding", no_argument, &qsv_decode, 0, }, #endif { "format", required_argument, NULL, 'f' }, |