From d421ccb44002c785d591cf0f6d2e6a1f2eb8ccab Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sun, 10 Oct 2010 17:15:53 -0700 Subject: [PATCH] oggstream: fix incorrect warning on skeleton headers --- ext/ogg/gstoggstream.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/ogg/gstoggstream.c b/ext/ogg/gstoggstream.c index e25b5ca..62d3f22 100644 --- a/ext/ogg/gstoggstream.c +++ b/ext/ogg/gstoggstream.c @@ -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; } -- 2.7.4