From 353f42cbf7ae5ba643514c08ef83ef65ab48c86b Mon Sep 17 00:00:00 2001 From: sr55 Date: Mon, 1 Oct 2018 20:46:52 +0100 Subject: [PATCH] VCE: Remove unnecessary VCE logging. --- libhb/vce_common.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libhb/vce_common.c b/libhb/vce_common.c index a2a89d866..9e0e58528 100644 --- a/libhb/vce_common.c +++ b/libhb/vce_common.c @@ -23,13 +23,10 @@ AMF_RESULT check_component_available(const wchar_t *componentID) AMFCaps *encoderCaps = NULL; AMF_RESULT result = AMF_FAIL; - hb_log("VCE: Checking for hardware availability."); - library = hb_dlopen(AMF_DLL_NAMEA); if(!library) { result = AMF_FAIL; - hb_log("VCE: VCE Library not found."); goto clean; } @@ -67,13 +64,10 @@ AMF_RESULT check_component_available(const wchar_t *componentID) result = factory->pVtbl->CreateComponent(factory, context, componentID, &encoder); if(result != AMF_OK) { - hb_log("VCE: Encoder not available"); goto clean; } result = encoder->pVtbl->GetCaps(encoder, &encoderCaps); - - hb_log("VCE: Result = %d", result); clean: if (encoderCaps) -- 2.40.0