mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-09 17:44:14 +00:00
Revert "y4mdec: check for VIDEO meta instead of CROP meta"
This reverts commit 68309bd215
.
Commit message and files changed do not match.
This commit is contained in:
parent
dbe6fdd6bf
commit
d5a0ace347
1 changed files with 3 additions and 0 deletions
|
@ -228,18 +228,21 @@ init_devices (void)
|
|||
(void **) &devices[i].input);
|
||||
if (ret != S_OK) {
|
||||
GST_WARNING ("selected device does not have input interface");
|
||||
return;
|
||||
}
|
||||
|
||||
ret = decklink->QueryInterface (IID_IDeckLinkOutput,
|
||||
(void **) &devices[i].output);
|
||||
if (ret != S_OK) {
|
||||
GST_WARNING ("selected device does not have output interface");
|
||||
return;
|
||||
}
|
||||
|
||||
ret = decklink->QueryInterface (IID_IDeckLinkConfiguration,
|
||||
(void **) &devices[i].config);
|
||||
if (ret != S_OK) {
|
||||
GST_WARNING ("selected device does not have config interface");
|
||||
return;
|
||||
}
|
||||
|
||||
ret = iterator->Next (&decklink);
|
||||
|
|
Loading…
Reference in a new issue