wavparse: be more strict about typefinding DTS
authorDavid Schleef <ds@schleef.org>
Thu, 26 Mar 2015 19:21:25 +0000 (12:21 -0700)
committerDavid Schleef <ds@schleef.org>
Thu, 26 Mar 2015 19:22:43 +0000 (12:22 -0700)
Code now matches comments.

gst/wavparse/gstwavparse.c

index 41d5151..3674779 100644 (file)
@@ -1830,7 +1830,7 @@ gst_wavparse_have_dts_caps (const GstCaps * caps, GstTypeFindProbability prob)
   if (prob >= GST_TYPE_FIND_LIKELY)
     return TRUE;
   /* DTS at non-0 offsets and without second sync may yield POSSIBLE .. */
-  if (prob < GST_TYPE_FIND_POSSIBLE)
+  if (prob <= GST_TYPE_FIND_POSSIBLE)
     return FALSE;
   /* .. in which case we want at least a valid-looking rate and channels */
   if (!gst_structure_has_field (s, "channels"))