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:
Tim-Philipp Müller 2014-04-27 13:09:52 +01:00
parent dbe6fdd6bf
commit d5a0ace347

View file

@ -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);