y4mdec: check for VIDEO meta instead of CROP meta
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Sat, 15 Mar 2014 14:17:43 +0000 (15:17 +0100)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Wed, 23 Apr 2014 16:42:44 +0000 (12:42 -0400)
This element only need stride support, but checks for CROP_META, which
is a bit too much, even though this works as CROP imply having VIDEO
meta.

https://bugzilla.gnome.org/show_bug.cgi?id=726255

sys/decklink/gstdecklink.cpp

index 848ff28..067665e 100644 (file)
@@ -228,21 +228,18 @@ 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);