diff options
-rw-r--r-- | libhb/vce_common.c | 6 |
1 files changed, 0 insertions, 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) |