decklink: Don't print error for dlopen failure

This is not a fatal error on systems without decklink

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2441>
This commit is contained in:
Seungha Yang 2021-07-28 16:11:36 +09:00
parent eea28504fa
commit e8882c3a1d

View file

@ -60,7 +60,7 @@ static void InitDeckLinkAPI (void)
libraryHandle = dlopen(kDeckLinkAPI_Name, RTLD_NOW|RTLD_GLOBAL);
if (!libraryHandle)
{
fprintf(stderr, "%s\n", dlerror());
// fprintf(stderr, "%s\n", dlerror());
return;
}