summaryrefslogtreecommitdiffstats
path: root/libhb/vce_common.c
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-09-25 18:29:32 +0100
committersr55 <[email protected]>2018-09-25 18:29:32 +0100
commitcf99446d16a53a702a47b082dff7cffc5ce820a3 (patch)
tree6b6e769db52706a8eab943a261022a9919a824c8 /libhb/vce_common.c
parent40fdd97e7bc12dfeb0e68f3bacea7d744ff8d3aa (diff)
VCE: Add positive logging.
Diffstat (limited to 'libhb/vce_common.c')
-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)