summaryrefslogtreecommitdiffstats
path: root/libhb/hb_json.c
diff options
context:
space:
mode:
authoragalin89 <[email protected]>2019-10-16 21:49:08 +0100
committerBradley Sepos <[email protected]>2019-10-24 11:30:14 -0400
commit387589be2114ed2981dc8b48c66154da01302565 (patch)
tree9d73593ae5c833196625ee58c38629b5a880d51d /libhb/hb_json.c
parent085745264a52d8cf8f8849ed55edde485eee91a2 (diff)
qsv: full mode only when needed
Squashed: - qsv: check filter_count instead of variable - fix: remove unchanged files from review - qsv: simplified code
Diffstat (limited to 'libhb/hb_json.c')
-rw-r--r--libhb/hb_json.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c
index 8ad0a720d..64e953f5d 100644
--- a/libhb/hb_json.c
+++ b/libhb/hb_json.c
@@ -1394,16 +1394,7 @@ hb_job_t* hb_dict_to_job( hb_handle_t * h, hb_dict_t *dict )
{
hb_filter_object_t *filter;
filter = hb_filter_init(filter_id);
-#if HB_PROJECT_FEATURE_QSV
- if(hb_qsv_full_path_is_enabled(job))
- {
- hb_log("Filter with ID=%d is disabled", filter_id);
- }
- else
-#endif
- {
- hb_add_filter_dict(job, filter, filter_settings);
- }
+ hb_add_filter_dict(job, filter, filter_settings);
}
}
}