typefinder: use GST_TYPE_FIND_NONE instead of 0
authorJosep Torra <n770galaxy@gmail.com>
Thu, 25 Aug 2011 22:00:25 +0000 (00:00 +0200)
committerJosep Torra <n770galaxy@gmail.com>
Fri, 26 Aug 2011 12:11:15 +0000 (14:11 +0200)
Fixes warning #188: enumerated type mixed with another type reported by ICC.

plugins/elements/gsttypefindelement.c

index baf36c4..b6675a6 100644 (file)
@@ -541,7 +541,7 @@ gst_type_find_element_handle_event (GstPad * pad, GstEvent * event)
     case MODE_TYPEFIND:
       switch (GST_EVENT_TYPE (event)) {
         case GST_EVENT_EOS:{
-          GstTypeFindProbability prob = 0;
+          GstTypeFindProbability prob = GST_TYPE_FIND_NONE;
           GstCaps *caps = NULL;
 
           GST_INFO_OBJECT (typefind, "Got EOS and no type found yet");
@@ -894,7 +894,7 @@ gst_type_find_element_activate_src_pull (GstPad * pad, gboolean active)
 static gboolean
 gst_type_find_element_activate (GstPad * pad)
 {
-  GstTypeFindProbability probability = 0;
+  GstTypeFindProbability probability = GST_TYPE_FIND_NONE;
   GstCaps *found_caps = NULL;
   GstTypeFindElement *typefind;