summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-10-01 20:46:52 +0100
committersr55 <[email protected]>2018-10-01 20:46:52 +0100
commit353f42cbf7ae5ba643514c08ef83ef65ab48c86b (patch)
treef034916998bbd8a75343bf1cd285da8daac9695c /libhb
parent9cbe343c9886cf84a85852a4a359e529cc3075dc (diff)
VCE: Remove unnecessary VCE logging.
Diffstat (limited to 'libhb')
-rw-r--r--libhb/vce_common.c6
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)