renatofilho@75: /* GStreamer
renatofilho@75:  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
renatofilho@75:  *
renatofilho@75:  * gsttypefindfunctions.c: collection of various typefind functions
renatofilho@75:  *
renatofilho@75:  * This library is free software; you can redistribute it and/or
renatofilho@75:  * modify it under the terms of the GNU Library General Public
renatofilho@75:  * License as published by the Free Software Foundation; either
renatofilho@75:  * version 2 of the License, or (at your option) any later version.
renatofilho@75:  *
renatofilho@75:  * This library is distributed in the hope that it will be useful,
renatofilho@75:  * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@75:  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
renatofilho@75:  * Library General Public License for more details.
renatofilho@75:  *
renatofilho@75:  * You should have received a copy of the GNU Library General Public
renatofilho@75:  * License along with this library; if not, write to the
renatofilho@75:  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
renatofilho@75:  * Boston, MA 02111-1307, USA.
renatofilho@75:  */
renatofilho@75: 
renatofilho@75: #ifdef HAVE_CONFIG_H
renatofilho@75: #include "config.h"
renatofilho@75: #endif
renatofilho@75: 
renatofilho@75: #include <glib/gstrfuncs.h>
renatofilho@75: 
renatofilho@75: #include <gst/gsttypefind.h>
renatofilho@75: #include <gst/gstelement.h>
renatofilho@75: #include <gst/gstversion.h>
renatofilho@75: #include <gst/gstinfo.h>
renatofilho@75: #include <gst/gstutils.h>
renatofilho@75: 
renatofilho@75: #include <string.h>
renatofilho@75: #include <ctype.h>
renatofilho@75: 
renatofilho@75: GST_DEBUG_CATEGORY_STATIC (type_find_debug);
renatofilho@75: #define GST_CAT_DEFAULT type_find_debug
renatofilho@75: 
renatofilho@75: /*** text/plain ***/
renatofilho@75: static gboolean xml_check_first_element (GstTypeFind * tf,
renatofilho@75:     const gchar * element, guint elen, gboolean strict);
renatofilho@75: 
renatofilho@75: 
renatofilho@75: static GstStaticCaps utf8_caps = GST_STATIC_CAPS ("text/plain");
renatofilho@75: 
renatofilho@75: #define UTF8_CAPS gst_static_caps_get(&utf8_caps)
renatofilho@75: 
renatofilho@75: static gboolean
renatofilho@75: utf8_type_find_have_valid_utf8_at_offset (GstTypeFind * tf, guint64 offset,
renatofilho@75:     GstTypeFindProbability * prob)
renatofilho@75: {
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   /* randomly decided values */
renatofilho@75:   guint min_size = 16;          /* minimum size  */
renatofilho@75:   guint size = 32 * 1024;       /* starting size */
renatofilho@75:   guint probability = 95;       /* starting probability */
renatofilho@75:   guint step = 10;              /* how much we reduce probability in each
renatofilho@75:                                  * iteration */
renatofilho@75: 
renatofilho@75:   while (probability > step && size > min_size) {
renatofilho@75:     data = gst_type_find_peek (tf, offset, size);
renatofilho@75:     if (data) {
renatofilho@75:       gchar *end;
renatofilho@75:       gchar *start = (gchar *) data;
renatofilho@75: 
renatofilho@75:       if (g_utf8_validate (start, size, (const gchar **) &end) || (end - start + 4 > size)) {   /* allow last char to be cut off */
renatofilho@75:         *prob = probability;
renatofilho@75:         return TRUE;
renatofilho@75:       }
renatofilho@75:       *prob = 0;
renatofilho@75:       return FALSE;
renatofilho@75:     }
renatofilho@75:     size /= 2;
renatofilho@75:     probability -= step;
renatofilho@75:   }
renatofilho@75:   *prob = 0;
renatofilho@75:   return FALSE;
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: utf8_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   GstTypeFindProbability start_prob, mid_prob;
renatofilho@75:   guint64 length;
renatofilho@75: 
renatofilho@75:   /* leave xml to the xml typefinders */
renatofilho@75:   if (xml_check_first_element (tf, "", 0, TRUE))
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   /* check beginning of stream */
renatofilho@75:   if (!utf8_type_find_have_valid_utf8_at_offset (tf, 0, &start_prob))
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   GST_LOG ("start is plain text with probability of %u", start_prob);
renatofilho@75: 
renatofilho@75:   /* POSSIBLE is the highest probability we ever return if we can't
renatofilho@75:    * probe into the middle of the file and don't know its length */
renatofilho@75: 
renatofilho@75:   length = gst_type_find_get_length (tf);
renatofilho@75:   if (length == 0 || length == (guint64) - 1) {
renatofilho@75:     gst_type_find_suggest (tf, MIN (start_prob, GST_TYPE_FIND_POSSIBLE),
renatofilho@75:         UTF8_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   if (length < 64 * 1024) {
renatofilho@75:     gst_type_find_suggest (tf, start_prob, UTF8_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* check middle of stream */
renatofilho@75:   if (!utf8_type_find_have_valid_utf8_at_offset (tf, length / 2, &mid_prob))
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   GST_LOG ("middle is plain text with probability of %u", mid_prob);
renatofilho@75:   gst_type_find_suggest (tf, (start_prob + mid_prob) / 2, UTF8_CAPS);
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** text/uri-list ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps uri_caps = GST_STATIC_CAPS ("text/uri-list");
renatofilho@75: 
renatofilho@75: #define URI_CAPS (gst_static_caps_get(&uri_caps))
renatofilho@75: #define BUFFER_SIZE 16          /* If the string is < 16 bytes we're screwed */
renatofilho@75: #define INC_BUFFER {                                                    \
renatofilho@75:   pos++;                                                                \
renatofilho@75:   if (pos == BUFFER_SIZE) {                                             \
renatofilho@75:     pos = 0;                                                            \
renatofilho@75:     offset += BUFFER_SIZE;                                              \
renatofilho@75:     data = gst_type_find_peek (tf, offset, BUFFER_SIZE);                \
renatofilho@75:     if (data == NULL) return;                                           \
renatofilho@75:   } else {                                                              \
renatofilho@75:     data++;                                                             \
renatofilho@75:   }                                                                     \
renatofilho@75: }
renatofilho@75: static void
renatofilho@75: uri_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, BUFFER_SIZE);
renatofilho@75:   guint pos = 0;
renatofilho@75:   guint offset = 0;
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     /* Search for # comment lines */
renatofilho@75:     while (*data == '#') {
renatofilho@75:       /* Goto end of line */
renatofilho@75:       while (*data != '\n') {
renatofilho@75:         INC_BUFFER;
renatofilho@75:       }
renatofilho@75: 
renatofilho@75:       INC_BUFFER;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     if (!g_ascii_isalpha (*data)) {
renatofilho@75:       /* Had a non alpha char - can't be uri-list */
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     INC_BUFFER;
renatofilho@75: 
renatofilho@75:     while (g_ascii_isalnum (*data)) {
renatofilho@75:       INC_BUFFER;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     if (*data != ':') {
renatofilho@75:       /* First non alpha char is not a : */
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     /* Get the next 2 bytes as well */
renatofilho@75:     data = gst_type_find_peek (tf, offset + pos, 3);
renatofilho@75:     if (data == NULL)
renatofilho@75:       return;
renatofilho@75: 
renatofilho@75:     if (data[1] != '/' && data[2] != '/') {
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, URI_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: 
renatofilho@75: /*** application/xml **********************************************************/
renatofilho@75: 
renatofilho@75: #define XML_BUFFER_SIZE 16
renatofilho@75: #define XML_INC_BUFFER {                                                \
renatofilho@75:   pos++;                                                                \
renatofilho@75:   if (pos == XML_BUFFER_SIZE) {                                         \
renatofilho@75:     pos = 0;                                                            \
renatofilho@75:     offset += XML_BUFFER_SIZE;                                          \
renatofilho@75:     data = gst_type_find_peek (tf, offset, XML_BUFFER_SIZE);            \
renatofilho@75:     if (data == NULL) return FALSE;                                     \
renatofilho@75:   } else {                                                              \
renatofilho@75:     data++;                                                             \
renatofilho@75:   }                                                                     \
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static gboolean
renatofilho@75: xml_check_first_element (GstTypeFind * tf, const gchar * element, guint elen,
renatofilho@75:     gboolean strict)
renatofilho@75: {
renatofilho@75:   gboolean got_xmldec;
renatofilho@75:   guint8 *data;
renatofilho@75:   guint offset = 0;
renatofilho@75:   guint pos = 0;
renatofilho@75: 
renatofilho@75:   data = gst_type_find_peek (tf, 0, XML_BUFFER_SIZE);
renatofilho@75:   if (!data)
renatofilho@75:     return FALSE;
renatofilho@75: 
renatofilho@75:   /* look for the XMLDec
renatofilho@75:    * see XML spec 2.8, Prolog and Document Type Declaration
renatofilho@75:    * http://www.w3.org/TR/2004/REC-xml-20040204/#sec-prolog-dtd */
renatofilho@75:   got_xmldec = (memcmp (data, "<?xml", 5) == 0);
renatofilho@75: 
renatofilho@75:   if (strict && !got_xmldec)
renatofilho@75:     return FALSE;
renatofilho@75: 
renatofilho@75:   /* skip XMLDec in any case if we've got one */
renatofilho@75:   if (got_xmldec) {
renatofilho@75:     pos += 5;
renatofilho@75:     data += 5;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* look for the first element, it has to be the requested element. Bail
renatofilho@75:    * out if it is not within the first 4kB. */
renatofilho@75:   while (data && (offset + pos) < 4096) {
renatofilho@75:     while (*data != '<' && (offset + pos) < 4096) {
renatofilho@75:       XML_INC_BUFFER;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     XML_INC_BUFFER;
renatofilho@75:     if (!g_ascii_isalpha (*data)) {
renatofilho@75:       /* if not alphabetic, it's a PI or an element / attribute declaration
renatofilho@75:        * like <?xxx or <!xxx */
renatofilho@75:       XML_INC_BUFFER;
renatofilho@75:       continue;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     /* the first normal element, check if it's the one asked for */
renatofilho@75:     data = gst_type_find_peek (tf, offset + pos, elen + 1);
renatofilho@75:     return (data && element && strncmp ((char *) data, element, elen) == 0);
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   return FALSE;
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static GstStaticCaps generic_xml_caps = GST_STATIC_CAPS ("application/xml");
renatofilho@75: 
renatofilho@75: #define GENERIC_XML_CAPS (gst_static_caps_get(&generic_xml_caps))
renatofilho@75: static void
renatofilho@75: xml_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   if (xml_check_first_element (tf, "", 0, TRUE)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MINIMUM, GENERIC_XML_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/smil *********************************************************/
renatofilho@75: 
renatofilho@75: static GstStaticCaps smil_caps = GST_STATIC_CAPS ("application/smil");
renatofilho@75: 
renatofilho@75: #define SMIL_CAPS (gst_static_caps_get(&smil_caps))
renatofilho@75: static void
renatofilho@75: smil_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   if (xml_check_first_element (tf, "smil", 4, FALSE)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SMIL_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** text/html ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps html_caps = GST_STATIC_CAPS ("text/html");
renatofilho@75: 
renatofilho@75: #define HTML_CAPS gst_static_caps_get (&html_caps)
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: html_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   gchar *d, *data;
renatofilho@75: 
renatofilho@75:   data = (gchar *) gst_type_find_peek (tf, 0, 16);
renatofilho@75:   if (!data)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   if (!g_ascii_strncasecmp (data, "<!DOCTYPE HTML", 14)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, HTML_CAPS);
renatofilho@75:   } else if (xml_check_first_element (tf, "html", 4, FALSE)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, HTML_CAPS);
renatofilho@75:   } else if ((d = memchr (data, '<', 16))) {
renatofilho@75:     data = (gchar *) gst_type_find_peek (tf, d - data, 6);
renatofilho@75:     if (data && g_ascii_strncasecmp (data, "<html>", 6) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, HTML_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/x-fli ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps flx_caps = GST_STATIC_CAPS ("video/x-fli");
renatofilho@75: 
renatofilho@75: #define FLX_CAPS gst_static_caps_get(&flx_caps)
renatofilho@75: static void
renatofilho@75: flx_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 134);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     /* check magic and the frame type of the first frame */
renatofilho@75:     if ((data[4] == 0x11 || data[4] == 0x12 ||
renatofilho@75:             data[4] == 0x30 || data[4] == 0x44) &&
renatofilho@75:         data[5] == 0xaf &&
renatofilho@75:         ((data[132] == 0x00 || data[132] == 0xfa) && data[133] == 0xf1)) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, FLX_CAPS);
renatofilho@75:     }
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75:   data = gst_type_find_peek (tf, 0, 6);
renatofilho@75:   if (data) {
renatofilho@75:     /* check magic only */
renatofilho@75:     if ((data[4] == 0x11 || data[4] == 0x12 ||
renatofilho@75:             data[4] == 0x30 || data[4] == 0x44) && data[5] == 0xaf) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, FLX_CAPS);
renatofilho@75:     }
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-id3 ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps id3_caps = GST_STATIC_CAPS ("application/x-id3");
renatofilho@75: 
renatofilho@75: #define ID3_CAPS gst_static_caps_get(&id3_caps)
renatofilho@75: static void
renatofilho@75: id3v2_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 10);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "ID3", 3) == 0 &&
renatofilho@75:       data[3] != 0xFF && data[4] != 0xFF &&
renatofilho@75:       (data[6] & 0x80) == 0 && (data[7] & 0x80) == 0 &&
renatofilho@75:       (data[8] & 0x80) == 0 && (data[9] & 0x80) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, ID3_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: id3v1_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, -128, 3);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "TAG", 3) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, ID3_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-ape ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps apetag_caps = GST_STATIC_CAPS ("application/x-apetag");
renatofilho@75: 
renatofilho@75: #define APETAG_CAPS gst_static_caps_get(&apetag_caps)
renatofilho@75: static void
renatofilho@75: apetag_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   /* APEv1/2 at start of file */
renatofilho@75:   data = gst_type_find_peek (tf, 0, 8);
renatofilho@75:   if (data && !memcmp (data, "APETAGEX", 8)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, APETAG_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* APEv1/2 at end of file */
renatofilho@75:   data = gst_type_find_peek (tf, -32, 8);
renatofilho@75:   if (data && !memcmp (data, "APETAGEX", 8)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, APETAG_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-ttafile ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps tta_caps = GST_STATIC_CAPS ("audio/x-ttafile");
renatofilho@75: 
renatofilho@75: #define TTA_CAPS gst_static_caps_get(&tta_caps)
renatofilho@75: static void
renatofilho@75: tta_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 3);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, "TTA", 3) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, TTA_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/mpeg version 2, 4 ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps aac_caps = GST_STATIC_CAPS ("audio/mpeg, "
renatofilho@75:     "mpegversion = (int) { 2, 4 }, framed = (bool) false");
renatofilho@75: #define AAC_CAPS (gst_static_caps_get(&aac_caps))
renatofilho@75: #define AAC_AMOUNT (4096)
renatofilho@75: static void
renatofilho@75: aac_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, AAC_AMOUNT);
renatofilho@75:   gint snc;
renatofilho@75: 
renatofilho@75:   /* detect adts header or adif header.
renatofilho@75:    * The ADIF header is 4 bytes, that should be OK. The ADTS header, on
renatofilho@75:    * the other hand, is 14 bits only, so we require one valid frame with
renatofilho@75:    * again a valid syncpoint on the next one (28 bits) for certainty. We
renatofilho@75:    * require 4 kB, which is quite a lot, since frames are generally 200-400
renatofilho@75:    * bytes.
renatofilho@75:    */
renatofilho@75:   if (data) {
renatofilho@75:     gint n;
renatofilho@75: 
renatofilho@75:     for (n = 0; n < AAC_AMOUNT - 3; n++) {
renatofilho@75:       snc = GST_READ_UINT16_BE (&data[n]);
renatofilho@75:       if ((snc & 0xfff6) == 0xfff0) {
renatofilho@75:         /* ADTS header - find frame length */
renatofilho@75:         gint len;
renatofilho@75: 
renatofilho@75:         GST_DEBUG ("Found one ADTS syncpoint at offset 0x%x, tracing next...",
renatofilho@75:             n);
renatofilho@75:         if (AAC_AMOUNT - n < 5) {
renatofilho@75:           GST_DEBUG ("Not enough data to parse ADTS header");
renatofilho@75:           break;
renatofilho@75:         }
renatofilho@75:         len = ((data[n + 3] & 0x03) << 11) |
renatofilho@75:             (data[n + 4] << 3) | ((data[n + 5] & 0xe0) >> 5);
renatofilho@75:         if (n + len + 2 >= AAC_AMOUNT) {
renatofilho@75:           GST_DEBUG ("Next frame is not within reach");
renatofilho@75:           break;
renatofilho@75:         } else if (len == 0) {
renatofilho@75:           continue;
renatofilho@75:         }
renatofilho@75: 
renatofilho@75:         snc = GST_READ_UINT16_BE (&data[n + len]);
renatofilho@75:         if ((snc & 0xfff6) == 0xfff0) {
renatofilho@75:           gint mpegversion = (data[n + 1] & 0x08) ? 2 : 4;
renatofilho@75:           GstCaps *caps = gst_caps_new_simple ("audio/mpeg",
renatofilho@75:               "framed", G_TYPE_BOOLEAN, FALSE,
renatofilho@75:               "mpegversion", G_TYPE_INT, mpegversion,
renatofilho@75:               NULL);
renatofilho@75: 
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, caps);
renatofilho@75:           gst_caps_unref (caps);
renatofilho@75: 
renatofilho@75:           GST_DEBUG ("Found ADTS-%d syncpoint at offset 0x%x (framelen %u)",
renatofilho@75:               mpegversion, n, len);
renatofilho@75:           break;
renatofilho@75:         }
renatofilho@75: 
renatofilho@75:         GST_DEBUG ("No next frame found... (should be at 0x%x)", n + len);
renatofilho@75:       } else if (!memcmp (&data[n], "ADIF", 4)) {
renatofilho@75:         /* ADIF header */
renatofilho@75:         GstCaps *caps = gst_caps_new_simple ("audio/mpeg",
renatofilho@75:             "framed", G_TYPE_BOOLEAN, FALSE,
renatofilho@75:             "mpegversion", G_TYPE_INT, 4,
renatofilho@75:             NULL);
renatofilho@75: 
renatofilho@75:         gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, caps);
renatofilho@75:         gst_caps_unref (caps);
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/mpeg version 1 ***/
renatofilho@75: 
renatofilho@75: /*
renatofilho@75:  * The chance that random data is identified as a valid mp3 header is 63 / 2^18
renatofilho@75:  * (0.024%) per try. This makes the function for calculating false positives
renatofilho@75:  *   1 - (1 - ((63 / 2 ^18) ^ GST_MP3_TYPEFIND_MIN_HEADERS)) ^ buffersize)
renatofilho@75:  * This has the following probabilities of false positives:
renatofilho@75:  * datasize               MIN_HEADERS
renatofilho@75:  * (bytes)      1       2       3       4
renatofilho@75:  * 4096         62.6%    0.02%   0%      0%
renatofilho@75:  * 16384        98%      0.09%   0%      0%
renatofilho@75:  * 1 MiB       100%      5.88%   0%      0%
renatofilho@75:  * 1 GiB       100%    100%      1.44%   0%
renatofilho@75:  * 1 TiB       100%    100%    100%      0.35%
renatofilho@75:  * This means that the current choice (3 headers by most of the time 4096 byte
renatofilho@75:  * buffers is pretty safe for now.
renatofilho@75:  *
renatofilho@75:  * The max. size of each frame is 1440 bytes, which means that for N frames to
renatofilho@75:  * be detected, we need 1440 * GST_MP3_TYPEFIND_MIN_HEADERS + 3 bytes of data.
renatofilho@75:  * Assuming we step into the stream right after the frame header, this
renatofilho@75:  * means we need 1440 * (GST_MP3_TYPEFIND_MIN_HEADERS + 1) - 1 + 3 bytes
renatofilho@75:  * of data (5762) to always detect any mp3.
renatofilho@75:  */
renatofilho@75: 
renatofilho@75: static const guint mp3types_bitrates[2][3][16] =
renatofilho@75:     { {{0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448,},
renatofilho@75:     {0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384,},
renatofilho@75:     {0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320,}},
renatofilho@75: {{0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256,},
renatofilho@75:     {0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160,},
renatofilho@75:     {0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160,}},
renatofilho@75: };
renatofilho@75: 
renatofilho@75: static const guint mp3types_freqs[3][3] = { {11025, 12000, 8000},
renatofilho@75: {22050, 24000, 16000},
renatofilho@75: {44100, 48000, 32000}
renatofilho@75: };
renatofilho@75: 
renatofilho@75: static inline guint
renatofilho@75: mp3_type_frame_length_from_header (guint32 header, guint * put_layer,
renatofilho@75:     guint * put_channels, guint * put_bitrate, guint * put_samplerate,
renatofilho@75:     gboolean * may_be_free_format, gint possible_free_framelen)
renatofilho@75: {
renatofilho@75:   guint bitrate, layer, length, mode, samplerate, version, channels;
renatofilho@75: 
renatofilho@75:   if ((header & 0xffe00000) != 0xffe00000)
renatofilho@75:     return 0;
renatofilho@75: 
renatofilho@75:   /* we don't need extension, copyright, original or
renatofilho@75:    * emphasis for the frame length */
renatofilho@75:   header >>= 6;
renatofilho@75: 
renatofilho@75:   /* mode */
renatofilho@75:   mode = header & 0x3;
renatofilho@75:   header >>= 3;
renatofilho@75: 
renatofilho@75:   /* padding */
renatofilho@75:   length = header & 0x1;
renatofilho@75:   header >>= 1;
renatofilho@75: 
renatofilho@75:   /* sampling frequency */
renatofilho@75:   samplerate = header & 0x3;
renatofilho@75:   if (samplerate == 3)
renatofilho@75:     return 0;
renatofilho@75:   header >>= 2;
renatofilho@75: 
renatofilho@75:   /* bitrate index */
renatofilho@75:   bitrate = header & 0xF;
renatofilho@75:   if (bitrate == 0 && possible_free_framelen == -1) {
renatofilho@75:     GST_LOG ("Possibly a free format mp3 - signalling");
renatofilho@75:     *may_be_free_format = TRUE;
renatofilho@75:   }
renatofilho@75:   if (bitrate == 15 || (bitrate == 0 && possible_free_framelen == -1))
renatofilho@75:     return 0;
renatofilho@75: 
renatofilho@75:   /* ignore error correction, too */
renatofilho@75:   header >>= 5;
renatofilho@75: 
renatofilho@75:   /* layer */
renatofilho@75:   layer = 4 - (header & 0x3);
renatofilho@75:   if (layer == 4)
renatofilho@75:     return 0;
renatofilho@75:   header >>= 2;
renatofilho@75: 
renatofilho@75:   /* version 0=MPEG2.5; 2=MPEG2; 3=MPEG1 */
renatofilho@75:   version = header & 0x3;
renatofilho@75:   if (version == 1)
renatofilho@75:     return 0;
renatofilho@75: 
renatofilho@75:   /* lookup */
renatofilho@75:   channels = (mode == 3) ? 1 : 2;
renatofilho@75:   samplerate = mp3types_freqs[version > 0 ? version - 1 : 0][samplerate];
renatofilho@75:   if (bitrate == 0) {
renatofilho@75:     if (layer == 1) {
renatofilho@75:       length *= 4;
renatofilho@75:       length += possible_free_framelen;
renatofilho@75:       bitrate = length * samplerate / 48000;
renatofilho@75:     } else {
renatofilho@75:       length += possible_free_framelen;
renatofilho@75:       bitrate = length * samplerate /
renatofilho@75:           ((layer == 3 && version != 3) ? 72000 : 144000);
renatofilho@75:     }
renatofilho@75:   } else {
renatofilho@75:     /* calculating */
renatofilho@75:     bitrate = mp3types_bitrates[version == 3 ? 0 : 1][layer - 1][bitrate];
renatofilho@75:     if (layer == 1) {
renatofilho@75:       length = ((12000 * bitrate / samplerate) + length) * 4;
renatofilho@75:     } else {
renatofilho@75:       length += ((layer == 3
renatofilho@75:               && version != 3) ? 72000 : 144000) * bitrate / samplerate;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   GST_LOG ("mp3typefind: calculated mp3 frame length of %u bytes", length);
renatofilho@75:   GST_LOG
renatofilho@75:       ("mp3typefind: samplerate = %u - bitrate = %u - layer = %u - version = %u"
renatofilho@75:       " - channels = %u", samplerate, bitrate, layer, version, channels);
renatofilho@75: 
renatofilho@75:   if (put_layer)
renatofilho@75:     *put_layer = layer;
renatofilho@75:   if (put_channels)
renatofilho@75:     *put_channels = channels;
renatofilho@75:   if (put_bitrate)
renatofilho@75:     *put_bitrate = bitrate;
renatofilho@75:   if (put_samplerate)
renatofilho@75:     *put_samplerate = samplerate;
renatofilho@75: 
renatofilho@75:   return length;
renatofilho@75: }
renatofilho@75: 
renatofilho@75: 
renatofilho@75: static GstStaticCaps mp3_caps = GST_STATIC_CAPS ("audio/mpeg, "
renatofilho@75:     "mpegversion = (int) 1, layer = (int) [ 1, 3 ]");
renatofilho@75: #define MP3_CAPS (gst_static_caps_get(&mp3_caps))
renatofilho@75: /*
renatofilho@75:  * random values for typefinding
renatofilho@75:  * if no more data is available, we will return a probability of
renatofilho@75:  * (found_headers/TRY_HEADERS) * (MAXIMUM * (TRY_SYNC - bytes_skipped)
renatofilho@75:  *        / TRY_SYNC)
renatofilho@75:  * if found_headers >= MIN_HEADERS
renatofilho@75:  */
renatofilho@75: #define GST_MP3_TYPEFIND_MIN_HEADERS (2)
renatofilho@75: #define GST_MP3_TYPEFIND_TRY_HEADERS (5)
renatofilho@75: #define GST_MP3_TYPEFIND_TRY_SYNC (GST_TYPE_FIND_MAXIMUM * 100) /* 10kB */
renatofilho@75: #define GST_MP3_TYPEFIND_SYNC_SIZE (2048)
renatofilho@75: #define GST_MP3_WRONG_HEADER (10)
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: mp3_type_find_at_offset (GstTypeFind * tf, guint64 start_off,
renatofilho@75:     guint * found_layer, GstTypeFindProbability * found_prob)
renatofilho@75: {
renatofilho@75:   guint8 *data = NULL;
renatofilho@75:   guint8 *data_end = NULL;
renatofilho@75:   guint size;
renatofilho@75:   guint64 skipped;
renatofilho@75:   gint last_free_offset = -1;
renatofilho@75:   gint last_free_framelen = -1;
renatofilho@75:   gboolean headerstart = TRUE;
renatofilho@75: 
renatofilho@75:   *found_layer = 0;
renatofilho@75:   *found_prob = 0;
renatofilho@75: 
renatofilho@75:   size = 0;
renatofilho@75:   skipped = 0;
renatofilho@75:   while (skipped < GST_MP3_TYPEFIND_TRY_SYNC) {
renatofilho@75:     if (size <= 0) {
renatofilho@75:       size = GST_MP3_TYPEFIND_SYNC_SIZE * 2;
renatofilho@75:       do {
renatofilho@75:         size /= 2;
renatofilho@75:         data = gst_type_find_peek (tf, skipped + start_off, size);
renatofilho@75:       } while (size > 10 && !data);
renatofilho@75:       if (!data)
renatofilho@75:         break;
renatofilho@75:       data_end = data + size;
renatofilho@75:     }
renatofilho@75:     if (*data == 0xFF) {
renatofilho@75:       guint8 *head_data = NULL;
renatofilho@75:       guint layer = 0, bitrate, samplerate, channels;
renatofilho@75:       guint found = 0;          /* number of valid headers found */
renatofilho@75:       guint64 offset = skipped;
renatofilho@75: 
renatofilho@75:       while (found < GST_MP3_TYPEFIND_TRY_HEADERS) {
renatofilho@75:         guint32 head;
renatofilho@75:         guint length;
renatofilho@75:         guint prev_layer = 0, prev_bitrate = 0;
renatofilho@75:         guint prev_channels = 0, prev_samplerate = 0;
renatofilho@75:         gboolean free = FALSE;
renatofilho@75: 
renatofilho@75:         if ((gint64) (offset - skipped + 4) >= 0 &&
renatofilho@75:             data + offset - skipped + 4 < data_end) {
renatofilho@75:           head_data = data + offset - skipped;
renatofilho@75:         } else {
renatofilho@75:           head_data = gst_type_find_peek (tf, offset + start_off, 4);
renatofilho@75:         }
renatofilho@75:         if (!head_data)
renatofilho@75:           break;
renatofilho@75:         head = GST_READ_UINT32_BE (head_data);
renatofilho@75:         if (!(length = mp3_type_frame_length_from_header (head, &layer,
renatofilho@75:                     &channels, &bitrate, &samplerate, &free,
renatofilho@75:                     last_free_framelen))) {
renatofilho@75:           if (free) {
renatofilho@75:             if (last_free_offset == -1)
renatofilho@75:               last_free_offset = offset;
renatofilho@75:             else {
renatofilho@75:               last_free_framelen = offset - last_free_offset;
renatofilho@75:               offset = last_free_offset;
renatofilho@75:               continue;
renatofilho@75:             }
renatofilho@75:           } else {
renatofilho@75:             last_free_framelen = -1;
renatofilho@75:           }
renatofilho@75: 
renatofilho@75:           /* Mark the fact that we didn't find a valid header at the beginning */
renatofilho@75:           if (found == 0)
renatofilho@75:             headerstart = FALSE;
renatofilho@75: 
renatofilho@75:           GST_LOG ("%d. header at offset %" G_GUINT64_FORMAT
renatofilho@75:               " (0x%" G_GINT64_MODIFIER "x) was not an mp3 header "
renatofilho@75:               "(possibly-free: %s)", found + 1, start_off + offset,
renatofilho@75:               start_off + offset, free ? "yes" : "no");
renatofilho@75:           break;
renatofilho@75:         }
renatofilho@75:         if ((prev_layer && prev_layer != layer) ||
renatofilho@75:             /* (prev_bitrate && prev_bitrate != bitrate) || <-- VBR */
renatofilho@75:             (prev_samplerate && prev_samplerate != samplerate) ||
renatofilho@75:             (prev_channels && prev_channels != channels)) {
renatofilho@75:           /* this means an invalid property, or a change, which might mean
renatofilho@75:            * that this is not a mp3 but just a random bytestream. It could
renatofilho@75:            * be a freaking funky encoded mp3 though. We'll just not count
renatofilho@75:            * this header*/
renatofilho@75:           prev_layer = layer;
renatofilho@75:           prev_bitrate = bitrate;
renatofilho@75:           prev_channels = channels;
renatofilho@75:           prev_samplerate = samplerate;
renatofilho@75:         } else {
renatofilho@75:           found++;
renatofilho@75:           GST_LOG ("found %d. header at offset %" G_GUINT64_FORMAT " (0x%"
renatofilho@75:               G_GINT64_MODIFIER "X)", found, start_off + offset,
renatofilho@75:               start_off + offset);
renatofilho@75:         }
renatofilho@75:         offset += length;
renatofilho@75:       }
renatofilho@75:       g_assert (found <= GST_MP3_TYPEFIND_TRY_HEADERS);
renatofilho@75:       if (found == GST_MP3_TYPEFIND_TRY_HEADERS ||
renatofilho@75:           (found >= GST_MP3_TYPEFIND_MIN_HEADERS && head_data == NULL)) {
renatofilho@75:         /* we can make a valid guess */
renatofilho@75:         guint probability = found * GST_TYPE_FIND_MAXIMUM *
renatofilho@75:             (GST_MP3_TYPEFIND_TRY_SYNC - skipped) /
renatofilho@75:             GST_MP3_TYPEFIND_TRY_HEADERS / GST_MP3_TYPEFIND_TRY_SYNC;
renatofilho@75: 
renatofilho@75:         if (!headerstart
renatofilho@75:             && ((probability - GST_MP3_WRONG_HEADER) > GST_TYPE_FIND_MINIMUM))
renatofilho@75:           probability -= GST_MP3_WRONG_HEADER;
renatofilho@75:         if (probability < GST_TYPE_FIND_MINIMUM)
renatofilho@75:           probability = GST_TYPE_FIND_MINIMUM;
renatofilho@75:         if (start_off > 0)
renatofilho@75:           probability /= 2;
renatofilho@75: 
renatofilho@75:         GST_INFO
renatofilho@75:             ("audio/mpeg calculated %u  =  %u  *  %u / %u  *  (%u - %"
renatofilho@75:             G_GUINT64_FORMAT ") / %u", probability, GST_TYPE_FIND_MAXIMUM,
renatofilho@75:             found, GST_MP3_TYPEFIND_TRY_HEADERS, GST_MP3_TYPEFIND_TRY_SYNC,
renatofilho@75:             (guint64) skipped, GST_MP3_TYPEFIND_TRY_SYNC);
renatofilho@75:         /* make sure we're not id3 tagged */
renatofilho@75:         head_data = gst_type_find_peek (tf, -128, 3);
renatofilho@75:         if (head_data && (memcmp (head_data, "TAG", 3) == 0)) {
renatofilho@75:           probability = 0;
renatofilho@75:         }
renatofilho@75:         g_assert (probability <= GST_TYPE_FIND_MAXIMUM);
renatofilho@75: 
renatofilho@75:         *found_prob = probability;
renatofilho@75:         if (probability > 0)
renatofilho@75:           *found_layer = layer;
renatofilho@75:         return;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     data++;
renatofilho@75:     skipped++;
renatofilho@75:     size--;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: mp3_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   GstTypeFindProbability prob, mid_prob;
renatofilho@75:   guint8 *data;
renatofilho@75:   guint layer, mid_layer;
renatofilho@75:   guint64 length;
renatofilho@75: 
renatofilho@75:   mp3_type_find_at_offset (tf, 0, &layer, &prob);
renatofilho@75:   length = gst_type_find_get_length (tf);
renatofilho@75: 
renatofilho@75:   if (length == 0 || length == (guint64) - 1) {
renatofilho@75:     if (prob != 0)
renatofilho@75:       goto suggest;
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* if we're pretty certain already, skip the additional check */
renatofilho@75:   if (prob >= GST_TYPE_FIND_LIKELY)
renatofilho@75:     goto suggest;
renatofilho@75: 
renatofilho@75:   mp3_type_find_at_offset (tf, length / 2, &mid_layer, &mid_prob);
renatofilho@75: 
renatofilho@75:   if (mid_prob > 0) {
renatofilho@75:     if (prob == 0) {
renatofilho@75:       GST_LOG ("detected audio/mpeg only in the middle (p=%u)", mid_prob);
renatofilho@75:       layer = mid_layer;
renatofilho@75:       prob = mid_prob;
renatofilho@75:       goto suggest;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     if (layer != mid_layer) {
renatofilho@75:       GST_WARNING ("audio/mpeg layer discrepancy: %u vs. %u", layer, mid_layer);
renatofilho@75:       return;                   /* FIXME: or should we just go with the one in the middle? */
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     /* detected mpeg audio both in middle of the file and at the start */
renatofilho@75:     prob = (prob + mid_prob) / 2;
renatofilho@75:     goto suggest;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* let's see if there's a valid header right at the start */
renatofilho@75:   data = gst_type_find_peek (tf, 0, 4); /* use min. frame size? */
renatofilho@75:   if (data && mp3_type_frame_length_from_header (GST_READ_UINT32_BE (data),
renatofilho@75:           &layer, NULL, NULL, NULL, NULL, 0) != 0) {
renatofilho@75:     if (prob == 0)
renatofilho@75:       prob = GST_TYPE_FIND_POSSIBLE - 10;
renatofilho@75:     else
renatofilho@75:       prob = MAX (GST_TYPE_FIND_POSSIBLE - 10, prob + 10);
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   if (prob > 0)
renatofilho@75:     goto suggest;
renatofilho@75: 
renatofilho@75:   return;
renatofilho@75: 
renatofilho@75: suggest:
renatofilho@75:   {
renatofilho@75:     GstCaps *caps;
renatofilho@75: 
renatofilho@75:     g_assert (layer > 0);
renatofilho@75: 
renatofilho@75:     caps = gst_caps_make_writable (MP3_CAPS);
renatofilho@75:     gst_structure_set (gst_caps_get_structure (caps, 0), "layer",
renatofilho@75:         G_TYPE_INT, layer, NULL);
renatofilho@75:     gst_type_find_suggest (tf, prob, caps);
renatofilho@75:     gst_caps_unref (caps);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-musepack ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps musepack_caps = GST_STATIC_CAPS ("audio/x-musepack");
renatofilho@75: 
renatofilho@75: #define MUSEPACK_CAPS (gst_static_caps_get(&musepack_caps))
renatofilho@75: static void
renatofilho@75: musepack_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "MP+", 3) == 0) {
renatofilho@75:     if ((data[3] & 0x7f) == 7) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MUSEPACK_CAPS);
renatofilho@75:     } else {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY + 10, MUSEPACK_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-ac3 ***/
renatofilho@75: static GstStaticCaps ac3_caps = GST_STATIC_CAPS ("audio/x-ac3");
renatofilho@75: 
renatofilho@75: #define AC3_CAPS (gst_static_caps_get(&ac3_caps))
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: ac3_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 2);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     /* pretty lame method... */
renatofilho@75:     if (data[0] == 0x0b && data[1] == 0x77) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, AC3_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** wavpack ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps wavpack_caps =
renatofilho@75: GST_STATIC_CAPS ("audio/x-wavpack, framed = (boolean) false");
renatofilho@75: 
renatofilho@75: #define WAVPACK_CAPS (gst_static_caps_get(&wavpack_caps))
renatofilho@75: 
renatofilho@75: static GstStaticCaps wavpack_correction_caps =
renatofilho@75: GST_STATIC_CAPS ("audio/x-wavpack-correction, framed = (boolean) false");
renatofilho@75: 
renatofilho@75: #define WAVPACK_CORRECTION_CAPS (gst_static_caps_get(&wavpack_correction_caps))
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: wavpack_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint64 offset;
renatofilho@75:   guint32 blocksize;
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   data = gst_type_find_peek (tf, 0, 32);
renatofilho@75:   if (!data)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   if (data[0] != 'w' || data[1] != 'v' || data[2] != 'p' || data[3] != 'k')
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   /* Note: wavpack blocks can be fairly large (easily 60-110k), possibly
renatofilho@75:    * larger than the max. limits imposed by certain typefinding elements
renatofilho@75:    * like id3demux or apedemux, so typefinding is most likely only going to
renatofilho@75:    * work in pull-mode */
renatofilho@75:   blocksize = GST_READ_UINT32_LE (data + 4);
renatofilho@75:   GST_LOG ("wavpack header, blocksize=0x%04x", blocksize);
renatofilho@75:   offset = 32;
renatofilho@75:   while (offset < 32 + blocksize) {
renatofilho@75:     guint32 sublen;
renatofilho@75: 
renatofilho@75:     /* get chunk header */
renatofilho@75:     GST_LOG ("peeking at chunk at offset 0x%04x", (guint) offset);
renatofilho@75:     data = gst_type_find_peek (tf, offset, 4);
renatofilho@75:     if (data == NULL)
renatofilho@75:       break;
renatofilho@75:     sublen = ((guint32) data[1]) << 1;
renatofilho@75:     if (data[0] & 0x80) {
renatofilho@75:       sublen |= (((guint32) data[2]) << 9) | (((guint32) data[3]) << 17);
renatofilho@75:       sublen += 1 + 3;          /* id + length */
renatofilho@75:     } else {
renatofilho@75:       sublen += 1 + 1;          /* id + length */
renatofilho@75:     }
renatofilho@75:     if (sublen > blocksize - offset + 32) {
renatofilho@75:       GST_LOG ("chunk length too big (%u > %" G_GUINT64_FORMAT ")", sublen,
renatofilho@75:           blocksize - offset);
renatofilho@75:       break;
renatofilho@75:     }
renatofilho@75:     if ((data[0] & 0x20) == 0) {
renatofilho@75:       switch (data[0] & 0x0f) {
renatofilho@75:         case 0xa:              /* ID_WV_BITSTREAM  */
renatofilho@75:         case 0xc:              /* ID_WVX_BITSTREAM */
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, WAVPACK_CAPS);
renatofilho@75:           return;
renatofilho@75:         case 0xb:              /* ID_WVC_BITSTREAM */
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY,
renatofilho@75:               WAVPACK_CORRECTION_CAPS);
renatofilho@75:           return;
renatofilho@75:         default:
renatofilho@75:           break;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     offset += sublen;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** multipart/x-mixed-replace mimestream ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps multipart_caps =
renatofilho@75: GST_STATIC_CAPS ("multipart/x-mixed-replace");
renatofilho@75: #define MULTIPART_CAPS gst_static_caps_get(&multipart_caps)
renatofilho@75: 
renatofilho@75: /* multipart/x-mixed replace is: 
renatofilho@75:  *   <maybe some whitespace>--<some ascii chars>[\r]\n
renatofilho@75:  *   <more ascii chars>[\r]\nContent-type:<more ascii>[\r]\n */
renatofilho@75: static void
renatofilho@75: multipart_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data;
renatofilho@75:   guint8 *x;
renatofilho@75: 
renatofilho@75: #define MULTIPART_MAX_BOUNDARY_OFFSET 16
renatofilho@75:   data = gst_type_find_peek (tf, 0, MULTIPART_MAX_BOUNDARY_OFFSET);
renatofilho@75:   if (!data)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   for (x = data;
renatofilho@75:       x - data < MULTIPART_MAX_BOUNDARY_OFFSET - 2 && g_ascii_isspace (*x);
renatofilho@75:       x++);
renatofilho@75:   if (x[0] != '-' || x[1] != '-')
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   /* Could be okay, peek what should be enough for a complete header */
renatofilho@75: #define MULTIPART_MAX_HEADER_SIZE 256
renatofilho@75:   data = gst_type_find_peek (tf, 0, MULTIPART_MAX_HEADER_SIZE);
renatofilho@75:   if (!data)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   for (x = data; x - data < MULTIPART_MAX_HEADER_SIZE - 14; x++) {
renatofilho@75:     if (!isascii (*x)) {
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:     if (*x == '\n' &&
renatofilho@75:         !g_ascii_strncasecmp ("content-type:", (gchar *) x + 1, 13)) {
renatofilho@75:       GstCaps *caps = gst_caps_copy (MULTIPART_CAPS);
renatofilho@75: 
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, caps);
renatofilho@75:       gst_caps_unref (caps);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/mpeg systemstream ***/
renatofilho@75: static GstStaticCaps mpeg_sys_caps = GST_STATIC_CAPS ("video/mpeg, "
renatofilho@75:     "systemstream = (boolean) true, mpegversion = (int) [ 1, 2 ]");
renatofilho@75: 
renatofilho@75: #define MPEG_SYS_CAPS gst_static_caps_get(&mpeg_sys_caps)
renatofilho@75: #define IS_MPEG_HEADER(data)            ((((guint8 *)(data))[0] == 0x00) &&  \
renatofilho@75:                                          (((guint8 *)(data))[1] == 0x00) &&  \
renatofilho@75:                                          (((guint8 *)(data))[2] == 0x01))
renatofilho@75: 
renatofilho@75: #define IS_MPEG_PACK_HEADER(data)       (IS_MPEG_HEADER (data) &&            \
renatofilho@75:                                          (((guint8 *)(data))[3] == 0xBA))
renatofilho@75: 
renatofilho@75: #define IS_MPEG_SYSTEM_HEADER(data)     (IS_MPEG_HEADER (data) &&            \
renatofilho@75:                                          (((guint8 *)(data))[3] == 0xBB))
renatofilho@75: #define IS_MPEG_PACKET_HEADER(data)     (IS_MPEG_HEADER (data) &&            \
renatofilho@75:                                          ((((guint8 *)(data))[3] & 0x80) == 0x80))
renatofilho@75: 
renatofilho@75: #define IS_MPEG_PES_HEADER(data)        (IS_MPEG_HEADER (data) &&            \
renatofilho@75:                                          ((((guint8 *)(data))[3] == 0xE0) || \
renatofilho@75:                                           (((guint8 *)(data))[3] == 0xC0) || \
renatofilho@75:                                           (((guint8 *)(data))[3] == 0xBD)))
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: mpeg2_sys_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 5);
renatofilho@75:   gint mpegversion;
renatofilho@75: 
renatofilho@75:   if (data && IS_MPEG_PACK_HEADER (data)) {
renatofilho@75:     if ((data[4] & 0xC0) == 0x40) {
renatofilho@75:       /* type 2 */
renatofilho@75:       mpegversion = 2;
renatofilho@75:       goto suggest;
renatofilho@75:     } else if ((data[4] & 0xF0) == 0x20) {
renatofilho@75:       mpegversion = 1;
renatofilho@75:       goto suggest;
renatofilho@75:     }
renatofilho@75:   } else if (data && IS_MPEG_PES_HEADER (data)) {
renatofilho@75:     /* PES stream */
renatofilho@75:     mpegversion = 2;
renatofilho@75:     goto suggest;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   return;
renatofilho@75: suggest:
renatofilho@75:   {
renatofilho@75:     GstCaps *caps = gst_caps_copy (MPEG_SYS_CAPS);
renatofilho@75: 
renatofilho@75:     gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
renatofilho@75:         G_TYPE_INT, mpegversion, NULL);
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, caps);
renatofilho@75:     gst_caps_unref (caps);
renatofilho@75:   }
renatofilho@75: };
renatofilho@75: 
renatofilho@75: /* ATTENTION: ugly return value:
renatofilho@75:  * 0 -  invalid data
renatofilho@75:  * 1 - not enough data
renatofilho@75:  * anything else - size until next package
renatofilho@75:  */
renatofilho@75: static guint
renatofilho@75: mpeg1_parse_header (GstTypeFind * tf, guint64 offset)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, offset, 4);
renatofilho@75:   guint size;
renatofilho@75: 
renatofilho@75:   if (!data) {
renatofilho@75:     GST_LOG ("couldn't get MPEG header bytes");
renatofilho@75:     return 1;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   if (data[0] != 0 || data[1] != 0 || data[2] != 1) {
renatofilho@75:     GST_LOG ("no sync");
renatofilho@75:     return 0;
renatofilho@75:   }
renatofilho@75:   offset += 4;
renatofilho@75: 
renatofilho@75:   GST_LOG ("sync %02x", data[3]);
renatofilho@75: 
renatofilho@75:   switch (data[3]) {
renatofilho@75:     case 0xBA:                 /* pack header */
renatofilho@75:       data = gst_type_find_peek (tf, offset, 8);
renatofilho@75:       if (!data) {
renatofilho@75:         GST_LOG ("couldn't get MPEG pack header bytes");
renatofilho@75:         return 1;
renatofilho@75:       }
renatofilho@75:       size = 12;
renatofilho@75:       /* check marker bits */
renatofilho@75:       if ((data[0] & 0xF1) != 0x21 ||
renatofilho@75:           (data[2] & 0x01) != 0x01 ||
renatofilho@75:           (data[4] & 0x01) != 0x01 ||
renatofilho@75:           (data[5] & 0x80) != 0x80 || (data[7] & 0x01) != 0x01) {
renatofilho@75:         GST_LOG ("wrong marker bits");
renatofilho@75:         return 0;
renatofilho@75:       }
renatofilho@75:       break;
renatofilho@75: 
renatofilho@75:     case 0xB9:                 /* ISO end code */
renatofilho@75:       size = 4;
renatofilho@75:       break;
renatofilho@75: 
renatofilho@75:     case 0xBB:                 /* system header */
renatofilho@75:       data = gst_type_find_peek (tf, offset, 2);
renatofilho@75:       if (!data) {
renatofilho@75:         GST_LOG ("couldn't get MPEG pack header bytes");
renatofilho@75:         return 1;
renatofilho@75:       }
renatofilho@75:       size = GST_READ_UINT16_BE (data) + 6;
renatofilho@75:       offset += 2;
renatofilho@75:       data = gst_type_find_peek (tf, offset, size - 6);
renatofilho@75:       if (!data) {
renatofilho@75:         GST_LOG ("couldn't get MPEG pack header bytes");
renatofilho@75:         return 1;
renatofilho@75:       }
renatofilho@75:       /* check marker bits */
renatofilho@75:       if ((data[0] & 0x80) != 0x80 ||
renatofilho@75:           (data[2] & 0x01) != 0x01 || (data[4] & 0x20) != 0x20) {
renatofilho@75:         GST_LOG ("wrong marker bits");
renatofilho@75:         return 0;
renatofilho@75:       }
renatofilho@75:       /* check stream marker bits */
renatofilho@75:       for (offset = 6; offset < (size - 6); offset += 3) {
renatofilho@75:         if (data[offset] <= 0xBB || (data[offset + 1] & 0xC0) != 0xC0) {
renatofilho@75:           GST_LOG ("wrong marker bits");
renatofilho@75:           return 0;
renatofilho@75:         }
renatofilho@75:       }
renatofilho@75:       break;
renatofilho@75: 
renatofilho@75:     default:
renatofilho@75:       if (data[3] < 0xB9)
renatofilho@75:         return 0;
renatofilho@75:       data = gst_type_find_peek (tf, offset, 2);
renatofilho@75:       if (!data) {
renatofilho@75:         GST_LOG ("couldn't get MPEG pack header bytes");
renatofilho@75:         return 1;
renatofilho@75:       }
renatofilho@75:       size = GST_READ_UINT16_BE (data) + 6;
renatofilho@75:       /* FIXME: we could check PTS/DTS marker bits here... (bit overkill) */
renatofilho@75:       break;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   return size;
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /* calculation of possibility to identify random data as mpeg systemstream:
renatofilho@75:  * bits that must match in header detection:            32 (or more)
renatofilho@75:  * chance that random data is identifed:                1/2^32
renatofilho@75:  * chance that GST_MPEG_TYPEFIND_TRY_HEADERS headers are identified:
renatofilho@75:  *                                      1/2^(32*GST_MPEG_TYPEFIND_TRY_HEADERS)
renatofilho@75:  * chance that this happens in GST_MPEG_TYPEFIND_TRY_SYNC bytes:
renatofilho@75:  *                                      1-(1+1/2^(32*GST_MPEG_TYPEFIND_TRY_HEADERS)^GST_MPEG_TYPEFIND_TRY_SYNC)
renatofilho@75:  * for current values:
renatofilho@75:  *                                      1-(1+1/2^(32*4)^101024)
renatofilho@75:  *                                    = <some_number>
renatofilho@75:  */
renatofilho@75: #define GST_MPEG_TYPEFIND_TRY_HEADERS 4
renatofilho@75: #define GST_MPEG_TYPEFIND_TRY_SYNC (100 * 1024) /* 100kB */
renatofilho@75: #define GST_MPEG_TYPEFIND_SYNC_SIZE 2048
renatofilho@75: static void
renatofilho@75: mpeg1_sys_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = NULL;
renatofilho@75:   guint size = 0;
renatofilho@75:   guint64 skipped = 0;
renatofilho@75:   GstCaps *caps;
renatofilho@75: 
renatofilho@75:   while (skipped < GST_MPEG_TYPEFIND_TRY_SYNC) {
renatofilho@75:     if (size < 4) {
renatofilho@75:       data = gst_type_find_peek (tf, skipped, GST_MPEG_TYPEFIND_SYNC_SIZE);
renatofilho@75:       if (!data)
renatofilho@75:         break;
renatofilho@75:       size = GST_MPEG_TYPEFIND_SYNC_SIZE;
renatofilho@75:     }
renatofilho@75:     if (IS_MPEG_PACK_HEADER (data)) {
renatofilho@75:       /* found packet start code */
renatofilho@75:       guint found = 0;
renatofilho@75:       guint packet_size = 0;
renatofilho@75:       guint64 offset = skipped;
renatofilho@75: 
renatofilho@75:       while (found < GST_MPEG_TYPEFIND_TRY_HEADERS) {
renatofilho@75:         packet_size = mpeg1_parse_header (tf, offset);
renatofilho@75:         if (packet_size <= 1)
renatofilho@75:           break;
renatofilho@75:         offset += packet_size;
renatofilho@75:         found++;
renatofilho@75:       }
renatofilho@75:       g_assert (found <= GST_MPEG_TYPEFIND_TRY_HEADERS);
renatofilho@75:       if (found == GST_MPEG_TYPEFIND_TRY_HEADERS || packet_size == 1) {
renatofilho@75:         GST_LOG ("suggesting mpeg1 system steeam");
renatofilho@75:         caps = gst_caps_copy (MPEG_SYS_CAPS);
renatofilho@75:         gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
renatofilho@75:             G_TYPE_INT, 1, NULL);
renatofilho@75:         gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 1, caps);
renatofilho@75:         gst_caps_unref (caps);
renatofilho@75:         return;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     data++;
renatofilho@75:     skipped++;
renatofilho@75:     size--;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /** video/mpegts Transport Stream **/
renatofilho@75: static GstStaticCaps mpegts_caps = GST_STATIC_CAPS ("video/mpegts, "
renatofilho@75:     "systemstream = (boolean) true, packetsize = (int) [ 188, 208 ]");
renatofilho@75: #define MPEGTS_CAPS gst_static_caps_get(&mpegts_caps)
renatofilho@75: 
renatofilho@75: #define GST_MPEGTS_TYPEFIND_MIN_HEADERS 4
renatofilho@75: #define GST_MPEGTS_TYPEFIND_MAX_HEADERS 10
renatofilho@75: #define GST_MPEGTS_MAX_PACKET_SIZE 204
renatofilho@75: #define GST_MPEGTS_TYPEFIND_SYNC_SIZE \
renatofilho@75:             (GST_MPEGTS_TYPEFIND_MIN_HEADERS * GST_MPEGTS_MAX_PACKET_SIZE)
renatofilho@75: #define GST_MPEGTS_TYPEFIND_MAX_SYNC \
renatofilho@75:             (GST_MPEGTS_TYPEFIND_MAX_HEADERS * GST_MPEGTS_MAX_PACKET_SIZE)
renatofilho@75: 
renatofilho@75: #define MPEGTS_HDR_SIZE 4
renatofilho@75: #define IS_MPEGTS_HEADER(data) (((data)[0] == 0x47) && \
renatofilho@75:                                 (((data)[1] & 0x80) == 0x00) && \
renatofilho@75:                                 (((data)[3] & 0x10) == 0x10))
renatofilho@75: 
renatofilho@75: /* Helper function to search ahead at intervals of packet_size for mpegts
renatofilho@75:  * headers */
renatofilho@75: gint
renatofilho@75: mpeg_ts_probe_headers (GstTypeFind * tf, guint64 offset, gint packet_size)
renatofilho@75: {
renatofilho@75:   /* We always enter this function having found at least one header already */
renatofilho@75:   gint found = 1;
renatofilho@75:   guint8 *data = NULL;
renatofilho@75: 
renatofilho@75:   while (found < GST_MPEGTS_TYPEFIND_MAX_HEADERS) {
renatofilho@75:     offset += packet_size;
renatofilho@75: 
renatofilho@75:     data = gst_type_find_peek (tf, offset, MPEGTS_HDR_SIZE);
renatofilho@75:     if (data == NULL || !IS_MPEGTS_HEADER (data))
renatofilho@75:       return found;
renatofilho@75: 
renatofilho@75:     found++;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   return found;
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /* Try and detect at least 4 packets in at most 10 packets worth of
renatofilho@75:  * data. Need to try several possible packet sizes */
renatofilho@75: static void
renatofilho@75: mpeg_ts_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   /* TS packet sizes to test: normal, DVHS packet size and 
renatofilho@75:    * FEC with 16 or 20 byte codes packet size. */
renatofilho@75:   const gint pack_sizes[] = { 188, 192, 204, 208 };
renatofilho@75:   const gint n_pack_sizes = sizeof (pack_sizes) / sizeof (gint);
renatofilho@75: 
renatofilho@75:   guint8 *data = NULL;
renatofilho@75:   guint size = 0;
renatofilho@75:   guint64 skipped = 0;
renatofilho@75: 
renatofilho@75:   while (skipped < GST_MPEGTS_TYPEFIND_MAX_SYNC) {
renatofilho@75:     if (size < MPEGTS_HDR_SIZE) {
renatofilho@75:       data = gst_type_find_peek (tf, skipped, GST_MPEGTS_TYPEFIND_SYNC_SIZE);
renatofilho@75:       if (!data)
renatofilho@75:         break;
renatofilho@75:       size = GST_MPEGTS_TYPEFIND_SYNC_SIZE;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     /* Have at least MPEGTS_HDR_SIZE bytes at this point */
renatofilho@75:     if (IS_MPEGTS_HEADER (data)) {
renatofilho@75:       gint p;
renatofilho@75: 
renatofilho@75:       for (p = 0; p < n_pack_sizes; p++) {
renatofilho@75:         gint found;
renatofilho@75: 
renatofilho@75:         /* Probe ahead at size pack_sizes[p] */
renatofilho@75:         found = mpeg_ts_probe_headers (tf, skipped, pack_sizes[p]);
renatofilho@75:         if (found >= GST_MPEGTS_TYPEFIND_MIN_HEADERS) {
renatofilho@75:           gint probability;
renatofilho@75:           GstCaps *caps = gst_caps_copy (MPEGTS_CAPS);
renatofilho@75: 
renatofilho@75:           gst_structure_set (gst_caps_get_structure (caps, 0), "packetsize",
renatofilho@75:               G_TYPE_INT, pack_sizes[p], NULL);
renatofilho@75: 
renatofilho@75:           /* found at least 4 headers. 10 headers = MAXIMUM probability. 
renatofilho@75:            * Arbitrarily, I assigned 10% probability for each header we
renatofilho@75:            * found, 40% -> 100% */
renatofilho@75: 
renatofilho@75:           probability = 10 * MIN (found, 10);
renatofilho@75: 
renatofilho@75:           gst_type_find_suggest (tf, probability, caps);
renatofilho@75:           gst_caps_unref (caps);
renatofilho@75:           return;
renatofilho@75:         }
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     data++;
renatofilho@75:     skipped++;
renatofilho@75:     size--;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/mpeg MPEG-4 elementary video stream ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps mpeg4_video_caps = GST_STATIC_CAPS ("video/mpeg, "
renatofilho@75:     "systemstream = (boolean) false, mpegversion = 4");
renatofilho@75: #define MPEG4_VIDEO_CAPS gst_static_caps_get(&mpeg4_video_caps)
renatofilho@75: static void
renatofilho@75: mpeg4_video_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   /* Header consists of: a series of start codes (00 00 01 xx), some with 
renatofilho@75:    * associated data.
renatofilho@75:    * Optionally, we start with a visual_object_sequence_start_code, followed by
renatofilho@75:    * (optionally) visual_object_start_code), then the mandatory 
renatofilho@75:    * video_object_start_code and video_object_layer_start_code)
renatofilho@75:    */
renatofilho@75:   guint8 *data = NULL;
renatofilho@75:   int offset = 0;
renatofilho@75:   gboolean seen_vos = FALSE;
renatofilho@75: 
renatofilho@75:   while (TRUE) {
renatofilho@75:     data = gst_type_find_peek (tf, offset, 4);
renatofilho@75:     if (data && data[0] == 0 && data[1] == 0 && data[2] == 1) {
renatofilho@75:       int sc = data[3];
renatofilho@75: 
renatofilho@75:       if (sc == 0xB0)           /* visual_object_sequence_start_code */
renatofilho@75:         offset += 5;
renatofilho@75:       else if (sc == 0xB5)      /* visual_object_start_code */
renatofilho@75:         offset += 5;
renatofilho@75:       else if (sc >= 0x00 && sc <= 0x1F) {      /* video_object_start_code */
renatofilho@75:         offset += 4;
renatofilho@75:         seen_vos = TRUE;
renatofilho@75:       } else if (sc >= 0x20 && sc <= 0x2F) {    /* video_object_layer_start_code */
renatofilho@75:         if (seen_vos) {
renatofilho@75:           GstCaps *caps = gst_caps_copy (MPEG4_VIDEO_CAPS);
renatofilho@75: 
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 1, caps);
renatofilho@75:           gst_caps_unref (caps);
renatofilho@75:           return;
renatofilho@75:         }
renatofilho@75:       } else
renatofilho@75:         return;
renatofilho@75:     } else
renatofilho@75:       return;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/mpeg video stream ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps mpeg_video_caps = GST_STATIC_CAPS ("video/mpeg, "
renatofilho@75:     "systemstream = (boolean) false");
renatofilho@75: #define MPEG_VIDEO_CAPS gst_static_caps_get(&mpeg_video_caps)
renatofilho@75: static void
renatofilho@75: mpeg_video_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   static const guint8 sequence_header[] = { 0x00, 0x00, 0x01, 0xb3 };
renatofilho@75:   guint8 *data = NULL;
renatofilho@75: 
renatofilho@75:   data = gst_type_find_peek (tf, 0, 8);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, sequence_header, 4) == 0) {
renatofilho@75:     GstCaps *caps = gst_caps_copy (MPEG_VIDEO_CAPS);
renatofilho@75: 
renatofilho@75:     gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
renatofilho@75:         G_TYPE_INT, 1, NULL);
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 1, caps);
renatofilho@75:     gst_caps_unref (caps);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*
renatofilho@75:  * Idea is the same as MPEG system stream typefinding: We check each
renatofilho@75:  * byte of the stream to see if - from that point on - the stream
renatofilho@75:  * matches a predefined set of marker bits as defined in the MPEG
renatofilho@75:  * video specs.
renatofilho@75:  *
renatofilho@75:  * I'm sure someone will do a chance calculation here too.
renatofilho@75:  */
renatofilho@75: 
renatofilho@75: #define GST_MPEGVID_TYPEFIND_TRY_PICTURES 6
renatofilho@75: #define GST_MPEGVID_TYPEFIND_TRY_SYNC (100 * 1024)      /* 100 kB */
renatofilho@75: #define GST_MPEGVID_TYPEFIND_SYNC_SIZE 2048
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: mpeg_video_stream_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   gint size = 0, found = 0;
renatofilho@75:   guint64 skipped = 0;
renatofilho@75:   guint8 *data = NULL;
renatofilho@75: 
renatofilho@75:   while (1) {
renatofilho@75:     if (found >= GST_MPEGVID_TYPEFIND_TRY_PICTURES) {
renatofilho@75:       GstCaps *caps = gst_caps_copy (MPEG_VIDEO_CAPS);
renatofilho@75: 
renatofilho@75:       gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
renatofilho@75:           G_TYPE_INT, 1, NULL);
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 2, caps);
renatofilho@75:       gst_caps_unref (caps);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     if (skipped > GST_MPEGVID_TYPEFIND_TRY_SYNC)
renatofilho@75:       break;
renatofilho@75: 
renatofilho@75:     if (size < 5) {
renatofilho@75:       data = gst_type_find_peek (tf, skipped, GST_MPEGVID_TYPEFIND_SYNC_SIZE);
renatofilho@75:       if (!data)
renatofilho@75:         break;
renatofilho@75:       size = GST_MPEGVID_TYPEFIND_SYNC_SIZE;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     /* are we a sequence (0xB3) or GOP (0xB8) header? */
renatofilho@75:     if (data[0] == 0x0 && data[1] == 0x0 && data[2] == 0x1 &&
renatofilho@75:         (data[3] == 0xB3 || data[3] == 0xB8)) {
renatofilho@75:       size -= 8;
renatofilho@75:       data += 8;
renatofilho@75:       skipped += 8;
renatofilho@75:       if (data[3] == 0xB3)
renatofilho@75:         continue;
renatofilho@75:       else if (size < 4) {
renatofilho@75:         data = gst_type_find_peek (tf, skipped, GST_MPEGVID_TYPEFIND_SYNC_SIZE);
renatofilho@75:         size = GST_MPEGVID_TYPEFIND_SYNC_SIZE;
renatofilho@75:         if (!data)
renatofilho@75:           break;
renatofilho@75:       }
renatofilho@75:       /* else, we should now see an image */
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     /* image header (and, when found, slice header) */
renatofilho@75:     if (data[0] == 0x0 && data[1] == 0x0 && data[2] == 0x1 && data[4] == 0x0) {
renatofilho@75:       size -= 8;
renatofilho@75:       data += 8;
renatofilho@75:       skipped += 8;
renatofilho@75:       if (size < 5) {
renatofilho@75:         data = gst_type_find_peek (tf, skipped, GST_MPEGVID_TYPEFIND_SYNC_SIZE);
renatofilho@75:         size = GST_MPEGVID_TYPEFIND_SYNC_SIZE;
renatofilho@75:         if (!data)
renatofilho@75:           break;
renatofilho@75:       }
renatofilho@75:       if ((data[0] == 0x0 && data[1] == 0x0 &&
renatofilho@75:               data[2] == 0x1 && data[3] == 0x1) ||
renatofilho@75:           (data[1] == 0x0 && data[2] == 0x0 &&
renatofilho@75:               data[3] == 0x1 && data[4] == 0x1)) {
renatofilho@75:         size -= 4;
renatofilho@75:         data += 4;
renatofilho@75:         skipped += 4;
renatofilho@75:         found += 1;
renatofilho@75:         continue;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     size--;
renatofilho@75:     data++;
renatofilho@75:     skipped++;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-aiff ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps aiff_caps = GST_STATIC_CAPS ("audio/x-aiff");
renatofilho@75: 
renatofilho@75: #define AIFF_CAPS gst_static_caps_get(&aiff_caps)
renatofilho@75: static void
renatofilho@75: aiff_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "FORM", 4) == 0) {
renatofilho@75:     data += 8;
renatofilho@75:     if (memcmp (data, "AIFF", 4) == 0 || memcmp (data, "AIFC", 4) == 0)
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, AIFF_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-aiff ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps svx_caps = GST_STATIC_CAPS ("audio/x-svx");
renatofilho@75: 
renatofilho@75: #define SVX_CAPS gst_static_caps_get(&svx_caps)
renatofilho@75: static void
renatofilho@75: svx_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "FORM", 4) == 0) {
renatofilho@75:     data += 8;
renatofilho@75:     if (memcmp (data, "8SVX", 4) == 0 || memcmp (data, "16SV", 4) == 0)
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SVX_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-shorten ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps shn_caps = GST_STATIC_CAPS ("audio/x-shorten");
renatofilho@75: 
renatofilho@75: #define SHN_CAPS gst_static_caps_get(&shn_caps)
renatofilho@75: static void
renatofilho@75: shn_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "ajkg", 4) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SHN_CAPS);
renatofilho@75:   }
renatofilho@75:   data = gst_type_find_peek (tf, -8, 8);
renatofilho@75:   if (data && memcmp (data, "SHNAMPSK", 8) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SHN_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-ape ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps ape_caps = GST_STATIC_CAPS ("application/x-ape");
renatofilho@75: 
renatofilho@75: #define APE_CAPS gst_static_caps_get(&ape_caps)
renatofilho@75: static void
renatofilho@75: ape_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "MAC ", 4) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY + 10, APE_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** ISO FORMATS ***/
renatofilho@75: 
renatofilho@75: /*** audio/x-m4a ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps m4a_caps = GST_STATIC_CAPS ("audio/x-m4a");
renatofilho@75: 
renatofilho@75: #define M4A_CAPS (gst_static_caps_get(&m4a_caps))
renatofilho@75: static void
renatofilho@75: m4a_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 4, 8);
renatofilho@75: 
renatofilho@75:   if (data &&
renatofilho@75:       (memcmp (data, "ftypM4A ", 8) == 0 ||
renatofilho@75:           memcmp (data, "ftypmp42", 8) == 0)) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, M4A_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-3gp ***/
renatofilho@75: 
renatofilho@75: /* The Q is there because variables can't start with a number. */
renatofilho@75: 
renatofilho@75: 
renatofilho@75: static GstStaticCaps q3gp_caps = GST_STATIC_CAPS ("application/x-3gp");
renatofilho@75: 
renatofilho@75: #define Q3GP_CAPS (gst_static_caps_get(&q3gp_caps))
renatofilho@75: static void
renatofilho@75: q3gp_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75: 
renatofilho@75:   guint32 ftyp_size = 0;
renatofilho@75:   gint offset = 0;
renatofilho@75:   guint8 *data = NULL;
renatofilho@75: 
renatofilho@75:   if ((data = gst_type_find_peek (tf, 0, 12)) == NULL) {
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   data += 4;
renatofilho@75:   if (memcmp (data, "ftyp", 4) != 0) {
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* check major brand */
renatofilho@75:   data += 4;
renatofilho@75:   if (memcmp (data, "3gp", 3) == 0 ||
renatofilho@75:       memcmp (data, "3gr", 3) == 0 ||
renatofilho@75:       memcmp (data, "3gs", 3) == 0 || memcmp (data, "3gg", 3) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, Q3GP_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   /* check compatible brands */
renatofilho@75:   if ((data = gst_type_find_peek (tf, 0, 4)) != NULL) {
renatofilho@75:     ftyp_size = GST_READ_UINT32_BE (data);
renatofilho@75:   }
renatofilho@75:   for (offset = 16; offset < ftyp_size; offset += 4) {
renatofilho@75:     if ((data = gst_type_find_peek (tf, offset, 3)) == NULL) {
renatofilho@75:       break;
renatofilho@75:     }
renatofilho@75:     if (memcmp (data, "3gp", 3) == 0 ||
renatofilho@75:         memcmp (data, "3gr", 3) == 0 ||
renatofilho@75:         memcmp (data, "3gs", 3) == 0 || memcmp (data, "3gg", 3) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, Q3GP_CAPS);
renatofilho@75:       break;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   return;
renatofilho@75: 
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/quicktime ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps qt_caps = GST_STATIC_CAPS ("video/quicktime");
renatofilho@75: 
renatofilho@75: #define QT_CAPS gst_static_caps_get(&qt_caps)
renatofilho@75: #define STRNCMP(x,y,z) (strncmp ((char*)(x), (char*)(y), z))
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: qt_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data;
renatofilho@75:   guint tip = 0;
renatofilho@75:   guint64 offset = 0;
renatofilho@75:   guint64 size;
renatofilho@75: 
renatofilho@75:   while ((data = gst_type_find_peek (tf, offset, 8)) != NULL) {
renatofilho@75:     /* box/atom types that are in common with ISO base media file format */
renatofilho@75:     if (STRNCMP (&data[4], "moov", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "mdat", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "ftyp", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "free", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "uuid", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "skip", 4) == 0) {
renatofilho@75:       if (tip == 0) {
renatofilho@75:         tip = GST_TYPE_FIND_LIKELY;
renatofilho@75:       } else {
renatofilho@75:         tip = GST_TYPE_FIND_NEARLY_CERTAIN;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     /* other box/atom types, apparently quicktime specific */
renatofilho@75:     else if (STRNCMP (&data[4], "pnot", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "PICT", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "wide", 4) == 0 ||
renatofilho@75:         STRNCMP (&data[4], "prfl", 4) == 0) {
renatofilho@75:       tip = GST_TYPE_FIND_MAXIMUM;
renatofilho@75:       break;
renatofilho@75:     } else {
renatofilho@75:       tip = 0;
renatofilho@75:       break;
renatofilho@75:     }
renatofilho@75:     size = GST_READ_UINT32_BE (data);
renatofilho@75:     if (size == 1) {
renatofilho@75:       guint8 *sizedata;
renatofilho@75: 
renatofilho@75:       sizedata = gst_type_find_peek (tf, offset + 8, 8);
renatofilho@75:       if (sizedata == NULL)
renatofilho@75:         break;
renatofilho@75: 
renatofilho@75:       size = GST_READ_UINT64_BE (sizedata);
renatofilho@75:     } else {
renatofilho@75:       if (size < 8)
renatofilho@75:         break;
renatofilho@75:     }
renatofilho@75:     offset += size;
renatofilho@75:   }
renatofilho@75:   if (tip > 0) {
renatofilho@75:     gst_type_find_suggest (tf, tip, QT_CAPS);
renatofilho@75:   }
renatofilho@75: };
renatofilho@75: 
renatofilho@75: 
renatofilho@75: /*** image/x-quicktime ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps qtif_caps = GST_STATIC_CAPS ("image/x-quicktime");
renatofilho@75: 
renatofilho@75: #define QTIF_CAPS gst_static_caps_get(&qtif_caps)
renatofilho@75: 
renatofilho@75: /* how many atoms we check before we give up */
renatofilho@75: #define QTIF_MAXROUNDS 25
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: qtif_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   const guint8 *data;
renatofilho@75:   gboolean found_idsc = FALSE;
renatofilho@75:   gboolean found_idat = FALSE;
renatofilho@75:   guint64 offset = 0;
renatofilho@75:   guint rounds = 0;
renatofilho@75: 
renatofilho@75:   while ((data = gst_type_find_peek (tf, offset, 8)) != NULL) {
renatofilho@75:     guint64 size;
renatofilho@75: 
renatofilho@75:     size = GST_READ_UINT32_BE (data);
renatofilho@75:     if (size == 1) {
renatofilho@75:       const guint8 *sizedata;
renatofilho@75: 
renatofilho@75:       sizedata = gst_type_find_peek (tf, offset + 8, 8);
renatofilho@75:       if (sizedata == NULL)
renatofilho@75:         break;
renatofilho@75: 
renatofilho@75:       size = GST_READ_UINT64_BE (sizedata);
renatofilho@75:     }
renatofilho@75:     if (size < 8)
renatofilho@75:       break;
renatofilho@75: 
renatofilho@75:     if (STRNCMP (data + 4, "idsc", 4) == 0)
renatofilho@75:       found_idsc = TRUE;
renatofilho@75:     if (STRNCMP (data + 4, "idat", 4) == 0)
renatofilho@75:       found_idat = TRUE;
renatofilho@75: 
renatofilho@75:     if (found_idsc && found_idat) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, QTIF_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     offset += size;
renatofilho@75:     if (++rounds > QTIF_MAXROUNDS)
renatofilho@75:       break;
renatofilho@75:   }
renatofilho@75: 
renatofilho@75:   if (found_idsc || found_idat) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, QTIF_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: };
renatofilho@75: 
renatofilho@75: /*** audio/x-mod ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps mod_caps = GST_STATIC_CAPS ("audio/x-mod");
renatofilho@75: 
renatofilho@75: #define MOD_CAPS gst_static_caps_get(&mod_caps)
renatofilho@75: /* FIXME: M15 CheckType to do */
renatofilho@75: static void
renatofilho@75: mod_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   /* MOD */
renatofilho@75:   if ((data = gst_type_find_peek (tf, 1080, 4)) != NULL) {
renatofilho@75:     /* Protracker and variants */
renatofilho@75:     if ((memcmp (data, "M.K.", 4) == 0) || (memcmp (data, "M!K!", 4) == 0) ||
renatofilho@75:         /* Star Tracker */
renatofilho@75:         (memcmp (data, "FLT", 3) == 0 && isdigit (data[3])) ||
renatofilho@75:         (memcmp (data, "EXO", 3) == 0 && isdigit (data[3])) ||
renatofilho@75:         /* Oktalyzer (Amiga) */
renatofilho@75:         (memcmp (data, "OKTA", 4) == 0) ||
renatofilho@75:         /* Oktalyser (Atari) */
renatofilho@75:         (memcmp (data, "CD81", 4) == 0) ||
renatofilho@75:         /* Fasttracker */
renatofilho@75:         (memcmp (data + 1, "CHN", 3) == 0 && isdigit (data[0])) ||
renatofilho@75:         /* Fasttracker or Taketracker */
renatofilho@75:         (memcmp (data + 2, "CH", 2) == 0 && isdigit (data[0])
renatofilho@75:             && isdigit (data[1])) || (memcmp (data + 2, "CN", 2) == 0
renatofilho@75:             && isdigit (data[0]) && isdigit (data[1]))) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75:   /* XM */
renatofilho@75:   if ((data = gst_type_find_peek (tf, 0, 38)) != NULL) {
renatofilho@75:     if (memcmp (data, "Extended Module: ", 17) == 0 && data[37] == 0x1A) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75:   /* OKT */
renatofilho@75:   if (data || (data = gst_type_find_peek (tf, 0, 8)) != NULL) {
renatofilho@75:     if (memcmp (data, "OKTASONG", 8) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75:   if (data || (data = gst_type_find_peek (tf, 0, 4)) != NULL) {
renatofilho@75:     /* 669 */
renatofilho@75:     if ((memcmp (data, "if", 2) == 0) || (memcmp (data, "JN", 2) == 0)) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:     /* AMF */
renatofilho@75:     if ((memcmp (data, "AMF", 3) == 0 && data[3] > 10 && data[3] < 14) ||
renatofilho@75:         /* IT */
renatofilho@75:         (memcmp (data, "IMPM", 4) == 0) ||
renatofilho@75:         /* MED */
renatofilho@75:         (memcmp (data, "MMD0", 4) == 0) || (memcmp (data, "MMD1", 4) == 0) ||
renatofilho@75:         /* MTM */
renatofilho@75:         (memcmp (data, "MTM", 3) == 0)) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:     /* DSM */
renatofilho@75:     if (memcmp (data, "RIFF", 4) == 0) {
renatofilho@75:       guint8 *data2 = gst_type_find_peek (tf, 8, 4);
renatofilho@75: 
renatofilho@75:       if (data2) {
renatofilho@75:         if (memcmp (data2, "DSMF", 4) == 0) {
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:           return;
renatofilho@75:         }
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     /* FAM */
renatofilho@75:     if (memcmp (data, "FAM\xFE", 4) == 0) {
renatofilho@75:       guint8 *data2 = gst_type_find_peek (tf, 44, 3);
renatofilho@75: 
renatofilho@75:       if (data2) {
renatofilho@75:         if (memcmp (data2, "compare", 3) == 0) {
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:           return;
renatofilho@75:         }
renatofilho@75:       } else {
renatofilho@75:         gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, MOD_CAPS);
renatofilho@75:         return;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     /* GDM */
renatofilho@75:     if (memcmp (data, "GDM\xFE", 4) == 0) {
renatofilho@75:       guint8 *data2 = gst_type_find_peek (tf, 71, 4);
renatofilho@75: 
renatofilho@75:       if (data2) {
renatofilho@75:         if (memcmp (data2, "GMFS", 4) == 0) {
renatofilho@75:           gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:           return;
renatofilho@75:         }
renatofilho@75:       } else {
renatofilho@75:         gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, MOD_CAPS);
renatofilho@75:         return;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75:   /* IMF */
renatofilho@75:   if ((data = gst_type_find_peek (tf, 60, 4)) != NULL) {
renatofilho@75:     if (memcmp (data, "IM10", 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75:   /* S3M */
renatofilho@75:   if ((data = gst_type_find_peek (tf, 44, 4)) != NULL) {
renatofilho@75:     if (memcmp (data, "SCRM", 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
renatofilho@75:       return;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-shockwave-flash ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps swf_caps =
renatofilho@75: GST_STATIC_CAPS ("application/x-shockwave-flash");
renatofilho@75: #define SWF_CAPS (gst_static_caps_get(&swf_caps))
renatofilho@75: static void
renatofilho@75: swf_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data && (data[0] == 'F' || data[0] == 'C') &&
renatofilho@75:       data[1] == 'W' && data[2] == 'S') {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SWF_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** image/jpeg ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps jpeg_caps = GST_STATIC_CAPS ("image/jpeg");
renatofilho@75: 
renatofilho@75: #define JPEG_CAPS (gst_static_caps_get(&jpeg_caps))
renatofilho@75: static void
renatofilho@75: jpeg_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 10);
renatofilho@75:   guint8 header[2] = { 0xFF, 0xD8 };
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, header, 2) == 0) {
renatofilho@75:     if (memcmp (data + 6, "JFIF", 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, JPEG_CAPS);
renatofilho@75:     } else if (memcmp (data + 6, "Exif", 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, JPEG_CAPS);
renatofilho@75:     } else {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, JPEG_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** image/bmp ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps bmp_caps = GST_STATIC_CAPS ("image/bmp");
renatofilho@75: 
renatofilho@75: #define BMP_CAPS (gst_static_caps_get(&bmp_caps))
renatofilho@75: static void
renatofilho@75: bmp_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 18);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "BM", 2) == 0) {
renatofilho@75:     if ((data[14] == 0x0C ||
renatofilho@75:             data[14] == 0x28 ||
renatofilho@75:             data[14] == 0xF0) &&
renatofilho@75:         data[15] == 0 && data[16] == 0 && data[17] == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, BMP_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** image/tiff ***/
renatofilho@75: static GstStaticCaps tiff_caps = GST_STATIC_CAPS ("image/tiff, "
renatofilho@75:     "endianness = (int) { BIG_ENDIAN, LITTLE_ENDIAN }");
renatofilho@75: #define TIFF_CAPS (gst_static_caps_get(&tiff_caps))
renatofilho@75: static GstStaticCaps tiff_be_caps = GST_STATIC_CAPS ("image/tiff, "
renatofilho@75:     "endianness = (int) BIG_ENDIAN");
renatofilho@75: #define TIFF_BE_CAPS (gst_static_caps_get(&tiff_be_caps))
renatofilho@75: static GstStaticCaps tiff_le_caps = GST_STATIC_CAPS ("image/tiff, "
renatofilho@75:     "endianness = (int) LITTLE_ENDIAN");
renatofilho@75: #define TIFF_LE_CAPS (gst_static_caps_get(&tiff_le_caps))
renatofilho@75: static void
renatofilho@75: tiff_type_find (GstTypeFind * tf, gpointer ununsed)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 8);
renatofilho@75:   guint8 le_header[4] = { 0x49, 0x49, 0x2A, 0x00 };
renatofilho@75:   guint8 be_header[4] = { 0x4D, 0x4D, 0x00, 0x2A };
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, le_header, 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, TIFF_LE_CAPS);
renatofilho@75:     } else if (memcmp (data, be_header, 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, TIFF_BE_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static GstStaticCaps sds_caps = GST_STATIC_CAPS ("audio/x-sds");
renatofilho@75: 
renatofilho@75: #define SDS_CAPS (gst_static_caps_get(&sds_caps))
renatofilho@75: static void
renatofilho@75: sds_type_find (GstTypeFind * tf, gpointer ununsed)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75:   guint8 mask[4] = { 0xFF, 0xFF, 0x80, 0xFF };
renatofilho@75:   guint8 match[4] = { 0xF0, 0x7E, 0, 0x01 };
renatofilho@75:   gint x;
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     for (x = 0; x < 4; x++) {
renatofilho@75:       if ((data[x] & mask[x]) != match[x]) {
renatofilho@75:         return;
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SDS_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static GstStaticCaps ircam_caps = GST_STATIC_CAPS ("audio/x-ircam");
renatofilho@75: 
renatofilho@75: #define IRCAM_CAPS (gst_static_caps_get(&ircam_caps))
renatofilho@75: static void
renatofilho@75: ircam_type_find (GstTypeFind * tf, gpointer ununsed)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75:   guint8 mask[4] = { 0xFF, 0xFF, 0xF8, 0xFF };
renatofilho@75:   guint8 match[4] = { 0x64, 0xA3, 0x00, 0x00 };
renatofilho@75:   gint x;
renatofilho@75:   gboolean matched = TRUE;
renatofilho@75: 
renatofilho@75:   if (!data) {
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75:   for (x = 0; x < 4; x++) {
renatofilho@75:     if ((data[x] & mask[x]) != match[x]) {
renatofilho@75:       matched = FALSE;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75:   if (matched) {
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, IRCAM_CAPS);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75:   /* now try the reverse version */
renatofilho@75:   matched = TRUE;
renatofilho@75:   for (x = 0; x < 4; x++) {
renatofilho@75:     if ((data[x] & mask[3 - x]) != match[3 - x]) {
renatofilho@75:       matched = FALSE;
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: 
renatofilho@75: /*** video/x-matroska ***/
renatofilho@75: static GstStaticCaps matroska_caps = GST_STATIC_CAPS ("video/x-matroska");
renatofilho@75: 
renatofilho@75: #define MATROSKA_CAPS (gst_static_caps_get(&matroska_caps))
renatofilho@75: static void
renatofilho@75: matroska_type_find (GstTypeFind * tf, gpointer ununsed)
renatofilho@75: {
renatofilho@75:   /* 4 bytes for EBML ID, 1 byte for header length identifier */
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4 + 1);
renatofilho@75:   gint len_mask = 0x80, size = 1, n = 1, total;
renatofilho@75:   guint8 probe_data[] = { 'm', 'a', 't', 'r', 'o', 's', 'k', 'a' };
renatofilho@75: 
renatofilho@75:   if (!data)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   /* ebml header? */
renatofilho@75:   if (data[0] != 0x1A || data[1] != 0x45 || data[2] != 0xDF || data[3] != 0xA3)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   /* length of header */
renatofilho@75:   total = data[4];
renatofilho@75:   while (size <= 8 && !(total & len_mask)) {
renatofilho@75:     size++;
renatofilho@75:     len_mask >>= 1;
renatofilho@75:   }
renatofilho@75:   if (size > 8)
renatofilho@75:     return;
renatofilho@75:   total &= (len_mask - 1);
renatofilho@75:   while (n < size)
renatofilho@75:     total = (total << 8) | data[4 + n++];
renatofilho@75: 
renatofilho@75:   /* get new data for full header, 4 bytes for EBML ID,
renatofilho@75:    * EBML length tag and the actual header */
renatofilho@75:   data = gst_type_find_peek (tf, 0, 4 + size + total);
renatofilho@75:   if (!data)
renatofilho@75:     return;
renatofilho@75: 
renatofilho@75:   /* the header must contain the document type 'matroska'. For now,
renatofilho@75:    * we don't parse the whole header but simply check for the
renatofilho@75:    * availability of that array of characters inside the header.
renatofilho@75:    * Not fully fool-proof, but good enough. */
renatofilho@75:   for (n = 4 + size; n <= 4 + size + total - sizeof (probe_data); n++)
renatofilho@75:     if (!memcmp (&data[n], probe_data, sizeof (probe_data))) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MATROSKA_CAPS);
renatofilho@75:       break;
renatofilho@75:     }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/x-dv ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps dv_caps = GST_STATIC_CAPS ("video/x-dv, "
renatofilho@75:     "systemstream = (boolean) true");
renatofilho@75: #define DV_CAPS (gst_static_caps_get(&dv_caps))
renatofilho@75: static void
renatofilho@75: dv_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   data = gst_type_find_peek (tf, 0, 5);
renatofilho@75: 
renatofilho@75:   /* check for DIF  and DV flag */
renatofilho@75:   if (data && (data[0] == 0x1f) && (data[1] == 0x07) && (data[2] == 0x00) &&
renatofilho@75:       ((data[4] & 0x01) == 0)) {
renatofilho@75:     gchar *format;
renatofilho@75:     GstCaps *caps = gst_caps_copy (DV_CAPS);
renatofilho@75: 
renatofilho@75:     if (data[3] & 0x80) {
renatofilho@75:       format = "PAL";
renatofilho@75:     } else {
renatofilho@75:       format = "NTSC";
renatofilho@75:     }
renatofilho@75:     gst_structure_set (gst_caps_get_structure (caps, 0), "format",
renatofilho@75:         G_TYPE_STRING, format, NULL);
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, caps);
renatofilho@75:     gst_caps_unref (caps);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: 
renatofilho@75: /*** application/ogg and application/x-annodex ***/
renatofilho@75: static GstStaticCaps ogg_caps = GST_STATIC_CAPS ("application/ogg");
renatofilho@75: static GstStaticCaps annodex_caps = GST_STATIC_CAPS ("application/x-annodex");
renatofilho@75: 
renatofilho@75: #define OGGANX_CAPS (gst_static_caps_get(&annodex_caps))
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: ogganx_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if ((data != NULL) && (memcmp (data, "OggS", 4) == 0)) {
renatofilho@75: 
renatofilho@75:     /* Check for an annodex fishbone header */
renatofilho@75:     data = gst_type_find_peek (tf, 28, 8);
renatofilho@75:     if (data && memcmp (data, "fishead\0", 8) == 0)
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGGANX_CAPS);
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM,
renatofilho@75:         gst_static_caps_get (&ogg_caps));
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-vorbis ***/
renatofilho@75: static GstStaticCaps vorbis_caps = GST_STATIC_CAPS ("audio/x-vorbis");
renatofilho@75: 
renatofilho@75: #define VORBIS_CAPS (gst_static_caps_get(&vorbis_caps))
renatofilho@75: static void
renatofilho@75: vorbis_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 30);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     guint blocksize_0;
renatofilho@75:     guint blocksize_1;
renatofilho@75: 
renatofilho@75:     /* 1 byte packet type (identification=0x01)
renatofilho@75:        6 byte string "vorbis"
renatofilho@75:        4 byte vorbis version */
renatofilho@75:     if (memcmp (data, "\001vorbis\000\000\000\000", 11) != 0)
renatofilho@75:       return;
renatofilho@75:     data += 11;
renatofilho@75:     /* 1 byte channels must be != 0 */
renatofilho@75:     if (data[0] == 0)
renatofilho@75:       return;
renatofilho@75:     data++;
renatofilho@75:     /* 4 byte samplerate must be != 0 */
renatofilho@75:     if (*((guint32 *) data) == 0)
renatofilho@75:       return;
renatofilho@75:     data += 16;
renatofilho@75:     /* blocksize checks */
renatofilho@75:     blocksize_0 = data[0] & 0x0F;
renatofilho@75:     blocksize_1 = (data[0] & 0xF0) >> 4;
renatofilho@75:     if (blocksize_0 > blocksize_1)
renatofilho@75:       return;
renatofilho@75:     if (blocksize_0 < 6 || blocksize_0 > 13)
renatofilho@75:       return;
renatofilho@75:     if (blocksize_1 < 6 || blocksize_1 > 13)
renatofilho@75:       return;
renatofilho@75:     data++;
renatofilho@75:     /* framing bit */
renatofilho@75:     if ((data[0] & 0x01) != 1)
renatofilho@75:       return;
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, VORBIS_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** video/x-theora ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps theora_caps = GST_STATIC_CAPS ("video/x-theora");
renatofilho@75: 
renatofilho@75: #define THEORA_CAPS (gst_static_caps_get(&theora_caps))
renatofilho@75: static void
renatofilho@75: theora_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 7); //42);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (data[0] != 0x80)
renatofilho@75:       return;
renatofilho@75:     if (memcmp (&data[1], "theora", 6) != 0)
renatofilho@75:       return;
renatofilho@75:     /* FIXME: make this more reliable when specs are out */
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, THEORA_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-ogm-video or audio***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps ogmvideo_caps =
renatofilho@75: GST_STATIC_CAPS ("application/x-ogm-video");
renatofilho@75: #define OGMVIDEO_CAPS (gst_static_caps_get(&ogmvideo_caps))
renatofilho@75: static void
renatofilho@75: ogmvideo_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 9);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, "\001video\000\000\000", 9) != 0)
renatofilho@75:       return;
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGMVIDEO_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static GstStaticCaps ogmaudio_caps =
renatofilho@75: GST_STATIC_CAPS ("application/x-ogm-audio");
renatofilho@75: #define OGMAUDIO_CAPS (gst_static_caps_get(&ogmaudio_caps))
renatofilho@75: static void
renatofilho@75: ogmaudio_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 9);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, "\001audio\000\000\000", 9) != 0)
renatofilho@75:       return;
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGMAUDIO_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static GstStaticCaps ogmtext_caps = GST_STATIC_CAPS ("application/x-ogm-text");
renatofilho@75: 
renatofilho@75: #define OGMTEXT_CAPS (gst_static_caps_get(&ogmtext_caps))
renatofilho@75: static void
renatofilho@75: ogmtext_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 9);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, "\001text\000\000\000\000", 9) != 0)
renatofilho@75:       return;
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGMTEXT_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-speex ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps speex_caps = GST_STATIC_CAPS ("audio/x-speex");
renatofilho@75: 
renatofilho@75: #define SPEEX_CAPS (gst_static_caps_get(&speex_caps))
renatofilho@75: static void
renatofilho@75: speex_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 80);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     /* 8 byte string "Speex   "
renatofilho@75:        24 byte speex version string + int */
renatofilho@75:     if (memcmp (data, "Speex   ", 8) != 0)
renatofilho@75:       return;
renatofilho@75:     data += 32;
renatofilho@75: 
renatofilho@75:     /* 4 byte header size >= 80 */
renatofilho@75:     if (GST_READ_UINT32_LE (data) < 80)
renatofilho@75:       return;
renatofilho@75:     data += 4;
renatofilho@75: 
renatofilho@75:     /* 4 byte sample rate <= 48000 */
renatofilho@75:     if (GST_READ_UINT32_LE (data) > 48000)
renatofilho@75:       return;
renatofilho@75:     data += 4;
renatofilho@75: 
renatofilho@75:     /* currently there are only 3 speex modes. */
renatofilho@75:     if (GST_READ_UINT32_LE (data) > 3)
renatofilho@75:       return;
renatofilho@75:     data += 12;
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SPEEX_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-ogg-skeleton ***/
renatofilho@75: static GstStaticCaps ogg_skeleton_caps =
renatofilho@75: GST_STATIC_CAPS ("application/x-ogg-skeleton, parsed=(boolean)FALSE");
renatofilho@75: #define OGG_SKELETON_CAPS (gst_static_caps_get(&ogg_skeleton_caps))
renatofilho@75: static void
renatofilho@75: oggskel_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 12);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     /* 8 byte string "fishead\0" for the ogg skeleton stream */
renatofilho@75:     if (memcmp (data, "fishead\0", 8) != 0)
renatofilho@75:       return;
renatofilho@75:     data += 8;
renatofilho@75: 
renatofilho@75:     /* Require that the header contains version 3.0 */
renatofilho@75:     if (GST_READ_UINT16_LE (data) != 3)
renatofilho@75:       return;
renatofilho@75:     data += 2;
renatofilho@75:     if (GST_READ_UINT16_LE (data) != 0)
renatofilho@75:       return;
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGG_SKELETON_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static GstStaticCaps cmml_caps = GST_STATIC_CAPS ("text/x-cmml");
renatofilho@75: 
renatofilho@75: #define CMML_CAPS (gst_static_caps_get(&cmml_caps))
renatofilho@75: static void
renatofilho@75: cmml_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   /* Header is 12 bytes minimum (though we don't check the minor version */
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 12);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75: 
renatofilho@75:     /* 8 byte string "CMML\0\0\0\0" for the magic number */
renatofilho@75:     if (memcmp (data, "CMML\0\0\0\0", 8) != 0)
renatofilho@75:       return;
renatofilho@75:     data += 8;
renatofilho@75: 
renatofilho@75:     /* Require that the header contains at least version 2.0 */
renatofilho@75:     if (GST_READ_UINT16_LE (data) < 2)
renatofilho@75:       return;
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, CMML_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-tar ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps tar_caps = GST_STATIC_CAPS ("application/x-tar");
renatofilho@75: 
renatofilho@75: #define TAR_CAPS (gst_static_caps_get(&tar_caps))
renatofilho@75: #define OLDGNU_MAGIC "ustar  "  /* 7 chars and a NUL */
renatofilho@75: #define NEWGNU_MAGIC "ustar"    /* 5 chars and a NUL */
renatofilho@75: static void
renatofilho@75: tar_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 257, 8);
renatofilho@75: 
renatofilho@75:   /* of course we are not certain, but we don't want other typefind funcs
renatofilho@75:    * to detect formats of files within the tar archive, e.g. mp3s */
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, OLDGNU_MAGIC, 8) == 0) {  /* sic */
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, TAR_CAPS);
renatofilho@75:     } else if (memcmp (data, NEWGNU_MAGIC, 6) == 0 &&   /* sic */
renatofilho@75:         g_ascii_isdigit (data[6]) && g_ascii_isdigit (data[7])) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, TAR_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-ar ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps ar_caps = GST_STATIC_CAPS ("application/x-ar");
renatofilho@75: 
renatofilho@75: #define AR_CAPS (gst_static_caps_get(&ar_caps))
renatofilho@75: static void
renatofilho@75: ar_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 24);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "!<arch>", 7) == 0) {
renatofilho@75:     gint i;
renatofilho@75: 
renatofilho@75:     for (i = 7; i < 24; ++i) {
renatofilho@75:       if (!g_ascii_isprint (data[i]) && data[i] != '\n') {
renatofilho@75:         gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, AR_CAPS);
renatofilho@75:       }
renatofilho@75:     }
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, AR_CAPS);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-au ***/
renatofilho@75: 
renatofilho@75: /* NOTE: we cannot replace this function with TYPE_FIND_REGISTER_START_WITH,
renatofilho@75:  * as it is only possible to register one typefind factory per 'name'
renatofilho@75:  * (which is in this case the caps), and the first one would be replaced by
renatofilho@75:  * the second one. */
renatofilho@75: static GstStaticCaps au_caps = GST_STATIC_CAPS ("audio/x-au");
renatofilho@75: 
renatofilho@75: #define AU_CAPS (gst_static_caps_get(&au_caps))
renatofilho@75: static void
renatofilho@75: au_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, ".snd", 4) == 0 || memcmp (data, "dns.", 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, AU_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: 
renatofilho@75: /*** video/x-nuv ***/
renatofilho@75: 
renatofilho@75: /* NOTE: we cannot replace this function with TYPE_FIND_REGISTER_START_WITH,
renatofilho@75:  * as it is only possible to register one typefind factory per 'name'
renatofilho@75:  * (which is in this case the caps), and the first one would be replaced by
renatofilho@75:  * the second one. */
renatofilho@75: static GstStaticCaps nuv_caps = GST_STATIC_CAPS ("video/x-nuv");
renatofilho@75: 
renatofilho@75: #define NUV_CAPS (gst_static_caps_get(&nuv_caps))
renatofilho@75: static void
renatofilho@75: nuv_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 11);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, "MythTVVideo", 11) == 0
renatofilho@75:         || memcmp (data, "NuppelVideo", 11) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, NUV_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/x-paris ***/
renatofilho@75: /* NOTE: do not replace this function with two TYPE_FIND_REGISTER_START_WITH */
renatofilho@75: static GstStaticCaps paris_caps = GST_STATIC_CAPS ("audio/x-paris");
renatofilho@75: 
renatofilho@75: #define PARIS_CAPS (gst_static_caps_get(&paris_caps))
renatofilho@75: static void
renatofilho@75: paris_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 4);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, " paf", 4) == 0 || memcmp (data, "fap ", 4) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, PARIS_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** audio/iLBC-sh ***/
renatofilho@75: /* NOTE: do not replace this function with two TYPE_FIND_REGISTER_START_WITH */
renatofilho@75: static GstStaticCaps ilbc_caps = GST_STATIC_CAPS ("audio/iLBC-sh");
renatofilho@75: 
renatofilho@75: #define ILBC_CAPS (gst_static_caps_get(&ilbc_caps))
renatofilho@75: static void
renatofilho@75: ilbc_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 8);
renatofilho@75: 
renatofilho@75:   if (data) {
renatofilho@75:     if (memcmp (data, "#!iLBC30", 8) == 0 || memcmp (data, "#!iLBC20", 8) == 0) {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, ILBC_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-ms-dos-executable ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps msdos_caps =
renatofilho@75: GST_STATIC_CAPS ("application/x-ms-dos-executable");
renatofilho@75: #define MSDOS_CAPS (gst_static_caps_get(&msdos_caps))
renatofilho@75: /* see http://www.madchat.org/vxdevl/papers/winsys/pefile/pefile.htm */
renatofilho@75: static void
renatofilho@75: msdos_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 64);
renatofilho@75: 
renatofilho@75:   if (data && data[0] == 'M' && data[1] == 'Z' &&
renatofilho@75:       GST_READ_UINT16_LE (data + 8) == 4) {
renatofilho@75:     guint32 pe_offset = GST_READ_UINT32_LE (data + 60);
renatofilho@75: 
renatofilho@75:     data = gst_type_find_peek (tf, pe_offset, 2);
renatofilho@75:     if (data && data[0] == 'P' && data[1] == 'E') {
renatofilho@75:       gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, MSDOS_CAPS);
renatofilho@75:     }
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** application/x-mmsh ***/
renatofilho@75: 
renatofilho@75: static GstStaticCaps mmsh_caps = GST_STATIC_CAPS ("application/x-mmsh");
renatofilho@75: 
renatofilho@75: #define MMSH_CAPS gst_static_caps_get(&mmsh_caps)
renatofilho@75: 
renatofilho@75: /* This is to recognise mssh-over-http */
renatofilho@75: static void
renatofilho@75: mmsh_type_find (GstTypeFind * tf, gpointer unused)
renatofilho@75: {
renatofilho@75:   static const guint8 asf_marker[16] = { 0x30, 0x26, 0xb2, 0x75, 0x8e, 0x66,
renatofilho@75:     0xcf, 0x11, 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c
renatofilho@75:   };
renatofilho@75: 
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   data = gst_type_find_peek (tf, 0, 2 + 2 + 4 + 2 + 2 + 16);
renatofilho@75:   if (data && data[0] == 0x24 && data[1] == 0x48 &&
renatofilho@75:       GST_READ_UINT16_LE (data + 2) > 2 + 2 + 4 + 2 + 2 + 16 &&
renatofilho@75:       memcmp (data + 2 + 2 + 4 + 2 + 2, asf_marker, 16) == 0) {
renatofilho@75:     GstCaps *caps = gst_caps_copy (MMSH_CAPS);
renatofilho@75: 
renatofilho@75:     gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, caps);
renatofilho@75:     gst_caps_unref (caps);
renatofilho@75:     return;
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: /*** generic typefind for streams that have some data at a specific position***/
renatofilho@75: typedef struct
renatofilho@75: {
renatofilho@75:   const guint8 *data;
renatofilho@75:   guint size;
renatofilho@75:   guint probability;
renatofilho@75:   GstCaps *caps;
renatofilho@75: }
renatofilho@75: GstTypeFindData;
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: start_with_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   GstTypeFindData *start_with = (GstTypeFindData *) private;
renatofilho@75:   guint8 *data;
renatofilho@75: 
renatofilho@75:   GST_LOG ("trying to find mime type %s with the first %u bytes of data",
renatofilho@75:       gst_structure_get_name (gst_caps_get_structure (start_with->caps, 0)),
renatofilho@75:       start_with->size);
renatofilho@75:   data = gst_type_find_peek (tf, 0, start_with->size);
renatofilho@75:   if (data && memcmp (data, start_with->data, start_with->size) == 0) {
renatofilho@75:     gst_type_find_suggest (tf, start_with->probability, start_with->caps);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: sw_data_destroy (GstTypeFindData * sw_data)
renatofilho@75: {
renatofilho@75:   if (G_LIKELY (sw_data->caps != NULL))
renatofilho@75:     gst_caps_unref (sw_data->caps);
renatofilho@75:   g_free (sw_data);
renatofilho@75: }
renatofilho@75: 
renatofilho@75: #define TYPE_FIND_REGISTER_START_WITH(plugin,name,rank,ext,_data,_size,_probability)\
renatofilho@75: G_BEGIN_DECLS{                                                          \
renatofilho@75:   GstTypeFindData *sw_data = g_new (GstTypeFindData, 1);                \
renatofilho@75:   sw_data->data = (const guint8 *)_data;                                \
renatofilho@75:   sw_data->size = _size;                                                \
renatofilho@75:   sw_data->probability = _probability;                                  \
renatofilho@75:   sw_data->caps = gst_caps_new_simple (name, NULL);                     \
renatofilho@75:   if (!gst_type_find_register (plugin, name, rank, start_with_type_find,\
renatofilho@75:                       ext, sw_data->caps, sw_data,                      \
renatofilho@75:                      (GDestroyNotify) (sw_data_destroy))) {             \
renatofilho@75:     gst_caps_unref (sw_data->caps);                                     \
renatofilho@75:     g_free (sw_data);                                                   \
renatofilho@75:   }                                                                     \
renatofilho@75: }G_END_DECLS
renatofilho@75: 
renatofilho@75: /*** same for riff types ***/
renatofilho@75: 
renatofilho@75: static void
renatofilho@75: riff_type_find (GstTypeFind * tf, gpointer private)
renatofilho@75: {
renatofilho@75:   GstTypeFindData *riff_data = (GstTypeFindData *) private;
renatofilho@75:   guint8 *data = gst_type_find_peek (tf, 0, 12);
renatofilho@75: 
renatofilho@75:   if (data && memcmp (data, "RIFF", 4) == 0) {
renatofilho@75:     data += 8;
renatofilho@75:     if (memcmp (data, riff_data->data, 4) == 0)
renatofilho@75:       gst_type_find_suggest (tf, riff_data->probability, riff_data->caps);
renatofilho@75:   }
renatofilho@75: }
renatofilho@75: 
renatofilho@75: #define TYPE_FIND_REGISTER_RIFF(plugin,name,rank,ext,_data)             \
renatofilho@75: G_BEGIN_DECLS{                                                          \
renatofilho@75:   GstTypeFindData *sw_data = g_new (GstTypeFindData, 1);                \
renatofilho@75:   sw_data->data = (gpointer)_data;                                      \
renatofilho@75:   sw_data->size = 4;                                                    \
renatofilho@75:   sw_data->probability = GST_TYPE_FIND_MAXIMUM;                         \
renatofilho@75:   sw_data->caps = gst_caps_new_simple (name, NULL);                     \
renatofilho@75:   if (!gst_type_find_register (plugin, name, rank, riff_type_find,      \
renatofilho@75:                       ext, sw_data->caps, sw_data,                      \
renatofilho@75:                       (GDestroyNotify) (sw_data_destroy))) {            \
renatofilho@75:     gst_caps_unref (sw_data->caps);                                     \
renatofilho@75:     g_free (sw_data);                                                   \
renatofilho@75:   }                                                                     \
renatofilho@75: }G_END_DECLS
renatofilho@75: 
renatofilho@75: 
renatofilho@75: 
renatofilho@75: /*** plugin initialization ***/
renatofilho@75: 
renatofilho@75: #define TYPE_FIND_REGISTER(plugin,name,rank,func,ext,caps,priv,notify) \
renatofilho@75: G_BEGIN_DECLS{\
renatofilho@75:   if (!gst_type_find_register (plugin, name, rank, func, ext, caps, priv, notify))\
renatofilho@75:     return FALSE; \
renatofilho@75: }G_END_DECLS
renatofilho@75: static gboolean
renatofilho@75: plugin_init (GstPlugin * plugin)
renatofilho@75: {
renatofilho@75:   /* can't initialize this via a struct as caps can't be statically initialized */
renatofilho@75: 
renatofilho@75:   /* note: asx/wax/wmx are XML files, asf doesn't handle them */
renatofilho@75:   /* FIXME-0.11: these should be const,
renatofilho@75:      this requires gstreamer/gst/gsttypefind::gst_type_find_register()
renatofilho@75:      to have define the parameter as const
renatofilho@75:    */
renatofilho@75:   static gchar *asf_exts[] = { "asf", "wm", "wma", "wmv", NULL };
renatofilho@75:   static gchar *au_exts[] = { "au", "snd", NULL };
renatofilho@75:   static gchar *avi_exts[] = { "avi", NULL };
renatofilho@75:   static gchar *cdxa_exts[] = { "dat", NULL };
renatofilho@75:   static gchar *flac_exts[] = { "flac", NULL };
renatofilho@75:   static gchar *flx_exts[] = { "flc", "fli", NULL };
renatofilho@75:   static gchar *id3_exts[] =
renatofilho@75:       { "mp3", "mp2", "mp1", "mpga", "ogg", "flac", "tta", NULL };
renatofilho@75:   static gchar *apetag_exts[] = { "ape", "mpc", "wv", NULL };   /* and mp3 and wav? */
renatofilho@75:   static gchar *tta_exts[] = { "tta", NULL };
renatofilho@75:   static gchar *mod_exts[] = { "669", "amf", "dsm", "gdm", "far", "imf",
renatofilho@75:     "it", "med", "mod", "mtm", "okt", "sam",
renatofilho@75:     "s3m", "stm", "stx", "ult", "xm", NULL
renatofilho@75:   };
renatofilho@75:   static gchar *mp3_exts[] = { "mp3", "mp2", "mp1", "mpga", NULL };
renatofilho@75:   static gchar *ac3_exts[] = { "ac3", NULL };
renatofilho@75:   static gchar *musepack_exts[] = { "mpc", NULL };
renatofilho@75:   static gchar *mpeg_sys_exts[] = { "mpe", "mpeg", "mpg", NULL };
renatofilho@75:   static gchar *mpeg_video_exts[] = { "mpv", "mpeg", "mpg", NULL };
renatofilho@75:   static gchar *mpeg_ts_exts[] = { "ts", NULL };
renatofilho@75:   static gchar *ogg_exts[] = { "anx", "ogg", "ogm", NULL };
renatofilho@75:   static gchar *qt_exts[] = { "mov", NULL };
renatofilho@75:   static gchar *qtif_exts[] = { "qif", "qtif", "qti", NULL };
renatofilho@75:   static gchar *rm_exts[] = { "ra", "ram", "rm", "rmvb", NULL };
renatofilho@75:   static gchar *swf_exts[] = { "swf", "swfl", NULL };
renatofilho@75:   static gchar *utf8_exts[] = { "txt", NULL };
renatofilho@75:   static gchar *wav_exts[] = { "wav", NULL };
renatofilho@75:   static gchar *aiff_exts[] = { "aiff", "aif", "aifc", NULL };
renatofilho@75:   static gchar *svx_exts[] = { "iff", "svx", NULL };
renatofilho@75:   static gchar *paris_exts[] = { "paf", NULL };
renatofilho@75:   static gchar *nist_exts[] = { "nist", NULL };
renatofilho@75:   static gchar *voc_exts[] = { "voc", NULL };
renatofilho@75:   static gchar *sds_exts[] = { "sds", NULL };
renatofilho@75:   static gchar *ircam_exts[] = { "sf", NULL };
renatofilho@75:   static gchar *w64_exts[] = { "w64", NULL };
renatofilho@75:   static gchar *shn_exts[] = { "shn", NULL };
renatofilho@75:   static gchar *ape_exts[] = { "ape", NULL };
renatofilho@75:   static gchar *uri_exts[] = { "ram", NULL };
renatofilho@75:   static gchar *smil_exts[] = { "smil", NULL };
renatofilho@75:   static gchar *html_exts[] = { "htm", "html", NULL };
renatofilho@75:   static gchar *xml_exts[] = { "xml", NULL };
renatofilho@75:   static gchar *jpeg_exts[] = { "jpg", "jpe", "jpeg", NULL };
renatofilho@75:   static gchar *gif_exts[] = { "gif", NULL };
renatofilho@75:   static gchar *png_exts[] = { "png", NULL };
renatofilho@75:   static gchar *bmp_exts[] = { "bmp", NULL };
renatofilho@75:   static gchar *tiff_exts[] = { "tif", "tiff", NULL };
renatofilho@75:   static gchar *matroska_exts[] = { "mkv", "mka", NULL };
renatofilho@75:   static gchar *mve_exts[] = { "mve", NULL };
renatofilho@75:   static gchar *dv_exts[] = { "dv", "dif", NULL };
renatofilho@75:   static gchar *amr_exts[] = { "amr", NULL };
renatofilho@75:   static gchar *ilbc_exts[] = { "ilbc", NULL };
renatofilho@75:   static gchar *sid_exts[] = { "sid", NULL };
renatofilho@75:   static gchar *xcf_exts[] = { "xcf", NULL };
renatofilho@75:   static gchar *mng_exts[] = { "mng", NULL };
renatofilho@75:   static gchar *jng_exts[] = { "jng", NULL };
renatofilho@75:   static gchar *xpm_exts[] = { "xpm", NULL };
renatofilho@75:   static gchar *ras_exts[] = { "ras", NULL };
renatofilho@75:   static gchar *bz2_exts[] = { "bz2", NULL };
renatofilho@75:   static gchar *gz_exts[] = { "gz", NULL };
renatofilho@75:   static gchar *zip_exts[] = { "zip", NULL };
renatofilho@75:   static gchar *compress_exts[] = { "Z", NULL };
renatofilho@75:   static gchar *m4a_exts[] = { "m4a", NULL };
renatofilho@75:   static gchar *q3gp_exts[] = { "3gp", NULL };
renatofilho@75:   static gchar *aac_exts[] = { "aac", NULL };
renatofilho@75:   static gchar *spc_exts[] = { "spc", NULL };
renatofilho@75:   static gchar *wavpack_exts[] = { "wv", "wvp", NULL };
renatofilho@75:   static gchar *wavpack_correction_exts[] = { "wvc", NULL };
renatofilho@75:   static gchar *rar_exts[] = { "rar", NULL };
renatofilho@75:   static gchar *tar_exts[] = { "tar", NULL };
renatofilho@75:   static gchar *ar_exts[] = { "a", NULL };
renatofilho@75:   static gchar *msdos_exts[] = { "dll", "exe", "ocx", "sys", "scr",
renatofilho@75:     "msstyles", "cpl", NULL
renatofilho@75:   };
renatofilho@75:   static gchar *flv_exts[] = { "flv", NULL };
renatofilho@75:   static gchar *m4v_exts[] = { "m4v", NULL };
renatofilho@75:   static gchar *nuv_exts[] = { "nuv", NULL };
renatofilho@75: 
renatofilho@75:   GST_DEBUG_CATEGORY_INIT (type_find_debug, "typefindfunctions",
renatofilho@75:       GST_DEBUG_FG_GREEN | GST_DEBUG_BG_RED, "generic type find functions");
renatofilho@75: 
renatofilho@75:   /* must use strings, macros don't accept initializers */
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-ms-asf", GST_RANK_SECONDARY,
renatofilho@75:       asf_exts,
renatofilho@75:       "\060\046\262\165\216\146\317\021\246\331\000\252\000\142\316\154", 16,
renatofilho@75:       GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-musepack", GST_RANK_PRIMARY,
renatofilho@75:       musepack_type_find, musepack_exts, MUSEPACK_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-au", GST_RANK_MARGINAL,
renatofilho@75:       au_type_find, au_exts, AU_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_RIFF (plugin, "video/x-msvideo", GST_RANK_PRIMARY,
renatofilho@75:       avi_exts, "AVI ");
renatofilho@75:   TYPE_FIND_REGISTER_RIFF (plugin, "video/x-cdxa", GST_RANK_PRIMARY,
renatofilho@75:       cdxa_exts, "CDXA");
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-vcd", GST_RANK_PRIMARY,
renatofilho@75:       cdxa_exts, "\000\377\377\377\377\377\377\377\377\377\377\000", 12,
renatofilho@75:       GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-flac", GST_RANK_PRIMARY,
renatofilho@75:       flac_exts, "fLaC", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/x-fli", GST_RANK_MARGINAL, flx_type_find,
renatofilho@75:       flx_exts, FLX_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-id3v2", GST_RANK_PRIMARY + 3,
renatofilho@75:       id3v2_type_find, id3_exts, ID3_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-id3v1", GST_RANK_PRIMARY + 1,
renatofilho@75:       id3v1_type_find, id3_exts, ID3_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-apetag", GST_RANK_PRIMARY + 2,
renatofilho@75:       apetag_type_find, apetag_exts, APETAG_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-ttafile", GST_RANK_PRIMARY,
renatofilho@75:       tta_type_find, tta_exts, TTA_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-mod", GST_RANK_SECONDARY, mod_type_find,
renatofilho@75:       mod_exts, MOD_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/mpeg", GST_RANK_PRIMARY, mp3_type_find,
renatofilho@75:       mp3_exts, MP3_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-ac3", GST_RANK_PRIMARY, ac3_type_find,
renatofilho@75:       ac3_exts, AC3_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/mpeg1", GST_RANK_PRIMARY,
renatofilho@75:       mpeg1_sys_type_find, mpeg_sys_exts, MPEG_SYS_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/mpeg2", GST_RANK_SECONDARY,
renatofilho@75:       mpeg2_sys_type_find, mpeg_sys_exts, MPEG_SYS_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/mpegts", GST_RANK_PRIMARY,
renatofilho@75:       mpeg_ts_type_find, mpeg_ts_exts, MPEGTS_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/ogg", GST_RANK_PRIMARY,
renatofilho@75:       ogganx_type_find, ogg_exts, OGGANX_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/mpeg", GST_RANK_SECONDARY,
renatofilho@75:       mpeg_video_type_find, mpeg_video_exts, MPEG_VIDEO_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/mpeg-stream", GST_RANK_MARGINAL,
renatofilho@75:       mpeg_video_stream_type_find, mpeg_video_exts, MPEG_VIDEO_CAPS, NULL,
renatofilho@75:       NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/mpeg4", GST_RANK_PRIMARY,
renatofilho@75:       mpeg4_video_type_find, m4v_exts, MPEG_VIDEO_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/x-nuv", GST_RANK_SECONDARY,
renatofilho@75:       nuv_type_find, nuv_exts, NUV_CAPS, NULL, NULL);
renatofilho@75: 
renatofilho@75:   /* ISO formats */
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-m4a", GST_RANK_PRIMARY, m4a_type_find,
renatofilho@75:       m4a_exts, M4A_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-3gp", GST_RANK_PRIMARY,
renatofilho@75:       q3gp_type_find, q3gp_exts, Q3GP_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/quicktime", GST_RANK_SECONDARY,
renatofilho@75:       qt_type_find, qt_exts, QT_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "image/x-quicktime", GST_RANK_SECONDARY,
renatofilho@75:       qtif_type_find, qtif_exts, QTIF_CAPS, NULL, NULL);
renatofilho@75: 
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "text/html", GST_RANK_SECONDARY, html_type_find,
renatofilho@75:       html_exts, HTML_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/vnd.rn-realmedia",
renatofilho@75:       GST_RANK_SECONDARY, rm_exts, ".RMF", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-pn-realaudio",
renatofilho@75:       GST_RANK_SECONDARY, rm_exts, ".ra\375", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-shockwave-flash",
renatofilho@75:       GST_RANK_SECONDARY, swf_type_find, swf_exts, SWF_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-flv", GST_RANK_SECONDARY,
renatofilho@75:       flv_exts, "FLV", 3, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "text/plain", GST_RANK_MARGINAL, utf8_type_find,
renatofilho@75:       utf8_exts, UTF8_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "text/uri-list", GST_RANK_MARGINAL, uri_type_find,
renatofilho@75:       uri_exts, URI_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/smil", GST_RANK_SECONDARY,
renatofilho@75:       smil_type_find, smil_exts, SMIL_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/xml", GST_RANK_MARGINAL,
renatofilho@75:       xml_type_find, xml_exts, GENERIC_XML_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_RIFF (plugin, "audio/x-wav", GST_RANK_PRIMARY, wav_exts,
renatofilho@75:       "WAVE");
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-aiff", GST_RANK_SECONDARY,
renatofilho@75:       aiff_type_find, aiff_exts, AIFF_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-svx", GST_RANK_SECONDARY, svx_type_find,
renatofilho@75:       svx_exts, SVX_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-paris", GST_RANK_SECONDARY,
renatofilho@75:       paris_type_find, paris_exts, PARIS_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-nist", GST_RANK_SECONDARY,
renatofilho@75:       nist_exts, "NIST", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-voc", GST_RANK_SECONDARY,
renatofilho@75:       voc_exts, "Creative", 8, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-sds", GST_RANK_SECONDARY, sds_type_find,
renatofilho@75:       sds_exts, SDS_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-ircam", GST_RANK_SECONDARY,
renatofilho@75:       ircam_type_find, ircam_exts, IRCAM_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-w64", GST_RANK_SECONDARY,
renatofilho@75:       w64_exts, "riff", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-shorten", GST_RANK_SECONDARY,
renatofilho@75:       shn_type_find, shn_exts, SHN_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ape", GST_RANK_SECONDARY,
renatofilho@75:       ape_type_find, ape_exts, APE_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "image/jpeg", GST_RANK_PRIMARY, jpeg_type_find,
renatofilho@75:       jpeg_exts, JPEG_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "image/gif", GST_RANK_PRIMARY,
renatofilho@75:       gif_exts, "GIF8", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "image/png", GST_RANK_PRIMARY,
renatofilho@75:       png_exts, "\211PNG\015\012\032\012", 8, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "image/bmp", GST_RANK_PRIMARY, bmp_type_find,
renatofilho@75:       bmp_exts, BMP_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "image/tiff", GST_RANK_PRIMARY, tiff_type_find,
renatofilho@75:       tiff_exts, TIFF_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/x-matroska", GST_RANK_PRIMARY,
renatofilho@75:       matroska_type_find, matroska_exts, MATROSKA_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-mve", GST_RANK_SECONDARY,
renatofilho@75:       mve_exts, "Interplay MVE File\032\000\032\000\000\001\063\021", 26,
renatofilho@75:       GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/x-dv", GST_RANK_SECONDARY, dv_type_find,
renatofilho@75:       dv_exts, DV_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-amr-nb-sh", GST_RANK_PRIMARY,
renatofilho@75:       amr_exts, "#!AMR", 5, GST_TYPE_FIND_LIKELY);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-amr-wb-sh", GST_RANK_PRIMARY,
renatofilho@75:       amr_exts, "#!AMR-WB", 7, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/iLBC-sh", GST_RANK_PRIMARY,
renatofilho@75:       ilbc_type_find, ilbc_exts, ILBC_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-sid", GST_RANK_MARGINAL,
renatofilho@75:       sid_exts, "PSID", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-xcf", GST_RANK_SECONDARY,
renatofilho@75:       xcf_exts, "gimp xcf", 8, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-mng", GST_RANK_SECONDARY,
renatofilho@75:       mng_exts, "\212MNG\015\012\032\012", 8, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-jng", GST_RANK_SECONDARY,
renatofilho@75:       jng_exts, "\213JNG\015\012\032\012", 8, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-xpixmap", GST_RANK_SECONDARY,
renatofilho@75:       xpm_exts, "/* XPM */", 9, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-sun-raster",
renatofilho@75:       GST_RANK_SECONDARY, ras_exts, "\131\246\152\225", 4,
renatofilho@75:       GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-bzip",
renatofilho@75:       GST_RANK_SECONDARY, bz2_exts, "BZh", 3, GST_TYPE_FIND_LIKELY);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-gzip",
renatofilho@75:       GST_RANK_SECONDARY, gz_exts, "\037\213", 2, GST_TYPE_FIND_LIKELY);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/zip", GST_RANK_SECONDARY,
renatofilho@75:       zip_exts, "PK\003\004", 4, GST_TYPE_FIND_LIKELY);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-compress",
renatofilho@75:       GST_RANK_SECONDARY, compress_exts, "\037\235", 2, GST_TYPE_FIND_LIKELY);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-vorbis", GST_RANK_PRIMARY,
renatofilho@75:       vorbis_type_find, NULL, VORBIS_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "video/x-theora", GST_RANK_PRIMARY,
renatofilho@75:       theora_type_find, NULL, THEORA_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ogm-video", GST_RANK_PRIMARY,
renatofilho@75:       ogmvideo_type_find, NULL, OGMVIDEO_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ogm-audio", GST_RANK_PRIMARY,
renatofilho@75:       ogmaudio_type_find, NULL, OGMAUDIO_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ogm-text", GST_RANK_PRIMARY,
renatofilho@75:       ogmtext_type_find, NULL, OGMTEXT_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-speex", GST_RANK_PRIMARY,
renatofilho@75:       speex_type_find, NULL, SPEEX_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ogg-skeleton", GST_RANK_PRIMARY,
renatofilho@75:       oggskel_type_find, NULL, OGG_SKELETON_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "text/x-cmml", GST_RANK_PRIMARY, cmml_type_find,
renatofilho@75:       NULL, CMML_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-executable",
renatofilho@75:       GST_RANK_MARGINAL, NULL, "\177ELF", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "adts_mpeg_stream", GST_RANK_SECONDARY,
renatofilho@75:       aac_type_find, aac_exts, AAC_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-spc", GST_RANK_SECONDARY,
renatofilho@75:       spc_exts, "SNES-SPC700 Sound File Data", 27, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-wavpack", GST_RANK_SECONDARY,
renatofilho@75:       wavpack_type_find, wavpack_exts, WAVPACK_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "audio/x-wavpack-correction", GST_RANK_SECONDARY,
renatofilho@75:       wavpack_type_find, wavpack_correction_exts, WAVPACK_CORRECTION_CAPS, NULL,
renatofilho@75:       NULL);
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-rar",
renatofilho@75:       GST_RANK_SECONDARY, rar_exts, "Rar!", 4, GST_TYPE_FIND_LIKELY);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-tar", GST_RANK_SECONDARY,
renatofilho@75:       tar_type_find, tar_exts, TAR_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ar", GST_RANK_SECONDARY,
renatofilho@75:       ar_type_find, ar_exts, AR_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-ms-dos-executable",
renatofilho@75:       GST_RANK_SECONDARY, msdos_type_find, msdos_exts, MSDOS_CAPS, NULL, NULL);
renatofilho@75: #if 0
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-dirac",
renatofilho@75:       GST_RANK_PRIMARY, NULL, "BBCD", 4, GST_TYPE_FIND_MAXIMUM);
renatofilho@75: #endif
renatofilho@75:   TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-dirac",
renatofilho@75:       GST_RANK_PRIMARY, NULL, "KW-DIRAC", 8, GST_TYPE_FIND_MAXIMUM);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "multipart/x-mixed-replace", GST_RANK_SECONDARY,
renatofilho@75:       multipart_type_find, NULL, MULTIPART_CAPS, NULL, NULL);
renatofilho@75:   TYPE_FIND_REGISTER (plugin, "application/x-mmsh", GST_RANK_SECONDARY,
renatofilho@75:       mmsh_type_find, NULL, MMSH_CAPS, NULL, NULL);
renatofilho@75:   return TRUE;
renatofilho@75: }
renatofilho@75: 
renatofilho@75: GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
renatofilho@75:     GST_VERSION_MINOR,
renatofilho@75:     "typefindfunctions",
renatofilho@75:     "default typefind functions",
renatofilho@75:     plugin_init, VERSION, "LGPL", "GStreamer Base Plug-ins CVS/prerelease", "Gstreamer CVS")