]> granicus.if.org Git - handbrake/commitdiff
VCE: Remove unnecessary VCE logging.
authorsr55 <sr55.hb@outlook.com>
Mon, 1 Oct 2018 19:46:52 +0000 (20:46 +0100)
committersr55 <sr55.hb@outlook.com>
Mon, 1 Oct 2018 19:46:52 +0000 (20:46 +0100)
libhb/vce_common.c

index a2a89d8666b7c3075aff3822ae42b61893ecaa78..9e0e58528f27a9336176e95bf32070f5274f2c4e 100644 (file)
@@ -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)