summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-06-07 19:38:42 +0100
committersr55 <[email protected]>2017-06-07 19:38:42 +0100
commit8750a04ef458722e8c4c9b3a3af3ddfec9835619 (patch)
tree66c1b018ebdaaf3c1d0e0251dcd42ed9ecf7f34e /test
parentdf14a47fb003a61ddfed185c5cdc5a4901ab1bac (diff)
Remove the OpenCL Bicubic scaling option. Unfortunatly it's causing too many problems and it's maximum 5% performance improvement (in ideal circumstances) doesn't justify the effort to continue with it. The OpenCL framework will remain in place in case we decide to use it for something in the future. Closes #690
Diffstat (limited to 'test')
-rw-r--r--test/test.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/test.c b/test/test.c
index eb1c0ced4..da5db9341 100644
--- a/test/test.c
+++ b/test/test.c
@@ -1242,7 +1242,6 @@ static void ShowHelp()
" --queue-import-file <filename>\n"
" Import an encode queue file created by the GUI\n"
" --no-dvdnav Do not use dvdnav for reading DVDs\n"
-" --no-opencl Disable use of OpenCL\n"
"\n"
"\n"
"Source Options ---------------------------------------------------------------\n"
@@ -1292,7 +1291,6 @@ static void ShowHelp()
" --no-optimize Disable preset 'optimize'\n"
" -I, --ipod-atom Add iPod 5G compatibility atom to MP4 container\n"
" --no-ipod-atom Disable iPod 5G atom\n"
-" -P, --use-opencl Use OpenCL where applicable\n"
"\n"
"\n"
"Video Options ----------------------------------------------------------------\n"
@@ -2039,7 +2037,6 @@ static int ParseOptions( int argc, char ** argv )
{ "describe", no_argument, NULL, DESCRIBE },
{ "verbose", optional_argument, NULL, 'v' },
{ "no-dvdnav", no_argument, NULL, DVDNAV },
- { "no-opencl", no_argument, &use_opencl, 0 },
#ifdef USE_QSV
{ "qsv-baseline", no_argument, NULL, QSV_BASELINE, },
@@ -2056,7 +2053,6 @@ static int ParseOptions( int argc, char ** argv )
{ "no-optimize", no_argument, &mp4_optimize, 0 },
{ "ipod-atom", no_argument, NULL, 'I' },
{ "no-ipod-atom",no_argument, &ipod_atom, 0 },
- { "use-opencl", no_argument, NULL, 'P' },
{ "title", required_argument, NULL, 't' },
{ "min-duration",required_argument, NULL, MIN_DURATION },
@@ -2305,9 +2301,6 @@ static int ParseOptions( int argc, char ** argv )
case 'I':
ipod_atom = 1;
break;
- case 'P':
- use_opencl = 1;
- break;
case 't':
titleindex = atoi( optarg );
break;