oggstream: fix incorrect warning on skeleton headers
authorDavid Schleef <ds@schleef.org>
Mon, 11 Oct 2010 00:15:53 +0000 (17:15 -0700)
committerDavid Schleef <ds@schleef.org>
Fri, 3 Dec 2010 01:36:33 +0000 (17:36 -0800)
ext/ogg/gstoggstream.c

index e25b5ca..62d3f22 100644 (file)
@@ -945,8 +945,10 @@ gst_ogg_map_parse_fisbone (GstOggStream * pad, const guint8 * data, guint size,
     GST_INFO ("got index packet");
     stype = GST_OGG_SKELETON_INDEX;
     serial_offset = 6;
+  } else if (memcmp (data, "fishead\0", 8) == 0) {
+    return FALSE;
   } else {
-    GST_WARNING ("unknown skeleton packet %10.10s", data);
+    GST_WARNING ("unknown skeleton packet \"%10.10s\"", data);
     return FALSE;
   }