ogg: Update to the latest VP8 mapping
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Wed, 19 May 2010 19:35:19 +0000 (21:35 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Wed, 19 May 2010 19:35:19 +0000 (21:35 +0200)
ext/ogg/gstoggdemux.c
ext/ogg/gstoggstream.c

index 36b71ebc628234ab543a1daea49f49947ed4b983..3b69d9995131c7346a0cf0053325f3100edc67b0 100644 (file)
@@ -466,9 +466,7 @@ gst_ogg_demux_chain_peer (GstOggPad * pad, ogg_packet * packet,
       }
     }
   } else if (pad->map.is_vp8) {
-    /* packet 0 is from the BOS page, packet 1 is the vorbiscomment page */
-    if (packet->packetno == 1 && packet->bytes >= 7
-        && memcmp (packet->packet, "VP8_TAG", 7) == 0) {
+    if (packet->bytes >= 7 && memcmp (packet->packet, "OggVP8 ", 7) == 0) {
       GstTagList *tags;
 
       buf = gst_buffer_new ();
@@ -477,7 +475,7 @@ gst_ogg_demux_chain_peer (GstOggPad * pad, ogg_packet * packet,
       GST_BUFFER_SIZE (buf) = packet->bytes;
 
       tags = gst_tag_list_from_vorbiscomment_buffer (buf,
-          (const guint8 *) "VP8_TAG", 7, NULL);
+          (const guint8 *) "OggVP8 ", 7, NULL);
       gst_buffer_unref (buf);
       buf = NULL;
 
@@ -486,12 +484,14 @@ gst_ogg_demux_chain_peer (GstOggPad * pad, ogg_packet * packet,
         gst_element_found_tags_for_pad (GST_ELEMENT (ogg), GST_PAD_CAST (pad),
             tags);
       } else {
-        GST_DEBUG_OBJECT (ogg, "failed to extract tags from vorbis comment");
+        GST_DEBUG_OBJECT (ogg,
+            "failed to extract VP8 tags from vorbis comment");
       }
       /* We don't push header packets for VP8 */
       cret = gst_ogg_demux_combine_flows (ogg, pad, GST_FLOW_OK);
       goto done;
-    } else if (packet->b_o_s) {
+    } else if (packet->b_o_s || (packet->bytes >= 4
+            && memcmp (packet->packet, "/VP8 ", 4) == 0)) {
       /* We don't push header packets for VP8 */
       cret = gst_ogg_demux_combine_flows (ogg, pad, GST_FLOW_OK);
       goto done;
index cbcb6d9ef164fd24e481bc3ae5631d51d421a989..32ed839cf72e65bea1b0248cf9d7e0552d51a922 100644 (file)
@@ -592,6 +592,23 @@ granulepos_to_key_granule_vp8 (GstOggStream * pad, gint64 granulepos)
   return pts - dist;
 }
 
+static gboolean
+is_header_vp8 (GstOggStream * pad, ogg_packet * packet)
+{
+  /* stream info */
+  if (packet->bytes > 4 && packet->packet[0] == 0x2f &&
+      packet->packet[1] == 0x56 && packet->packet[2] == 0x50 &&
+      packet->packet[3] == 0x38)
+    return TRUE;
+  /* comment */
+  if (packet->bytes > 7 && packet->packet[0] == 0x4f &&
+      packet->packet[1] == 0x67 && packet->packet[2] == 0x67 &&
+      packet->packet[3] == 0x56 && packet->packet[4] == 0x50 &&
+      packet->packet[5] == 0x38 && packet->packet[6] == 0x20)
+    return TRUE;
+  return FALSE;
+}
+
 /* vorbis */
 
 static gboolean
@@ -1626,13 +1643,13 @@ static const GstOggMap mappers[] = {
     granulepos_to_key_granule_dirac
   },
   {
-    "VP80\1", 5, 4,
+    "/VP8\1", 5, 4,
     "video/x-vp8",
     setup_vp8_mapper,
     granulepos_to_granule_vp8,
     granule_to_granulepos_vp8,
     is_keyframe_vp8,
-    is_header_count,
+    is_header_vp8,
     packet_duration_vp8,
     granulepos_to_key_granule_vp8
   },