From: sr55 Date: Mon, 1 Oct 2018 19:46:52 +0000 (+0100) Subject: VCE: Remove unnecessary VCE logging. X-Git-Tag: 1.2.0~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=353f42cbf7ae5ba643514c08ef83ef65ab48c86b;p=handbrake VCE: Remove unnecessary VCE logging. --- 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)