diff options
author | John Stebbins <[email protected]> | 2017-06-12 10:21:46 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2017-06-12 10:21:46 -0700 |
commit | e8e6af1ec69651c540fd04ae5417c77a8dc1c9ae (patch) | |
tree | a1cbcad17a6b9742dd208b38a2d5295550cba9cd /test | |
parent | c72396f91d2b9535f3873d8dd5dc8b7ea1b4c28e (diff) |
opencl: removit it (#777)
It was only used for scaling, it fails far too often and is only
faster on a limited selectoin of hardware.
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/test.c b/test/test.c index da5db9341..73411aa63 100644 --- a/test/test.c +++ b/test/test.c @@ -33,7 +33,6 @@ #include "hb.h" #include "lang.h" #include "parsecsv.h" -#include "openclwrapper.h" #ifdef USE_QSV #include "qsv_common.h" @@ -177,7 +176,6 @@ static int start_at_frame = 0; static int64_t stop_at_pts = 0; static int stop_at_frame = 0; static uint64_t min_title_duration = 10; -static int use_opencl = -1; #ifdef USE_QSV static int qsv_async_depth = -1; static int qsv_decode = -1; @@ -482,11 +480,6 @@ int main( int argc, char ** argv ) hb_dvd_set_dvdnav( dvdnav ); - if (use_opencl == 1) - { - hb_opencl_set_enable(h, use_opencl); - } - /* Show version */ fprintf( stderr, "%s - %s - %s\n", HB_PROJECT_TITLE, HB_PROJECT_BUILD_TITLE, HB_PROJECT_URL_WEBSITE ); @@ -654,8 +647,6 @@ static void PrintTitleInfo( hb_title_t * title, int feature ) fprintf( stderr, " + autocrop: %d/%d/%d/%d\n", title->crop[0], title->crop[1], title->crop[2], title->crop[3] ); - fprintf(stderr, " + support opencl: %s\n", title->opencl_support ? "yes" : "no"); - fprintf( stderr, " + chapters:\n" ); for( i = 0; i < hb_list_count( title->list_chapter ); i++ ) { @@ -3820,11 +3811,6 @@ static hb_dict_t * PreparePreset(const char *preset_name) hb_dict_set(preset, "VideoQSVDecode", hb_value_int(qsv_decode)); } #endif - if (use_opencl != -1) - { - hb_dict_set(preset, "VideoScaler", - hb_value_string(use_opencl ? "opencl" : "swscale")); - } if (maxWidth > 0) { hb_dict_set(preset, "PictureWidth", hb_value_int(maxWidth)); |