Revert "y4mdec: check for VIDEO meta instead of CROP meta"
This reverts commit 68309bd21592a96dc8241702f17ded4e5f545f33. Commit message and files changed do not match.
This commit is contained in:
parent
dbe6fdd6bf
commit
d5a0ace347
@ -228,18 +228,21 @@ init_devices (void)
|
|||||||
(void **) &devices[i].input);
|
(void **) &devices[i].input);
|
||||||
if (ret != S_OK) {
|
if (ret != S_OK) {
|
||||||
GST_WARNING ("selected device does not have input interface");
|
GST_WARNING ("selected device does not have input interface");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = decklink->QueryInterface (IID_IDeckLinkOutput,
|
ret = decklink->QueryInterface (IID_IDeckLinkOutput,
|
||||||
(void **) &devices[i].output);
|
(void **) &devices[i].output);
|
||||||
if (ret != S_OK) {
|
if (ret != S_OK) {
|
||||||
GST_WARNING ("selected device does not have output interface");
|
GST_WARNING ("selected device does not have output interface");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = decklink->QueryInterface (IID_IDeckLinkConfiguration,
|
ret = decklink->QueryInterface (IID_IDeckLinkConfiguration,
|
||||||
(void **) &devices[i].config);
|
(void **) &devices[i].config);
|
||||||
if (ret != S_OK) {
|
if (ret != S_OK) {
|
||||||
GST_WARNING ("selected device does not have config interface");
|
GST_WARNING ("selected device does not have config interface");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = iterator->Next (&decklink);
|
ret = iterator->Next (&decklink);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user