}
}
} 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 ();
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;
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;
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
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
},