diff options
author | John Stebbins <[email protected]> | 2016-03-10 14:46:50 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-03-11 14:13:33 -0700 |
commit | fc3a836f30ff50f556c0267efbb41ee84a4b74a8 (patch) | |
tree | 86abe81114fcaa9df2b106b0cd55a634fd6615ba /test/test.c | |
parent | c3c076a86e8c3a9b97b1ed352c88365728e3879a (diff) |
qsv: fix build
I missed some of the qsv filter settings bits that needed changing.
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/test/test.c b/test/test.c index ca4062424..726e4fc8a 100644 --- a/test/test.c +++ b/test/test.c @@ -912,13 +912,6 @@ static void showFilterPresets(FILE* const out, int filter_id) char * slash = "", * newline; int ii, count = 0, linelen = 0; -#ifdef USE_QSV -if (filter_id == HB_FILTER_DEINTERLACE && hb_qsv_available()) -{ - count = 1; -} -#endif - // Count number of entries we want to display for (ii = 0; names[ii] != NULL; ii++) { @@ -956,12 +949,7 @@ if (filter_id == HB_FILTER_DEINTERLACE && hb_qsv_available()) linelen += len; slash = "/"; } -#ifdef USE_QSV -if (filter_id == HB_FILTER_DEINTERLACE && hb_qsv_available()) -{ - fprintf(out, "/qsv"); -} -#endif + fprintf(out, ">\n"); hb_str_vfree(names); } |