mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
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:
parent
eea28504fa
commit
e8882c3a1d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue