summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libhb/vce_common.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/vce_common.c b/libhb/vce_common.c
index 551596e2c..21b4bb596 100644
--- a/libhb/vce_common.c
+++ b/libhb/vce_common.c
@@ -22,6 +22,8 @@ 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)
{
@@ -69,6 +71,8 @@ AMF_RESULT check_component_available(const wchar_t *componentID)
}
result = encoder->pVtbl->GetCaps(encoder, &encoderCaps);
+
+ hb_log("VCE: Result = %d", result);
clean:
if (encoderCaps)