renatofilho@75
|
1 |
/* GStreamer
|
renatofilho@75
|
2 |
* Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
renatofilho@75
|
3 |
*
|
renatofilho@75
|
4 |
* gsttypefindfunctions.c: collection of various typefind functions
|
renatofilho@75
|
5 |
*
|
renatofilho@75
|
6 |
* This library is free software; you can redistribute it and/or
|
renatofilho@75
|
7 |
* modify it under the terms of the GNU Library General Public
|
renatofilho@75
|
8 |
* License as published by the Free Software Foundation; either
|
renatofilho@75
|
9 |
* version 2 of the License, or (at your option) any later version.
|
renatofilho@75
|
10 |
*
|
renatofilho@75
|
11 |
* This library is distributed in the hope that it will be useful,
|
renatofilho@75
|
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@75
|
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
renatofilho@75
|
14 |
* Library General Public License for more details.
|
renatofilho@75
|
15 |
*
|
renatofilho@75
|
16 |
* You should have received a copy of the GNU Library General Public
|
renatofilho@75
|
17 |
* License along with this library; if not, write to the
|
renatofilho@75
|
18 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
renatofilho@75
|
19 |
* Boston, MA 02111-1307, USA.
|
renatofilho@75
|
20 |
*/
|
renatofilho@75
|
21 |
|
renatofilho@75
|
22 |
#ifdef HAVE_CONFIG_H
|
renatofilho@75
|
23 |
#include "config.h"
|
renatofilho@75
|
24 |
#endif
|
renatofilho@75
|
25 |
|
renatofilho@75
|
26 |
#include <glib/gstrfuncs.h>
|
renatofilho@75
|
27 |
|
renatofilho@75
|
28 |
#include <gst/gsttypefind.h>
|
renatofilho@75
|
29 |
#include <gst/gstelement.h>
|
renatofilho@75
|
30 |
#include <gst/gstversion.h>
|
renatofilho@75
|
31 |
#include <gst/gstinfo.h>
|
renatofilho@75
|
32 |
#include <gst/gstutils.h>
|
renatofilho@75
|
33 |
|
renatofilho@75
|
34 |
#include <string.h>
|
renatofilho@75
|
35 |
#include <ctype.h>
|
renatofilho@75
|
36 |
|
renatofilho@75
|
37 |
GST_DEBUG_CATEGORY_STATIC (type_find_debug);
|
renatofilho@75
|
38 |
#define GST_CAT_DEFAULT type_find_debug
|
renatofilho@75
|
39 |
|
renatofilho@75
|
40 |
/*** text/plain ***/
|
renatofilho@75
|
41 |
static gboolean xml_check_first_element (GstTypeFind * tf,
|
renatofilho@75
|
42 |
const gchar * element, guint elen, gboolean strict);
|
renatofilho@75
|
43 |
|
renatofilho@75
|
44 |
|
renatofilho@75
|
45 |
static GstStaticCaps utf8_caps = GST_STATIC_CAPS ("text/plain");
|
renatofilho@75
|
46 |
|
renatofilho@75
|
47 |
#define UTF8_CAPS gst_static_caps_get(&utf8_caps)
|
renatofilho@75
|
48 |
|
renatofilho@75
|
49 |
static gboolean
|
renatofilho@75
|
50 |
utf8_type_find_have_valid_utf8_at_offset (GstTypeFind * tf, guint64 offset,
|
renatofilho@75
|
51 |
GstTypeFindProbability * prob)
|
renatofilho@75
|
52 |
{
|
renatofilho@75
|
53 |
guint8 *data;
|
renatofilho@75
|
54 |
|
renatofilho@75
|
55 |
/* randomly decided values */
|
renatofilho@75
|
56 |
guint min_size = 16; /* minimum size */
|
renatofilho@75
|
57 |
guint size = 32 * 1024; /* starting size */
|
renatofilho@75
|
58 |
guint probability = 95; /* starting probability */
|
renatofilho@75
|
59 |
guint step = 10; /* how much we reduce probability in each
|
renatofilho@75
|
60 |
* iteration */
|
renatofilho@75
|
61 |
|
renatofilho@75
|
62 |
while (probability > step && size > min_size) {
|
renatofilho@75
|
63 |
data = gst_type_find_peek (tf, offset, size);
|
renatofilho@75
|
64 |
if (data) {
|
renatofilho@75
|
65 |
gchar *end;
|
renatofilho@75
|
66 |
gchar *start = (gchar *) data;
|
renatofilho@75
|
67 |
|
renatofilho@75
|
68 |
if (g_utf8_validate (start, size, (const gchar **) &end) || (end - start + 4 > size)) { /* allow last char to be cut off */
|
renatofilho@75
|
69 |
*prob = probability;
|
renatofilho@75
|
70 |
return TRUE;
|
renatofilho@75
|
71 |
}
|
renatofilho@75
|
72 |
*prob = 0;
|
renatofilho@75
|
73 |
return FALSE;
|
renatofilho@75
|
74 |
}
|
renatofilho@75
|
75 |
size /= 2;
|
renatofilho@75
|
76 |
probability -= step;
|
renatofilho@75
|
77 |
}
|
renatofilho@75
|
78 |
*prob = 0;
|
renatofilho@75
|
79 |
return FALSE;
|
renatofilho@75
|
80 |
}
|
renatofilho@75
|
81 |
|
renatofilho@75
|
82 |
static void
|
renatofilho@75
|
83 |
utf8_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
84 |
{
|
renatofilho@75
|
85 |
GstTypeFindProbability start_prob, mid_prob;
|
renatofilho@75
|
86 |
guint64 length;
|
renatofilho@75
|
87 |
|
renatofilho@75
|
88 |
/* leave xml to the xml typefinders */
|
renatofilho@75
|
89 |
if (xml_check_first_element (tf, "", 0, TRUE))
|
renatofilho@75
|
90 |
return;
|
renatofilho@75
|
91 |
|
renatofilho@75
|
92 |
/* check beginning of stream */
|
renatofilho@75
|
93 |
if (!utf8_type_find_have_valid_utf8_at_offset (tf, 0, &start_prob))
|
renatofilho@75
|
94 |
return;
|
renatofilho@75
|
95 |
|
renatofilho@75
|
96 |
GST_LOG ("start is plain text with probability of %u", start_prob);
|
renatofilho@75
|
97 |
|
renatofilho@75
|
98 |
/* POSSIBLE is the highest probability we ever return if we can't
|
renatofilho@75
|
99 |
* probe into the middle of the file and don't know its length */
|
renatofilho@75
|
100 |
|
renatofilho@75
|
101 |
length = gst_type_find_get_length (tf);
|
renatofilho@75
|
102 |
if (length == 0 || length == (guint64) - 1) {
|
renatofilho@75
|
103 |
gst_type_find_suggest (tf, MIN (start_prob, GST_TYPE_FIND_POSSIBLE),
|
renatofilho@75
|
104 |
UTF8_CAPS);
|
renatofilho@75
|
105 |
return;
|
renatofilho@75
|
106 |
}
|
renatofilho@75
|
107 |
|
renatofilho@75
|
108 |
if (length < 64 * 1024) {
|
renatofilho@75
|
109 |
gst_type_find_suggest (tf, start_prob, UTF8_CAPS);
|
renatofilho@75
|
110 |
return;
|
renatofilho@75
|
111 |
}
|
renatofilho@75
|
112 |
|
renatofilho@75
|
113 |
/* check middle of stream */
|
renatofilho@75
|
114 |
if (!utf8_type_find_have_valid_utf8_at_offset (tf, length / 2, &mid_prob))
|
renatofilho@75
|
115 |
return;
|
renatofilho@75
|
116 |
|
renatofilho@75
|
117 |
GST_LOG ("middle is plain text with probability of %u", mid_prob);
|
renatofilho@75
|
118 |
gst_type_find_suggest (tf, (start_prob + mid_prob) / 2, UTF8_CAPS);
|
renatofilho@75
|
119 |
}
|
renatofilho@75
|
120 |
|
renatofilho@75
|
121 |
/*** text/uri-list ***/
|
renatofilho@75
|
122 |
|
renatofilho@75
|
123 |
static GstStaticCaps uri_caps = GST_STATIC_CAPS ("text/uri-list");
|
renatofilho@75
|
124 |
|
renatofilho@75
|
125 |
#define URI_CAPS (gst_static_caps_get(&uri_caps))
|
renatofilho@75
|
126 |
#define BUFFER_SIZE 16 /* If the string is < 16 bytes we're screwed */
|
renatofilho@75
|
127 |
#define INC_BUFFER { \
|
renatofilho@75
|
128 |
pos++; \
|
renatofilho@75
|
129 |
if (pos == BUFFER_SIZE) { \
|
renatofilho@75
|
130 |
pos = 0; \
|
renatofilho@75
|
131 |
offset += BUFFER_SIZE; \
|
renatofilho@75
|
132 |
data = gst_type_find_peek (tf, offset, BUFFER_SIZE); \
|
renatofilho@75
|
133 |
if (data == NULL) return; \
|
renatofilho@75
|
134 |
} else { \
|
renatofilho@75
|
135 |
data++; \
|
renatofilho@75
|
136 |
} \
|
renatofilho@75
|
137 |
}
|
renatofilho@75
|
138 |
static void
|
renatofilho@75
|
139 |
uri_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
140 |
{
|
renatofilho@75
|
141 |
guint8 *data = gst_type_find_peek (tf, 0, BUFFER_SIZE);
|
renatofilho@75
|
142 |
guint pos = 0;
|
renatofilho@75
|
143 |
guint offset = 0;
|
renatofilho@75
|
144 |
|
renatofilho@75
|
145 |
if (data) {
|
renatofilho@75
|
146 |
/* Search for # comment lines */
|
renatofilho@75
|
147 |
while (*data == '#') {
|
renatofilho@75
|
148 |
/* Goto end of line */
|
renatofilho@75
|
149 |
while (*data != '\n') {
|
renatofilho@75
|
150 |
INC_BUFFER;
|
renatofilho@75
|
151 |
}
|
renatofilho@75
|
152 |
|
renatofilho@75
|
153 |
INC_BUFFER;
|
renatofilho@75
|
154 |
}
|
renatofilho@75
|
155 |
|
renatofilho@75
|
156 |
if (!g_ascii_isalpha (*data)) {
|
renatofilho@75
|
157 |
/* Had a non alpha char - can't be uri-list */
|
renatofilho@75
|
158 |
return;
|
renatofilho@75
|
159 |
}
|
renatofilho@75
|
160 |
|
renatofilho@75
|
161 |
INC_BUFFER;
|
renatofilho@75
|
162 |
|
renatofilho@75
|
163 |
while (g_ascii_isalnum (*data)) {
|
renatofilho@75
|
164 |
INC_BUFFER;
|
renatofilho@75
|
165 |
}
|
renatofilho@75
|
166 |
|
renatofilho@75
|
167 |
if (*data != ':') {
|
renatofilho@75
|
168 |
/* First non alpha char is not a : */
|
renatofilho@75
|
169 |
return;
|
renatofilho@75
|
170 |
}
|
renatofilho@75
|
171 |
|
renatofilho@75
|
172 |
/* Get the next 2 bytes as well */
|
renatofilho@75
|
173 |
data = gst_type_find_peek (tf, offset + pos, 3);
|
renatofilho@75
|
174 |
if (data == NULL)
|
renatofilho@75
|
175 |
return;
|
renatofilho@75
|
176 |
|
renatofilho@75
|
177 |
if (data[1] != '/' && data[2] != '/') {
|
renatofilho@75
|
178 |
return;
|
renatofilho@75
|
179 |
}
|
renatofilho@75
|
180 |
|
renatofilho@75
|
181 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, URI_CAPS);
|
renatofilho@75
|
182 |
}
|
renatofilho@75
|
183 |
}
|
renatofilho@75
|
184 |
|
renatofilho@75
|
185 |
|
renatofilho@75
|
186 |
/*** application/xml **********************************************************/
|
renatofilho@75
|
187 |
|
renatofilho@75
|
188 |
#define XML_BUFFER_SIZE 16
|
renatofilho@75
|
189 |
#define XML_INC_BUFFER { \
|
renatofilho@75
|
190 |
pos++; \
|
renatofilho@75
|
191 |
if (pos == XML_BUFFER_SIZE) { \
|
renatofilho@75
|
192 |
pos = 0; \
|
renatofilho@75
|
193 |
offset += XML_BUFFER_SIZE; \
|
renatofilho@75
|
194 |
data = gst_type_find_peek (tf, offset, XML_BUFFER_SIZE); \
|
renatofilho@75
|
195 |
if (data == NULL) return FALSE; \
|
renatofilho@75
|
196 |
} else { \
|
renatofilho@75
|
197 |
data++; \
|
renatofilho@75
|
198 |
} \
|
renatofilho@75
|
199 |
}
|
renatofilho@75
|
200 |
|
renatofilho@75
|
201 |
static gboolean
|
renatofilho@75
|
202 |
xml_check_first_element (GstTypeFind * tf, const gchar * element, guint elen,
|
renatofilho@75
|
203 |
gboolean strict)
|
renatofilho@75
|
204 |
{
|
renatofilho@75
|
205 |
gboolean got_xmldec;
|
renatofilho@75
|
206 |
guint8 *data;
|
renatofilho@75
|
207 |
guint offset = 0;
|
renatofilho@75
|
208 |
guint pos = 0;
|
renatofilho@75
|
209 |
|
renatofilho@75
|
210 |
data = gst_type_find_peek (tf, 0, XML_BUFFER_SIZE);
|
renatofilho@75
|
211 |
if (!data)
|
renatofilho@75
|
212 |
return FALSE;
|
renatofilho@75
|
213 |
|
renatofilho@75
|
214 |
/* look for the XMLDec
|
renatofilho@75
|
215 |
* see XML spec 2.8, Prolog and Document Type Declaration
|
renatofilho@75
|
216 |
* http://www.w3.org/TR/2004/REC-xml-20040204/#sec-prolog-dtd */
|
renatofilho@75
|
217 |
got_xmldec = (memcmp (data, "<?xml", 5) == 0);
|
renatofilho@75
|
218 |
|
renatofilho@75
|
219 |
if (strict && !got_xmldec)
|
renatofilho@75
|
220 |
return FALSE;
|
renatofilho@75
|
221 |
|
renatofilho@75
|
222 |
/* skip XMLDec in any case if we've got one */
|
renatofilho@75
|
223 |
if (got_xmldec) {
|
renatofilho@75
|
224 |
pos += 5;
|
renatofilho@75
|
225 |
data += 5;
|
renatofilho@75
|
226 |
}
|
renatofilho@75
|
227 |
|
renatofilho@75
|
228 |
/* look for the first element, it has to be the requested element. Bail
|
renatofilho@75
|
229 |
* out if it is not within the first 4kB. */
|
renatofilho@75
|
230 |
while (data && (offset + pos) < 4096) {
|
renatofilho@75
|
231 |
while (*data != '<' && (offset + pos) < 4096) {
|
renatofilho@75
|
232 |
XML_INC_BUFFER;
|
renatofilho@75
|
233 |
}
|
renatofilho@75
|
234 |
|
renatofilho@75
|
235 |
XML_INC_BUFFER;
|
renatofilho@75
|
236 |
if (!g_ascii_isalpha (*data)) {
|
renatofilho@75
|
237 |
/* if not alphabetic, it's a PI or an element / attribute declaration
|
renatofilho@75
|
238 |
* like <?xxx or <!xxx */
|
renatofilho@75
|
239 |
XML_INC_BUFFER;
|
renatofilho@75
|
240 |
continue;
|
renatofilho@75
|
241 |
}
|
renatofilho@75
|
242 |
|
renatofilho@75
|
243 |
/* the first normal element, check if it's the one asked for */
|
renatofilho@75
|
244 |
data = gst_type_find_peek (tf, offset + pos, elen + 1);
|
renatofilho@75
|
245 |
return (data && element && strncmp ((char *) data, element, elen) == 0);
|
renatofilho@75
|
246 |
}
|
renatofilho@75
|
247 |
|
renatofilho@75
|
248 |
return FALSE;
|
renatofilho@75
|
249 |
}
|
renatofilho@75
|
250 |
|
renatofilho@75
|
251 |
static GstStaticCaps generic_xml_caps = GST_STATIC_CAPS ("application/xml");
|
renatofilho@75
|
252 |
|
renatofilho@75
|
253 |
#define GENERIC_XML_CAPS (gst_static_caps_get(&generic_xml_caps))
|
renatofilho@75
|
254 |
static void
|
renatofilho@75
|
255 |
xml_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
256 |
{
|
renatofilho@75
|
257 |
if (xml_check_first_element (tf, "", 0, TRUE)) {
|
renatofilho@75
|
258 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MINIMUM, GENERIC_XML_CAPS);
|
renatofilho@75
|
259 |
}
|
renatofilho@75
|
260 |
}
|
renatofilho@75
|
261 |
|
renatofilho@75
|
262 |
/*** application/smil *********************************************************/
|
renatofilho@75
|
263 |
|
renatofilho@75
|
264 |
static GstStaticCaps smil_caps = GST_STATIC_CAPS ("application/smil");
|
renatofilho@75
|
265 |
|
renatofilho@75
|
266 |
#define SMIL_CAPS (gst_static_caps_get(&smil_caps))
|
renatofilho@75
|
267 |
static void
|
renatofilho@75
|
268 |
smil_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
269 |
{
|
renatofilho@75
|
270 |
if (xml_check_first_element (tf, "smil", 4, FALSE)) {
|
renatofilho@75
|
271 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SMIL_CAPS);
|
renatofilho@75
|
272 |
}
|
renatofilho@75
|
273 |
}
|
renatofilho@75
|
274 |
|
renatofilho@75
|
275 |
/*** text/html ***/
|
renatofilho@75
|
276 |
|
renatofilho@75
|
277 |
static GstStaticCaps html_caps = GST_STATIC_CAPS ("text/html");
|
renatofilho@75
|
278 |
|
renatofilho@75
|
279 |
#define HTML_CAPS gst_static_caps_get (&html_caps)
|
renatofilho@75
|
280 |
|
renatofilho@75
|
281 |
static void
|
renatofilho@75
|
282 |
html_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
283 |
{
|
renatofilho@75
|
284 |
gchar *d, *data;
|
renatofilho@75
|
285 |
|
renatofilho@75
|
286 |
data = (gchar *) gst_type_find_peek (tf, 0, 16);
|
renatofilho@75
|
287 |
if (!data)
|
renatofilho@75
|
288 |
return;
|
renatofilho@75
|
289 |
|
renatofilho@75
|
290 |
if (!g_ascii_strncasecmp (data, "<!DOCTYPE HTML", 14)) {
|
renatofilho@75
|
291 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, HTML_CAPS);
|
renatofilho@75
|
292 |
} else if (xml_check_first_element (tf, "html", 4, FALSE)) {
|
renatofilho@75
|
293 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, HTML_CAPS);
|
renatofilho@75
|
294 |
} else if ((d = memchr (data, '<', 16))) {
|
renatofilho@75
|
295 |
data = (gchar *) gst_type_find_peek (tf, d - data, 6);
|
renatofilho@75
|
296 |
if (data && g_ascii_strncasecmp (data, "<html>", 6) == 0) {
|
renatofilho@75
|
297 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, HTML_CAPS);
|
renatofilho@75
|
298 |
}
|
renatofilho@75
|
299 |
}
|
renatofilho@75
|
300 |
}
|
renatofilho@75
|
301 |
|
renatofilho@75
|
302 |
/*** video/x-fli ***/
|
renatofilho@75
|
303 |
|
renatofilho@75
|
304 |
static GstStaticCaps flx_caps = GST_STATIC_CAPS ("video/x-fli");
|
renatofilho@75
|
305 |
|
renatofilho@75
|
306 |
#define FLX_CAPS gst_static_caps_get(&flx_caps)
|
renatofilho@75
|
307 |
static void
|
renatofilho@75
|
308 |
flx_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
309 |
{
|
renatofilho@75
|
310 |
guint8 *data = gst_type_find_peek (tf, 0, 134);
|
renatofilho@75
|
311 |
|
renatofilho@75
|
312 |
if (data) {
|
renatofilho@75
|
313 |
/* check magic and the frame type of the first frame */
|
renatofilho@75
|
314 |
if ((data[4] == 0x11 || data[4] == 0x12 ||
|
renatofilho@75
|
315 |
data[4] == 0x30 || data[4] == 0x44) &&
|
renatofilho@75
|
316 |
data[5] == 0xaf &&
|
renatofilho@75
|
317 |
((data[132] == 0x00 || data[132] == 0xfa) && data[133] == 0xf1)) {
|
renatofilho@75
|
318 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, FLX_CAPS);
|
renatofilho@75
|
319 |
}
|
renatofilho@75
|
320 |
return;
|
renatofilho@75
|
321 |
}
|
renatofilho@75
|
322 |
data = gst_type_find_peek (tf, 0, 6);
|
renatofilho@75
|
323 |
if (data) {
|
renatofilho@75
|
324 |
/* check magic only */
|
renatofilho@75
|
325 |
if ((data[4] == 0x11 || data[4] == 0x12 ||
|
renatofilho@75
|
326 |
data[4] == 0x30 || data[4] == 0x44) && data[5] == 0xaf) {
|
renatofilho@75
|
327 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, FLX_CAPS);
|
renatofilho@75
|
328 |
}
|
renatofilho@75
|
329 |
return;
|
renatofilho@75
|
330 |
}
|
renatofilho@75
|
331 |
}
|
renatofilho@75
|
332 |
|
renatofilho@75
|
333 |
/*** application/x-id3 ***/
|
renatofilho@75
|
334 |
|
renatofilho@75
|
335 |
static GstStaticCaps id3_caps = GST_STATIC_CAPS ("application/x-id3");
|
renatofilho@75
|
336 |
|
renatofilho@75
|
337 |
#define ID3_CAPS gst_static_caps_get(&id3_caps)
|
renatofilho@75
|
338 |
static void
|
renatofilho@75
|
339 |
id3v2_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
340 |
{
|
renatofilho@75
|
341 |
guint8 *data = gst_type_find_peek (tf, 0, 10);
|
renatofilho@75
|
342 |
|
renatofilho@75
|
343 |
if (data && memcmp (data, "ID3", 3) == 0 &&
|
renatofilho@75
|
344 |
data[3] != 0xFF && data[4] != 0xFF &&
|
renatofilho@75
|
345 |
(data[6] & 0x80) == 0 && (data[7] & 0x80) == 0 &&
|
renatofilho@75
|
346 |
(data[8] & 0x80) == 0 && (data[9] & 0x80) == 0) {
|
renatofilho@75
|
347 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, ID3_CAPS);
|
renatofilho@75
|
348 |
}
|
renatofilho@75
|
349 |
}
|
renatofilho@75
|
350 |
|
renatofilho@75
|
351 |
static void
|
renatofilho@75
|
352 |
id3v1_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
353 |
{
|
renatofilho@75
|
354 |
guint8 *data = gst_type_find_peek (tf, -128, 3);
|
renatofilho@75
|
355 |
|
renatofilho@75
|
356 |
if (data && memcmp (data, "TAG", 3) == 0) {
|
renatofilho@75
|
357 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, ID3_CAPS);
|
renatofilho@75
|
358 |
}
|
renatofilho@75
|
359 |
}
|
renatofilho@75
|
360 |
|
renatofilho@75
|
361 |
/*** application/x-ape ***/
|
renatofilho@75
|
362 |
|
renatofilho@75
|
363 |
static GstStaticCaps apetag_caps = GST_STATIC_CAPS ("application/x-apetag");
|
renatofilho@75
|
364 |
|
renatofilho@75
|
365 |
#define APETAG_CAPS gst_static_caps_get(&apetag_caps)
|
renatofilho@75
|
366 |
static void
|
renatofilho@75
|
367 |
apetag_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
368 |
{
|
renatofilho@75
|
369 |
guint8 *data;
|
renatofilho@75
|
370 |
|
renatofilho@75
|
371 |
/* APEv1/2 at start of file */
|
renatofilho@75
|
372 |
data = gst_type_find_peek (tf, 0, 8);
|
renatofilho@75
|
373 |
if (data && !memcmp (data, "APETAGEX", 8)) {
|
renatofilho@75
|
374 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, APETAG_CAPS);
|
renatofilho@75
|
375 |
return;
|
renatofilho@75
|
376 |
}
|
renatofilho@75
|
377 |
|
renatofilho@75
|
378 |
/* APEv1/2 at end of file */
|
renatofilho@75
|
379 |
data = gst_type_find_peek (tf, -32, 8);
|
renatofilho@75
|
380 |
if (data && !memcmp (data, "APETAGEX", 8)) {
|
renatofilho@75
|
381 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, APETAG_CAPS);
|
renatofilho@75
|
382 |
return;
|
renatofilho@75
|
383 |
}
|
renatofilho@75
|
384 |
}
|
renatofilho@75
|
385 |
|
renatofilho@75
|
386 |
/*** audio/x-ttafile ***/
|
renatofilho@75
|
387 |
|
renatofilho@75
|
388 |
static GstStaticCaps tta_caps = GST_STATIC_CAPS ("audio/x-ttafile");
|
renatofilho@75
|
389 |
|
renatofilho@75
|
390 |
#define TTA_CAPS gst_static_caps_get(&tta_caps)
|
renatofilho@75
|
391 |
static void
|
renatofilho@75
|
392 |
tta_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
393 |
{
|
renatofilho@75
|
394 |
guint8 *data = gst_type_find_peek (tf, 0, 3);
|
renatofilho@75
|
395 |
|
renatofilho@75
|
396 |
if (data) {
|
renatofilho@75
|
397 |
if (memcmp (data, "TTA", 3) == 0) {
|
renatofilho@75
|
398 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, TTA_CAPS);
|
renatofilho@75
|
399 |
return;
|
renatofilho@75
|
400 |
}
|
renatofilho@75
|
401 |
}
|
renatofilho@75
|
402 |
}
|
renatofilho@75
|
403 |
|
renatofilho@75
|
404 |
/*** audio/mpeg version 2, 4 ***/
|
renatofilho@75
|
405 |
|
renatofilho@75
|
406 |
static GstStaticCaps aac_caps = GST_STATIC_CAPS ("audio/mpeg, "
|
renatofilho@75
|
407 |
"mpegversion = (int) { 2, 4 }, framed = (bool) false");
|
renatofilho@75
|
408 |
#define AAC_CAPS (gst_static_caps_get(&aac_caps))
|
renatofilho@75
|
409 |
#define AAC_AMOUNT (4096)
|
renatofilho@75
|
410 |
static void
|
renatofilho@75
|
411 |
aac_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
412 |
{
|
renatofilho@75
|
413 |
guint8 *data = gst_type_find_peek (tf, 0, AAC_AMOUNT);
|
renatofilho@75
|
414 |
gint snc;
|
renatofilho@75
|
415 |
|
renatofilho@75
|
416 |
/* detect adts header or adif header.
|
renatofilho@75
|
417 |
* The ADIF header is 4 bytes, that should be OK. The ADTS header, on
|
renatofilho@75
|
418 |
* the other hand, is 14 bits only, so we require one valid frame with
|
renatofilho@75
|
419 |
* again a valid syncpoint on the next one (28 bits) for certainty. We
|
renatofilho@75
|
420 |
* require 4 kB, which is quite a lot, since frames are generally 200-400
|
renatofilho@75
|
421 |
* bytes.
|
renatofilho@75
|
422 |
*/
|
renatofilho@75
|
423 |
if (data) {
|
renatofilho@75
|
424 |
gint n;
|
renatofilho@75
|
425 |
|
renatofilho@75
|
426 |
for (n = 0; n < AAC_AMOUNT - 3; n++) {
|
renatofilho@75
|
427 |
snc = GST_READ_UINT16_BE (&data[n]);
|
renatofilho@75
|
428 |
if ((snc & 0xfff6) == 0xfff0) {
|
renatofilho@75
|
429 |
/* ADTS header - find frame length */
|
renatofilho@75
|
430 |
gint len;
|
renatofilho@75
|
431 |
|
renatofilho@75
|
432 |
GST_DEBUG ("Found one ADTS syncpoint at offset 0x%x, tracing next...",
|
renatofilho@75
|
433 |
n);
|
renatofilho@75
|
434 |
if (AAC_AMOUNT - n < 5) {
|
renatofilho@75
|
435 |
GST_DEBUG ("Not enough data to parse ADTS header");
|
renatofilho@75
|
436 |
break;
|
renatofilho@75
|
437 |
}
|
renatofilho@75
|
438 |
len = ((data[n + 3] & 0x03) << 11) |
|
renatofilho@75
|
439 |
(data[n + 4] << 3) | ((data[n + 5] & 0xe0) >> 5);
|
renatofilho@75
|
440 |
if (n + len + 2 >= AAC_AMOUNT) {
|
renatofilho@75
|
441 |
GST_DEBUG ("Next frame is not within reach");
|
renatofilho@75
|
442 |
break;
|
renatofilho@75
|
443 |
} else if (len == 0) {
|
renatofilho@75
|
444 |
continue;
|
renatofilho@75
|
445 |
}
|
renatofilho@75
|
446 |
|
renatofilho@75
|
447 |
snc = GST_READ_UINT16_BE (&data[n + len]);
|
renatofilho@75
|
448 |
if ((snc & 0xfff6) == 0xfff0) {
|
renatofilho@75
|
449 |
gint mpegversion = (data[n + 1] & 0x08) ? 2 : 4;
|
renatofilho@75
|
450 |
GstCaps *caps = gst_caps_new_simple ("audio/mpeg",
|
renatofilho@75
|
451 |
"framed", G_TYPE_BOOLEAN, FALSE,
|
renatofilho@75
|
452 |
"mpegversion", G_TYPE_INT, mpegversion,
|
renatofilho@75
|
453 |
NULL);
|
renatofilho@75
|
454 |
|
renatofilho@75
|
455 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, caps);
|
renatofilho@75
|
456 |
gst_caps_unref (caps);
|
renatofilho@75
|
457 |
|
renatofilho@75
|
458 |
GST_DEBUG ("Found ADTS-%d syncpoint at offset 0x%x (framelen %u)",
|
renatofilho@75
|
459 |
mpegversion, n, len);
|
renatofilho@75
|
460 |
break;
|
renatofilho@75
|
461 |
}
|
renatofilho@75
|
462 |
|
renatofilho@75
|
463 |
GST_DEBUG ("No next frame found... (should be at 0x%x)", n + len);
|
renatofilho@75
|
464 |
} else if (!memcmp (&data[n], "ADIF", 4)) {
|
renatofilho@75
|
465 |
/* ADIF header */
|
renatofilho@75
|
466 |
GstCaps *caps = gst_caps_new_simple ("audio/mpeg",
|
renatofilho@75
|
467 |
"framed", G_TYPE_BOOLEAN, FALSE,
|
renatofilho@75
|
468 |
"mpegversion", G_TYPE_INT, 4,
|
renatofilho@75
|
469 |
NULL);
|
renatofilho@75
|
470 |
|
renatofilho@75
|
471 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, caps);
|
renatofilho@75
|
472 |
gst_caps_unref (caps);
|
renatofilho@75
|
473 |
}
|
renatofilho@75
|
474 |
}
|
renatofilho@75
|
475 |
}
|
renatofilho@75
|
476 |
}
|
renatofilho@75
|
477 |
|
renatofilho@75
|
478 |
/*** audio/mpeg version 1 ***/
|
renatofilho@75
|
479 |
|
renatofilho@75
|
480 |
/*
|
renatofilho@75
|
481 |
* The chance that random data is identified as a valid mp3 header is 63 / 2^18
|
renatofilho@75
|
482 |
* (0.024%) per try. This makes the function for calculating false positives
|
renatofilho@75
|
483 |
* 1 - (1 - ((63 / 2 ^18) ^ GST_MP3_TYPEFIND_MIN_HEADERS)) ^ buffersize)
|
renatofilho@75
|
484 |
* This has the following probabilities of false positives:
|
renatofilho@75
|
485 |
* datasize MIN_HEADERS
|
renatofilho@75
|
486 |
* (bytes) 1 2 3 4
|
renatofilho@75
|
487 |
* 4096 62.6% 0.02% 0% 0%
|
renatofilho@75
|
488 |
* 16384 98% 0.09% 0% 0%
|
renatofilho@75
|
489 |
* 1 MiB 100% 5.88% 0% 0%
|
renatofilho@75
|
490 |
* 1 GiB 100% 100% 1.44% 0%
|
renatofilho@75
|
491 |
* 1 TiB 100% 100% 100% 0.35%
|
renatofilho@75
|
492 |
* This means that the current choice (3 headers by most of the time 4096 byte
|
renatofilho@75
|
493 |
* buffers is pretty safe for now.
|
renatofilho@75
|
494 |
*
|
renatofilho@75
|
495 |
* The max. size of each frame is 1440 bytes, which means that for N frames to
|
renatofilho@75
|
496 |
* be detected, we need 1440 * GST_MP3_TYPEFIND_MIN_HEADERS + 3 bytes of data.
|
renatofilho@75
|
497 |
* Assuming we step into the stream right after the frame header, this
|
renatofilho@75
|
498 |
* means we need 1440 * (GST_MP3_TYPEFIND_MIN_HEADERS + 1) - 1 + 3 bytes
|
renatofilho@75
|
499 |
* of data (5762) to always detect any mp3.
|
renatofilho@75
|
500 |
*/
|
renatofilho@75
|
501 |
|
renatofilho@75
|
502 |
static const guint mp3types_bitrates[2][3][16] =
|
renatofilho@75
|
503 |
{ {{0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448,},
|
renatofilho@75
|
504 |
{0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384,},
|
renatofilho@75
|
505 |
{0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320,}},
|
renatofilho@75
|
506 |
{{0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256,},
|
renatofilho@75
|
507 |
{0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160,},
|
renatofilho@75
|
508 |
{0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160,}},
|
renatofilho@75
|
509 |
};
|
renatofilho@75
|
510 |
|
renatofilho@75
|
511 |
static const guint mp3types_freqs[3][3] = { {11025, 12000, 8000},
|
renatofilho@75
|
512 |
{22050, 24000, 16000},
|
renatofilho@75
|
513 |
{44100, 48000, 32000}
|
renatofilho@75
|
514 |
};
|
renatofilho@75
|
515 |
|
renatofilho@75
|
516 |
static inline guint
|
renatofilho@75
|
517 |
mp3_type_frame_length_from_header (guint32 header, guint * put_layer,
|
renatofilho@75
|
518 |
guint * put_channels, guint * put_bitrate, guint * put_samplerate,
|
renatofilho@75
|
519 |
gboolean * may_be_free_format, gint possible_free_framelen)
|
renatofilho@75
|
520 |
{
|
renatofilho@75
|
521 |
guint bitrate, layer, length, mode, samplerate, version, channels;
|
renatofilho@75
|
522 |
|
renatofilho@75
|
523 |
if ((header & 0xffe00000) != 0xffe00000)
|
renatofilho@75
|
524 |
return 0;
|
renatofilho@75
|
525 |
|
renatofilho@75
|
526 |
/* we don't need extension, copyright, original or
|
renatofilho@75
|
527 |
* emphasis for the frame length */
|
renatofilho@75
|
528 |
header >>= 6;
|
renatofilho@75
|
529 |
|
renatofilho@75
|
530 |
/* mode */
|
renatofilho@75
|
531 |
mode = header & 0x3;
|
renatofilho@75
|
532 |
header >>= 3;
|
renatofilho@75
|
533 |
|
renatofilho@75
|
534 |
/* padding */
|
renatofilho@75
|
535 |
length = header & 0x1;
|
renatofilho@75
|
536 |
header >>= 1;
|
renatofilho@75
|
537 |
|
renatofilho@75
|
538 |
/* sampling frequency */
|
renatofilho@75
|
539 |
samplerate = header & 0x3;
|
renatofilho@75
|
540 |
if (samplerate == 3)
|
renatofilho@75
|
541 |
return 0;
|
renatofilho@75
|
542 |
header >>= 2;
|
renatofilho@75
|
543 |
|
renatofilho@75
|
544 |
/* bitrate index */
|
renatofilho@75
|
545 |
bitrate = header & 0xF;
|
renatofilho@75
|
546 |
if (bitrate == 0 && possible_free_framelen == -1) {
|
renatofilho@75
|
547 |
GST_LOG ("Possibly a free format mp3 - signalling");
|
renatofilho@75
|
548 |
*may_be_free_format = TRUE;
|
renatofilho@75
|
549 |
}
|
renatofilho@75
|
550 |
if (bitrate == 15 || (bitrate == 0 && possible_free_framelen == -1))
|
renatofilho@75
|
551 |
return 0;
|
renatofilho@75
|
552 |
|
renatofilho@75
|
553 |
/* ignore error correction, too */
|
renatofilho@75
|
554 |
header >>= 5;
|
renatofilho@75
|
555 |
|
renatofilho@75
|
556 |
/* layer */
|
renatofilho@75
|
557 |
layer = 4 - (header & 0x3);
|
renatofilho@75
|
558 |
if (layer == 4)
|
renatofilho@75
|
559 |
return 0;
|
renatofilho@75
|
560 |
header >>= 2;
|
renatofilho@75
|
561 |
|
renatofilho@75
|
562 |
/* version 0=MPEG2.5; 2=MPEG2; 3=MPEG1 */
|
renatofilho@75
|
563 |
version = header & 0x3;
|
renatofilho@75
|
564 |
if (version == 1)
|
renatofilho@75
|
565 |
return 0;
|
renatofilho@75
|
566 |
|
renatofilho@75
|
567 |
/* lookup */
|
renatofilho@75
|
568 |
channels = (mode == 3) ? 1 : 2;
|
renatofilho@75
|
569 |
samplerate = mp3types_freqs[version > 0 ? version - 1 : 0][samplerate];
|
renatofilho@75
|
570 |
if (bitrate == 0) {
|
renatofilho@75
|
571 |
if (layer == 1) {
|
renatofilho@75
|
572 |
length *= 4;
|
renatofilho@75
|
573 |
length += possible_free_framelen;
|
renatofilho@75
|
574 |
bitrate = length * samplerate / 48000;
|
renatofilho@75
|
575 |
} else {
|
renatofilho@75
|
576 |
length += possible_free_framelen;
|
renatofilho@75
|
577 |
bitrate = length * samplerate /
|
renatofilho@75
|
578 |
((layer == 3 && version != 3) ? 72000 : 144000);
|
renatofilho@75
|
579 |
}
|
renatofilho@75
|
580 |
} else {
|
renatofilho@75
|
581 |
/* calculating */
|
renatofilho@75
|
582 |
bitrate = mp3types_bitrates[version == 3 ? 0 : 1][layer - 1][bitrate];
|
renatofilho@75
|
583 |
if (layer == 1) {
|
renatofilho@75
|
584 |
length = ((12000 * bitrate / samplerate) + length) * 4;
|
renatofilho@75
|
585 |
} else {
|
renatofilho@75
|
586 |
length += ((layer == 3
|
renatofilho@75
|
587 |
&& version != 3) ? 72000 : 144000) * bitrate / samplerate;
|
renatofilho@75
|
588 |
}
|
renatofilho@75
|
589 |
}
|
renatofilho@75
|
590 |
|
renatofilho@75
|
591 |
GST_LOG ("mp3typefind: calculated mp3 frame length of %u bytes", length);
|
renatofilho@75
|
592 |
GST_LOG
|
renatofilho@75
|
593 |
("mp3typefind: samplerate = %u - bitrate = %u - layer = %u - version = %u"
|
renatofilho@75
|
594 |
" - channels = %u", samplerate, bitrate, layer, version, channels);
|
renatofilho@75
|
595 |
|
renatofilho@75
|
596 |
if (put_layer)
|
renatofilho@75
|
597 |
*put_layer = layer;
|
renatofilho@75
|
598 |
if (put_channels)
|
renatofilho@75
|
599 |
*put_channels = channels;
|
renatofilho@75
|
600 |
if (put_bitrate)
|
renatofilho@75
|
601 |
*put_bitrate = bitrate;
|
renatofilho@75
|
602 |
if (put_samplerate)
|
renatofilho@75
|
603 |
*put_samplerate = samplerate;
|
renatofilho@75
|
604 |
|
renatofilho@75
|
605 |
return length;
|
renatofilho@75
|
606 |
}
|
renatofilho@75
|
607 |
|
renatofilho@75
|
608 |
|
renatofilho@75
|
609 |
static GstStaticCaps mp3_caps = GST_STATIC_CAPS ("audio/mpeg, "
|
renatofilho@75
|
610 |
"mpegversion = (int) 1, layer = (int) [ 1, 3 ]");
|
renatofilho@75
|
611 |
#define MP3_CAPS (gst_static_caps_get(&mp3_caps))
|
renatofilho@75
|
612 |
/*
|
renatofilho@75
|
613 |
* random values for typefinding
|
renatofilho@75
|
614 |
* if no more data is available, we will return a probability of
|
renatofilho@75
|
615 |
* (found_headers/TRY_HEADERS) * (MAXIMUM * (TRY_SYNC - bytes_skipped)
|
renatofilho@75
|
616 |
* / TRY_SYNC)
|
renatofilho@75
|
617 |
* if found_headers >= MIN_HEADERS
|
renatofilho@75
|
618 |
*/
|
renatofilho@75
|
619 |
#define GST_MP3_TYPEFIND_MIN_HEADERS (2)
|
renatofilho@75
|
620 |
#define GST_MP3_TYPEFIND_TRY_HEADERS (5)
|
renatofilho@75
|
621 |
#define GST_MP3_TYPEFIND_TRY_SYNC (GST_TYPE_FIND_MAXIMUM * 100) /* 10kB */
|
renatofilho@75
|
622 |
#define GST_MP3_TYPEFIND_SYNC_SIZE (2048)
|
renatofilho@75
|
623 |
#define GST_MP3_WRONG_HEADER (10)
|
renatofilho@75
|
624 |
|
renatofilho@75
|
625 |
static void
|
renatofilho@75
|
626 |
mp3_type_find_at_offset (GstTypeFind * tf, guint64 start_off,
|
renatofilho@75
|
627 |
guint * found_layer, GstTypeFindProbability * found_prob)
|
renatofilho@75
|
628 |
{
|
renatofilho@75
|
629 |
guint8 *data = NULL;
|
renatofilho@75
|
630 |
guint8 *data_end = NULL;
|
renatofilho@75
|
631 |
guint size;
|
renatofilho@75
|
632 |
guint64 skipped;
|
renatofilho@75
|
633 |
gint last_free_offset = -1;
|
renatofilho@75
|
634 |
gint last_free_framelen = -1;
|
renatofilho@75
|
635 |
gboolean headerstart = TRUE;
|
renatofilho@75
|
636 |
|
renatofilho@75
|
637 |
*found_layer = 0;
|
renatofilho@75
|
638 |
*found_prob = 0;
|
renatofilho@75
|
639 |
|
renatofilho@75
|
640 |
size = 0;
|
renatofilho@75
|
641 |
skipped = 0;
|
renatofilho@75
|
642 |
while (skipped < GST_MP3_TYPEFIND_TRY_SYNC) {
|
renatofilho@75
|
643 |
if (size <= 0) {
|
renatofilho@75
|
644 |
size = GST_MP3_TYPEFIND_SYNC_SIZE * 2;
|
renatofilho@75
|
645 |
do {
|
renatofilho@75
|
646 |
size /= 2;
|
renatofilho@75
|
647 |
data = gst_type_find_peek (tf, skipped + start_off, size);
|
renatofilho@75
|
648 |
} while (size > 10 && !data);
|
renatofilho@75
|
649 |
if (!data)
|
renatofilho@75
|
650 |
break;
|
renatofilho@75
|
651 |
data_end = data + size;
|
renatofilho@75
|
652 |
}
|
renatofilho@75
|
653 |
if (*data == 0xFF) {
|
renatofilho@75
|
654 |
guint8 *head_data = NULL;
|
renatofilho@75
|
655 |
guint layer = 0, bitrate, samplerate, channels;
|
renatofilho@75
|
656 |
guint found = 0; /* number of valid headers found */
|
renatofilho@75
|
657 |
guint64 offset = skipped;
|
renatofilho@75
|
658 |
|
renatofilho@75
|
659 |
while (found < GST_MP3_TYPEFIND_TRY_HEADERS) {
|
renatofilho@75
|
660 |
guint32 head;
|
renatofilho@75
|
661 |
guint length;
|
renatofilho@75
|
662 |
guint prev_layer = 0, prev_bitrate = 0;
|
renatofilho@75
|
663 |
guint prev_channels = 0, prev_samplerate = 0;
|
renatofilho@75
|
664 |
gboolean free = FALSE;
|
renatofilho@75
|
665 |
|
renatofilho@75
|
666 |
if ((gint64) (offset - skipped + 4) >= 0 &&
|
renatofilho@75
|
667 |
data + offset - skipped + 4 < data_end) {
|
renatofilho@75
|
668 |
head_data = data + offset - skipped;
|
renatofilho@75
|
669 |
} else {
|
renatofilho@75
|
670 |
head_data = gst_type_find_peek (tf, offset + start_off, 4);
|
renatofilho@75
|
671 |
}
|
renatofilho@75
|
672 |
if (!head_data)
|
renatofilho@75
|
673 |
break;
|
renatofilho@75
|
674 |
head = GST_READ_UINT32_BE (head_data);
|
renatofilho@75
|
675 |
if (!(length = mp3_type_frame_length_from_header (head, &layer,
|
renatofilho@75
|
676 |
&channels, &bitrate, &samplerate, &free,
|
renatofilho@75
|
677 |
last_free_framelen))) {
|
renatofilho@75
|
678 |
if (free) {
|
renatofilho@75
|
679 |
if (last_free_offset == -1)
|
renatofilho@75
|
680 |
last_free_offset = offset;
|
renatofilho@75
|
681 |
else {
|
renatofilho@75
|
682 |
last_free_framelen = offset - last_free_offset;
|
renatofilho@75
|
683 |
offset = last_free_offset;
|
renatofilho@75
|
684 |
continue;
|
renatofilho@75
|
685 |
}
|
renatofilho@75
|
686 |
} else {
|
renatofilho@75
|
687 |
last_free_framelen = -1;
|
renatofilho@75
|
688 |
}
|
renatofilho@75
|
689 |
|
renatofilho@75
|
690 |
/* Mark the fact that we didn't find a valid header at the beginning */
|
renatofilho@75
|
691 |
if (found == 0)
|
renatofilho@75
|
692 |
headerstart = FALSE;
|
renatofilho@75
|
693 |
|
renatofilho@75
|
694 |
GST_LOG ("%d. header at offset %" G_GUINT64_FORMAT
|
renatofilho@75
|
695 |
" (0x%" G_GINT64_MODIFIER "x) was not an mp3 header "
|
renatofilho@75
|
696 |
"(possibly-free: %s)", found + 1, start_off + offset,
|
renatofilho@75
|
697 |
start_off + offset, free ? "yes" : "no");
|
renatofilho@75
|
698 |
break;
|
renatofilho@75
|
699 |
}
|
renatofilho@75
|
700 |
if ((prev_layer && prev_layer != layer) ||
|
renatofilho@75
|
701 |
/* (prev_bitrate && prev_bitrate != bitrate) || <-- VBR */
|
renatofilho@75
|
702 |
(prev_samplerate && prev_samplerate != samplerate) ||
|
renatofilho@75
|
703 |
(prev_channels && prev_channels != channels)) {
|
renatofilho@75
|
704 |
/* this means an invalid property, or a change, which might mean
|
renatofilho@75
|
705 |
* that this is not a mp3 but just a random bytestream. It could
|
renatofilho@75
|
706 |
* be a freaking funky encoded mp3 though. We'll just not count
|
renatofilho@75
|
707 |
* this header*/
|
renatofilho@75
|
708 |
prev_layer = layer;
|
renatofilho@75
|
709 |
prev_bitrate = bitrate;
|
renatofilho@75
|
710 |
prev_channels = channels;
|
renatofilho@75
|
711 |
prev_samplerate = samplerate;
|
renatofilho@75
|
712 |
} else {
|
renatofilho@75
|
713 |
found++;
|
renatofilho@75
|
714 |
GST_LOG ("found %d. header at offset %" G_GUINT64_FORMAT " (0x%"
|
renatofilho@75
|
715 |
G_GINT64_MODIFIER "X)", found, start_off + offset,
|
renatofilho@75
|
716 |
start_off + offset);
|
renatofilho@75
|
717 |
}
|
renatofilho@75
|
718 |
offset += length;
|
renatofilho@75
|
719 |
}
|
renatofilho@75
|
720 |
g_assert (found <= GST_MP3_TYPEFIND_TRY_HEADERS);
|
renatofilho@75
|
721 |
if (found == GST_MP3_TYPEFIND_TRY_HEADERS ||
|
renatofilho@75
|
722 |
(found >= GST_MP3_TYPEFIND_MIN_HEADERS && head_data == NULL)) {
|
renatofilho@75
|
723 |
/* we can make a valid guess */
|
renatofilho@75
|
724 |
guint probability = found * GST_TYPE_FIND_MAXIMUM *
|
renatofilho@75
|
725 |
(GST_MP3_TYPEFIND_TRY_SYNC - skipped) /
|
renatofilho@75
|
726 |
GST_MP3_TYPEFIND_TRY_HEADERS / GST_MP3_TYPEFIND_TRY_SYNC;
|
renatofilho@75
|
727 |
|
renatofilho@75
|
728 |
if (!headerstart
|
renatofilho@75
|
729 |
&& ((probability - GST_MP3_WRONG_HEADER) > GST_TYPE_FIND_MINIMUM))
|
renatofilho@75
|
730 |
probability -= GST_MP3_WRONG_HEADER;
|
renatofilho@75
|
731 |
if (probability < GST_TYPE_FIND_MINIMUM)
|
renatofilho@75
|
732 |
probability = GST_TYPE_FIND_MINIMUM;
|
renatofilho@75
|
733 |
if (start_off > 0)
|
renatofilho@75
|
734 |
probability /= 2;
|
renatofilho@75
|
735 |
|
renatofilho@75
|
736 |
GST_INFO
|
renatofilho@75
|
737 |
("audio/mpeg calculated %u = %u * %u / %u * (%u - %"
|
renatofilho@75
|
738 |
G_GUINT64_FORMAT ") / %u", probability, GST_TYPE_FIND_MAXIMUM,
|
renatofilho@75
|
739 |
found, GST_MP3_TYPEFIND_TRY_HEADERS, GST_MP3_TYPEFIND_TRY_SYNC,
|
renatofilho@75
|
740 |
(guint64) skipped, GST_MP3_TYPEFIND_TRY_SYNC);
|
renatofilho@75
|
741 |
/* make sure we're not id3 tagged */
|
renatofilho@75
|
742 |
head_data = gst_type_find_peek (tf, -128, 3);
|
renatofilho@75
|
743 |
if (head_data && (memcmp (head_data, "TAG", 3) == 0)) {
|
renatofilho@75
|
744 |
probability = 0;
|
renatofilho@75
|
745 |
}
|
renatofilho@75
|
746 |
g_assert (probability <= GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
747 |
|
renatofilho@75
|
748 |
*found_prob = probability;
|
renatofilho@75
|
749 |
if (probability > 0)
|
renatofilho@75
|
750 |
*found_layer = layer;
|
renatofilho@75
|
751 |
return;
|
renatofilho@75
|
752 |
}
|
renatofilho@75
|
753 |
}
|
renatofilho@75
|
754 |
data++;
|
renatofilho@75
|
755 |
skipped++;
|
renatofilho@75
|
756 |
size--;
|
renatofilho@75
|
757 |
}
|
renatofilho@75
|
758 |
}
|
renatofilho@75
|
759 |
|
renatofilho@75
|
760 |
static void
|
renatofilho@75
|
761 |
mp3_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
762 |
{
|
renatofilho@75
|
763 |
GstTypeFindProbability prob, mid_prob;
|
renatofilho@75
|
764 |
guint8 *data;
|
renatofilho@75
|
765 |
guint layer, mid_layer;
|
renatofilho@75
|
766 |
guint64 length;
|
renatofilho@75
|
767 |
|
renatofilho@75
|
768 |
mp3_type_find_at_offset (tf, 0, &layer, &prob);
|
renatofilho@75
|
769 |
length = gst_type_find_get_length (tf);
|
renatofilho@75
|
770 |
|
renatofilho@75
|
771 |
if (length == 0 || length == (guint64) - 1) {
|
renatofilho@75
|
772 |
if (prob != 0)
|
renatofilho@75
|
773 |
goto suggest;
|
renatofilho@75
|
774 |
return;
|
renatofilho@75
|
775 |
}
|
renatofilho@75
|
776 |
|
renatofilho@75
|
777 |
/* if we're pretty certain already, skip the additional check */
|
renatofilho@75
|
778 |
if (prob >= GST_TYPE_FIND_LIKELY)
|
renatofilho@75
|
779 |
goto suggest;
|
renatofilho@75
|
780 |
|
renatofilho@75
|
781 |
mp3_type_find_at_offset (tf, length / 2, &mid_layer, &mid_prob);
|
renatofilho@75
|
782 |
|
renatofilho@75
|
783 |
if (mid_prob > 0) {
|
renatofilho@75
|
784 |
if (prob == 0) {
|
renatofilho@75
|
785 |
GST_LOG ("detected audio/mpeg only in the middle (p=%u)", mid_prob);
|
renatofilho@75
|
786 |
layer = mid_layer;
|
renatofilho@75
|
787 |
prob = mid_prob;
|
renatofilho@75
|
788 |
goto suggest;
|
renatofilho@75
|
789 |
}
|
renatofilho@75
|
790 |
|
renatofilho@75
|
791 |
if (layer != mid_layer) {
|
renatofilho@75
|
792 |
GST_WARNING ("audio/mpeg layer discrepancy: %u vs. %u", layer, mid_layer);
|
renatofilho@75
|
793 |
return; /* FIXME: or should we just go with the one in the middle? */
|
renatofilho@75
|
794 |
}
|
renatofilho@75
|
795 |
|
renatofilho@75
|
796 |
/* detected mpeg audio both in middle of the file and at the start */
|
renatofilho@75
|
797 |
prob = (prob + mid_prob) / 2;
|
renatofilho@75
|
798 |
goto suggest;
|
renatofilho@75
|
799 |
}
|
renatofilho@75
|
800 |
|
renatofilho@75
|
801 |
/* let's see if there's a valid header right at the start */
|
renatofilho@75
|
802 |
data = gst_type_find_peek (tf, 0, 4); /* use min. frame size? */
|
renatofilho@75
|
803 |
if (data && mp3_type_frame_length_from_header (GST_READ_UINT32_BE (data),
|
renatofilho@75
|
804 |
&layer, NULL, NULL, NULL, NULL, 0) != 0) {
|
renatofilho@75
|
805 |
if (prob == 0)
|
renatofilho@75
|
806 |
prob = GST_TYPE_FIND_POSSIBLE - 10;
|
renatofilho@75
|
807 |
else
|
renatofilho@75
|
808 |
prob = MAX (GST_TYPE_FIND_POSSIBLE - 10, prob + 10);
|
renatofilho@75
|
809 |
}
|
renatofilho@75
|
810 |
|
renatofilho@75
|
811 |
if (prob > 0)
|
renatofilho@75
|
812 |
goto suggest;
|
renatofilho@75
|
813 |
|
renatofilho@75
|
814 |
return;
|
renatofilho@75
|
815 |
|
renatofilho@75
|
816 |
suggest:
|
renatofilho@75
|
817 |
{
|
renatofilho@75
|
818 |
GstCaps *caps;
|
renatofilho@75
|
819 |
|
renatofilho@75
|
820 |
g_assert (layer > 0);
|
renatofilho@75
|
821 |
|
renatofilho@75
|
822 |
caps = gst_caps_make_writable (MP3_CAPS);
|
renatofilho@75
|
823 |
gst_structure_set (gst_caps_get_structure (caps, 0), "layer",
|
renatofilho@75
|
824 |
G_TYPE_INT, layer, NULL);
|
renatofilho@75
|
825 |
gst_type_find_suggest (tf, prob, caps);
|
renatofilho@75
|
826 |
gst_caps_unref (caps);
|
renatofilho@75
|
827 |
return;
|
renatofilho@75
|
828 |
}
|
renatofilho@75
|
829 |
}
|
renatofilho@75
|
830 |
|
renatofilho@75
|
831 |
/*** audio/x-musepack ***/
|
renatofilho@75
|
832 |
|
renatofilho@75
|
833 |
static GstStaticCaps musepack_caps = GST_STATIC_CAPS ("audio/x-musepack");
|
renatofilho@75
|
834 |
|
renatofilho@75
|
835 |
#define MUSEPACK_CAPS (gst_static_caps_get(&musepack_caps))
|
renatofilho@75
|
836 |
static void
|
renatofilho@75
|
837 |
musepack_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
838 |
{
|
renatofilho@75
|
839 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
840 |
|
renatofilho@75
|
841 |
if (data && memcmp (data, "MP+", 3) == 0) {
|
renatofilho@75
|
842 |
if ((data[3] & 0x7f) == 7) {
|
renatofilho@75
|
843 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MUSEPACK_CAPS);
|
renatofilho@75
|
844 |
} else {
|
renatofilho@75
|
845 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY + 10, MUSEPACK_CAPS);
|
renatofilho@75
|
846 |
}
|
renatofilho@75
|
847 |
}
|
renatofilho@75
|
848 |
}
|
renatofilho@75
|
849 |
|
renatofilho@75
|
850 |
/*** audio/x-ac3 ***/
|
renatofilho@75
|
851 |
static GstStaticCaps ac3_caps = GST_STATIC_CAPS ("audio/x-ac3");
|
renatofilho@75
|
852 |
|
renatofilho@75
|
853 |
#define AC3_CAPS (gst_static_caps_get(&ac3_caps))
|
renatofilho@75
|
854 |
|
renatofilho@75
|
855 |
static void
|
renatofilho@75
|
856 |
ac3_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
857 |
{
|
renatofilho@75
|
858 |
guint8 *data = gst_type_find_peek (tf, 0, 2);
|
renatofilho@75
|
859 |
|
renatofilho@75
|
860 |
if (data) {
|
renatofilho@75
|
861 |
/* pretty lame method... */
|
renatofilho@75
|
862 |
if (data[0] == 0x0b && data[1] == 0x77) {
|
renatofilho@75
|
863 |
gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, AC3_CAPS);
|
renatofilho@75
|
864 |
return;
|
renatofilho@75
|
865 |
}
|
renatofilho@75
|
866 |
}
|
renatofilho@75
|
867 |
}
|
renatofilho@75
|
868 |
|
renatofilho@75
|
869 |
/*** wavpack ***/
|
renatofilho@75
|
870 |
|
renatofilho@75
|
871 |
static GstStaticCaps wavpack_caps =
|
renatofilho@75
|
872 |
GST_STATIC_CAPS ("audio/x-wavpack, framed = (boolean) false");
|
renatofilho@75
|
873 |
|
renatofilho@75
|
874 |
#define WAVPACK_CAPS (gst_static_caps_get(&wavpack_caps))
|
renatofilho@75
|
875 |
|
renatofilho@75
|
876 |
static GstStaticCaps wavpack_correction_caps =
|
renatofilho@75
|
877 |
GST_STATIC_CAPS ("audio/x-wavpack-correction, framed = (boolean) false");
|
renatofilho@75
|
878 |
|
renatofilho@75
|
879 |
#define WAVPACK_CORRECTION_CAPS (gst_static_caps_get(&wavpack_correction_caps))
|
renatofilho@75
|
880 |
|
renatofilho@75
|
881 |
static void
|
renatofilho@75
|
882 |
wavpack_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
883 |
{
|
renatofilho@75
|
884 |
guint64 offset;
|
renatofilho@75
|
885 |
guint32 blocksize;
|
renatofilho@75
|
886 |
guint8 *data;
|
renatofilho@75
|
887 |
|
renatofilho@75
|
888 |
data = gst_type_find_peek (tf, 0, 32);
|
renatofilho@75
|
889 |
if (!data)
|
renatofilho@75
|
890 |
return;
|
renatofilho@75
|
891 |
|
renatofilho@75
|
892 |
if (data[0] != 'w' || data[1] != 'v' || data[2] != 'p' || data[3] != 'k')
|
renatofilho@75
|
893 |
return;
|
renatofilho@75
|
894 |
|
renatofilho@75
|
895 |
/* Note: wavpack blocks can be fairly large (easily 60-110k), possibly
|
renatofilho@75
|
896 |
* larger than the max. limits imposed by certain typefinding elements
|
renatofilho@75
|
897 |
* like id3demux or apedemux, so typefinding is most likely only going to
|
renatofilho@75
|
898 |
* work in pull-mode */
|
renatofilho@75
|
899 |
blocksize = GST_READ_UINT32_LE (data + 4);
|
renatofilho@75
|
900 |
GST_LOG ("wavpack header, blocksize=0x%04x", blocksize);
|
renatofilho@75
|
901 |
offset = 32;
|
renatofilho@75
|
902 |
while (offset < 32 + blocksize) {
|
renatofilho@75
|
903 |
guint32 sublen;
|
renatofilho@75
|
904 |
|
renatofilho@75
|
905 |
/* get chunk header */
|
renatofilho@75
|
906 |
GST_LOG ("peeking at chunk at offset 0x%04x", (guint) offset);
|
renatofilho@75
|
907 |
data = gst_type_find_peek (tf, offset, 4);
|
renatofilho@75
|
908 |
if (data == NULL)
|
renatofilho@75
|
909 |
break;
|
renatofilho@75
|
910 |
sublen = ((guint32) data[1]) << 1;
|
renatofilho@75
|
911 |
if (data[0] & 0x80) {
|
renatofilho@75
|
912 |
sublen |= (((guint32) data[2]) << 9) | (((guint32) data[3]) << 17);
|
renatofilho@75
|
913 |
sublen += 1 + 3; /* id + length */
|
renatofilho@75
|
914 |
} else {
|
renatofilho@75
|
915 |
sublen += 1 + 1; /* id + length */
|
renatofilho@75
|
916 |
}
|
renatofilho@75
|
917 |
if (sublen > blocksize - offset + 32) {
|
renatofilho@75
|
918 |
GST_LOG ("chunk length too big (%u > %" G_GUINT64_FORMAT ")", sublen,
|
renatofilho@75
|
919 |
blocksize - offset);
|
renatofilho@75
|
920 |
break;
|
renatofilho@75
|
921 |
}
|
renatofilho@75
|
922 |
if ((data[0] & 0x20) == 0) {
|
renatofilho@75
|
923 |
switch (data[0] & 0x0f) {
|
renatofilho@75
|
924 |
case 0xa: /* ID_WV_BITSTREAM */
|
renatofilho@75
|
925 |
case 0xc: /* ID_WVX_BITSTREAM */
|
renatofilho@75
|
926 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, WAVPACK_CAPS);
|
renatofilho@75
|
927 |
return;
|
renatofilho@75
|
928 |
case 0xb: /* ID_WVC_BITSTREAM */
|
renatofilho@75
|
929 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY,
|
renatofilho@75
|
930 |
WAVPACK_CORRECTION_CAPS);
|
renatofilho@75
|
931 |
return;
|
renatofilho@75
|
932 |
default:
|
renatofilho@75
|
933 |
break;
|
renatofilho@75
|
934 |
}
|
renatofilho@75
|
935 |
}
|
renatofilho@75
|
936 |
offset += sublen;
|
renatofilho@75
|
937 |
}
|
renatofilho@75
|
938 |
}
|
renatofilho@75
|
939 |
|
renatofilho@75
|
940 |
/*** multipart/x-mixed-replace mimestream ***/
|
renatofilho@75
|
941 |
|
renatofilho@75
|
942 |
static GstStaticCaps multipart_caps =
|
renatofilho@75
|
943 |
GST_STATIC_CAPS ("multipart/x-mixed-replace");
|
renatofilho@75
|
944 |
#define MULTIPART_CAPS gst_static_caps_get(&multipart_caps)
|
renatofilho@75
|
945 |
|
renatofilho@75
|
946 |
/* multipart/x-mixed replace is:
|
renatofilho@75
|
947 |
* <maybe some whitespace>--<some ascii chars>[\r]\n
|
renatofilho@75
|
948 |
* <more ascii chars>[\r]\nContent-type:<more ascii>[\r]\n */
|
renatofilho@75
|
949 |
static void
|
renatofilho@75
|
950 |
multipart_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
951 |
{
|
renatofilho@75
|
952 |
guint8 *data;
|
renatofilho@75
|
953 |
guint8 *x;
|
renatofilho@75
|
954 |
|
renatofilho@75
|
955 |
#define MULTIPART_MAX_BOUNDARY_OFFSET 16
|
renatofilho@75
|
956 |
data = gst_type_find_peek (tf, 0, MULTIPART_MAX_BOUNDARY_OFFSET);
|
renatofilho@75
|
957 |
if (!data)
|
renatofilho@75
|
958 |
return;
|
renatofilho@75
|
959 |
|
renatofilho@75
|
960 |
for (x = data;
|
renatofilho@75
|
961 |
x - data < MULTIPART_MAX_BOUNDARY_OFFSET - 2 && g_ascii_isspace (*x);
|
renatofilho@75
|
962 |
x++);
|
renatofilho@75
|
963 |
if (x[0] != '-' || x[1] != '-')
|
renatofilho@75
|
964 |
return;
|
renatofilho@75
|
965 |
|
renatofilho@75
|
966 |
/* Could be okay, peek what should be enough for a complete header */
|
renatofilho@75
|
967 |
#define MULTIPART_MAX_HEADER_SIZE 256
|
renatofilho@75
|
968 |
data = gst_type_find_peek (tf, 0, MULTIPART_MAX_HEADER_SIZE);
|
renatofilho@75
|
969 |
if (!data)
|
renatofilho@75
|
970 |
return;
|
renatofilho@75
|
971 |
|
renatofilho@75
|
972 |
for (x = data; x - data < MULTIPART_MAX_HEADER_SIZE - 14; x++) {
|
renatofilho@75
|
973 |
if (!isascii (*x)) {
|
renatofilho@75
|
974 |
return;
|
renatofilho@75
|
975 |
}
|
renatofilho@75
|
976 |
if (*x == '\n' &&
|
renatofilho@75
|
977 |
!g_ascii_strncasecmp ("content-type:", (gchar *) x + 1, 13)) {
|
renatofilho@75
|
978 |
GstCaps *caps = gst_caps_copy (MULTIPART_CAPS);
|
renatofilho@75
|
979 |
|
renatofilho@75
|
980 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, caps);
|
renatofilho@75
|
981 |
gst_caps_unref (caps);
|
renatofilho@75
|
982 |
return;
|
renatofilho@75
|
983 |
}
|
renatofilho@75
|
984 |
}
|
renatofilho@75
|
985 |
}
|
renatofilho@75
|
986 |
|
renatofilho@75
|
987 |
/*** video/mpeg systemstream ***/
|
renatofilho@75
|
988 |
static GstStaticCaps mpeg_sys_caps = GST_STATIC_CAPS ("video/mpeg, "
|
renatofilho@75
|
989 |
"systemstream = (boolean) true, mpegversion = (int) [ 1, 2 ]");
|
renatofilho@75
|
990 |
|
renatofilho@75
|
991 |
#define MPEG_SYS_CAPS gst_static_caps_get(&mpeg_sys_caps)
|
renatofilho@75
|
992 |
#define IS_MPEG_HEADER(data) ((((guint8 *)(data))[0] == 0x00) && \
|
renatofilho@75
|
993 |
(((guint8 *)(data))[1] == 0x00) && \
|
renatofilho@75
|
994 |
(((guint8 *)(data))[2] == 0x01))
|
renatofilho@75
|
995 |
|
renatofilho@75
|
996 |
#define IS_MPEG_PACK_HEADER(data) (IS_MPEG_HEADER (data) && \
|
renatofilho@75
|
997 |
(((guint8 *)(data))[3] == 0xBA))
|
renatofilho@75
|
998 |
|
renatofilho@75
|
999 |
#define IS_MPEG_SYSTEM_HEADER(data) (IS_MPEG_HEADER (data) && \
|
renatofilho@75
|
1000 |
(((guint8 *)(data))[3] == 0xBB))
|
renatofilho@75
|
1001 |
#define IS_MPEG_PACKET_HEADER(data) (IS_MPEG_HEADER (data) && \
|
renatofilho@75
|
1002 |
((((guint8 *)(data))[3] & 0x80) == 0x80))
|
renatofilho@75
|
1003 |
|
renatofilho@75
|
1004 |
#define IS_MPEG_PES_HEADER(data) (IS_MPEG_HEADER (data) && \
|
renatofilho@75
|
1005 |
((((guint8 *)(data))[3] == 0xE0) || \
|
renatofilho@75
|
1006 |
(((guint8 *)(data))[3] == 0xC0) || \
|
renatofilho@75
|
1007 |
(((guint8 *)(data))[3] == 0xBD)))
|
renatofilho@75
|
1008 |
|
renatofilho@75
|
1009 |
static void
|
renatofilho@75
|
1010 |
mpeg2_sys_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1011 |
{
|
renatofilho@75
|
1012 |
guint8 *data = gst_type_find_peek (tf, 0, 5);
|
renatofilho@75
|
1013 |
gint mpegversion;
|
renatofilho@75
|
1014 |
|
renatofilho@75
|
1015 |
if (data && IS_MPEG_PACK_HEADER (data)) {
|
renatofilho@75
|
1016 |
if ((data[4] & 0xC0) == 0x40) {
|
renatofilho@75
|
1017 |
/* type 2 */
|
renatofilho@75
|
1018 |
mpegversion = 2;
|
renatofilho@75
|
1019 |
goto suggest;
|
renatofilho@75
|
1020 |
} else if ((data[4] & 0xF0) == 0x20) {
|
renatofilho@75
|
1021 |
mpegversion = 1;
|
renatofilho@75
|
1022 |
goto suggest;
|
renatofilho@75
|
1023 |
}
|
renatofilho@75
|
1024 |
} else if (data && IS_MPEG_PES_HEADER (data)) {
|
renatofilho@75
|
1025 |
/* PES stream */
|
renatofilho@75
|
1026 |
mpegversion = 2;
|
renatofilho@75
|
1027 |
goto suggest;
|
renatofilho@75
|
1028 |
}
|
renatofilho@75
|
1029 |
|
renatofilho@75
|
1030 |
return;
|
renatofilho@75
|
1031 |
suggest:
|
renatofilho@75
|
1032 |
{
|
renatofilho@75
|
1033 |
GstCaps *caps = gst_caps_copy (MPEG_SYS_CAPS);
|
renatofilho@75
|
1034 |
|
renatofilho@75
|
1035 |
gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
|
renatofilho@75
|
1036 |
G_TYPE_INT, mpegversion, NULL);
|
renatofilho@75
|
1037 |
gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, caps);
|
renatofilho@75
|
1038 |
gst_caps_unref (caps);
|
renatofilho@75
|
1039 |
}
|
renatofilho@75
|
1040 |
};
|
renatofilho@75
|
1041 |
|
renatofilho@75
|
1042 |
/* ATTENTION: ugly return value:
|
renatofilho@75
|
1043 |
* 0 - invalid data
|
renatofilho@75
|
1044 |
* 1 - not enough data
|
renatofilho@75
|
1045 |
* anything else - size until next package
|
renatofilho@75
|
1046 |
*/
|
renatofilho@75
|
1047 |
static guint
|
renatofilho@75
|
1048 |
mpeg1_parse_header (GstTypeFind * tf, guint64 offset)
|
renatofilho@75
|
1049 |
{
|
renatofilho@75
|
1050 |
guint8 *data = gst_type_find_peek (tf, offset, 4);
|
renatofilho@75
|
1051 |
guint size;
|
renatofilho@75
|
1052 |
|
renatofilho@75
|
1053 |
if (!data) {
|
renatofilho@75
|
1054 |
GST_LOG ("couldn't get MPEG header bytes");
|
renatofilho@75
|
1055 |
return 1;
|
renatofilho@75
|
1056 |
}
|
renatofilho@75
|
1057 |
|
renatofilho@75
|
1058 |
if (data[0] != 0 || data[1] != 0 || data[2] != 1) {
|
renatofilho@75
|
1059 |
GST_LOG ("no sync");
|
renatofilho@75
|
1060 |
return 0;
|
renatofilho@75
|
1061 |
}
|
renatofilho@75
|
1062 |
offset += 4;
|
renatofilho@75
|
1063 |
|
renatofilho@75
|
1064 |
GST_LOG ("sync %02x", data[3]);
|
renatofilho@75
|
1065 |
|
renatofilho@75
|
1066 |
switch (data[3]) {
|
renatofilho@75
|
1067 |
case 0xBA: /* pack header */
|
renatofilho@75
|
1068 |
data = gst_type_find_peek (tf, offset, 8);
|
renatofilho@75
|
1069 |
if (!data) {
|
renatofilho@75
|
1070 |
GST_LOG ("couldn't get MPEG pack header bytes");
|
renatofilho@75
|
1071 |
return 1;
|
renatofilho@75
|
1072 |
}
|
renatofilho@75
|
1073 |
size = 12;
|
renatofilho@75
|
1074 |
/* check marker bits */
|
renatofilho@75
|
1075 |
if ((data[0] & 0xF1) != 0x21 ||
|
renatofilho@75
|
1076 |
(data[2] & 0x01) != 0x01 ||
|
renatofilho@75
|
1077 |
(data[4] & 0x01) != 0x01 ||
|
renatofilho@75
|
1078 |
(data[5] & 0x80) != 0x80 || (data[7] & 0x01) != 0x01) {
|
renatofilho@75
|
1079 |
GST_LOG ("wrong marker bits");
|
renatofilho@75
|
1080 |
return 0;
|
renatofilho@75
|
1081 |
}
|
renatofilho@75
|
1082 |
break;
|
renatofilho@75
|
1083 |
|
renatofilho@75
|
1084 |
case 0xB9: /* ISO end code */
|
renatofilho@75
|
1085 |
size = 4;
|
renatofilho@75
|
1086 |
break;
|
renatofilho@75
|
1087 |
|
renatofilho@75
|
1088 |
case 0xBB: /* system header */
|
renatofilho@75
|
1089 |
data = gst_type_find_peek (tf, offset, 2);
|
renatofilho@75
|
1090 |
if (!data) {
|
renatofilho@75
|
1091 |
GST_LOG ("couldn't get MPEG pack header bytes");
|
renatofilho@75
|
1092 |
return 1;
|
renatofilho@75
|
1093 |
}
|
renatofilho@75
|
1094 |
size = GST_READ_UINT16_BE (data) + 6;
|
renatofilho@75
|
1095 |
offset += 2;
|
renatofilho@75
|
1096 |
data = gst_type_find_peek (tf, offset, size - 6);
|
renatofilho@75
|
1097 |
if (!data) {
|
renatofilho@75
|
1098 |
GST_LOG ("couldn't get MPEG pack header bytes");
|
renatofilho@75
|
1099 |
return 1;
|
renatofilho@75
|
1100 |
}
|
renatofilho@75
|
1101 |
/* check marker bits */
|
renatofilho@75
|
1102 |
if ((data[0] & 0x80) != 0x80 ||
|
renatofilho@75
|
1103 |
(data[2] & 0x01) != 0x01 || (data[4] & 0x20) != 0x20) {
|
renatofilho@75
|
1104 |
GST_LOG ("wrong marker bits");
|
renatofilho@75
|
1105 |
return 0;
|
renatofilho@75
|
1106 |
}
|
renatofilho@75
|
1107 |
/* check stream marker bits */
|
renatofilho@75
|
1108 |
for (offset = 6; offset < (size - 6); offset += 3) {
|
renatofilho@75
|
1109 |
if (data[offset] <= 0xBB || (data[offset + 1] & 0xC0) != 0xC0) {
|
renatofilho@75
|
1110 |
GST_LOG ("wrong marker bits");
|
renatofilho@75
|
1111 |
return 0;
|
renatofilho@75
|
1112 |
}
|
renatofilho@75
|
1113 |
}
|
renatofilho@75
|
1114 |
break;
|
renatofilho@75
|
1115 |
|
renatofilho@75
|
1116 |
default:
|
renatofilho@75
|
1117 |
if (data[3] < 0xB9)
|
renatofilho@75
|
1118 |
return 0;
|
renatofilho@75
|
1119 |
data = gst_type_find_peek (tf, offset, 2);
|
renatofilho@75
|
1120 |
if (!data) {
|
renatofilho@75
|
1121 |
GST_LOG ("couldn't get MPEG pack header bytes");
|
renatofilho@75
|
1122 |
return 1;
|
renatofilho@75
|
1123 |
}
|
renatofilho@75
|
1124 |
size = GST_READ_UINT16_BE (data) + 6;
|
renatofilho@75
|
1125 |
/* FIXME: we could check PTS/DTS marker bits here... (bit overkill) */
|
renatofilho@75
|
1126 |
break;
|
renatofilho@75
|
1127 |
}
|
renatofilho@75
|
1128 |
|
renatofilho@75
|
1129 |
return size;
|
renatofilho@75
|
1130 |
}
|
renatofilho@75
|
1131 |
|
renatofilho@75
|
1132 |
/* calculation of possibility to identify random data as mpeg systemstream:
|
renatofilho@75
|
1133 |
* bits that must match in header detection: 32 (or more)
|
renatofilho@75
|
1134 |
* chance that random data is identifed: 1/2^32
|
renatofilho@75
|
1135 |
* chance that GST_MPEG_TYPEFIND_TRY_HEADERS headers are identified:
|
renatofilho@75
|
1136 |
* 1/2^(32*GST_MPEG_TYPEFIND_TRY_HEADERS)
|
renatofilho@75
|
1137 |
* chance that this happens in GST_MPEG_TYPEFIND_TRY_SYNC bytes:
|
renatofilho@75
|
1138 |
* 1-(1+1/2^(32*GST_MPEG_TYPEFIND_TRY_HEADERS)^GST_MPEG_TYPEFIND_TRY_SYNC)
|
renatofilho@75
|
1139 |
* for current values:
|
renatofilho@75
|
1140 |
* 1-(1+1/2^(32*4)^101024)
|
renatofilho@75
|
1141 |
* = <some_number>
|
renatofilho@75
|
1142 |
*/
|
renatofilho@75
|
1143 |
#define GST_MPEG_TYPEFIND_TRY_HEADERS 4
|
renatofilho@75
|
1144 |
#define GST_MPEG_TYPEFIND_TRY_SYNC (100 * 1024) /* 100kB */
|
renatofilho@75
|
1145 |
#define GST_MPEG_TYPEFIND_SYNC_SIZE 2048
|
renatofilho@75
|
1146 |
static void
|
renatofilho@75
|
1147 |
mpeg1_sys_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1148 |
{
|
renatofilho@75
|
1149 |
guint8 *data = NULL;
|
renatofilho@75
|
1150 |
guint size = 0;
|
renatofilho@75
|
1151 |
guint64 skipped = 0;
|
renatofilho@75
|
1152 |
GstCaps *caps;
|
renatofilho@75
|
1153 |
|
renatofilho@75
|
1154 |
while (skipped < GST_MPEG_TYPEFIND_TRY_SYNC) {
|
renatofilho@75
|
1155 |
if (size < 4) {
|
renatofilho@75
|
1156 |
data = gst_type_find_peek (tf, skipped, GST_MPEG_TYPEFIND_SYNC_SIZE);
|
renatofilho@75
|
1157 |
if (!data)
|
renatofilho@75
|
1158 |
break;
|
renatofilho@75
|
1159 |
size = GST_MPEG_TYPEFIND_SYNC_SIZE;
|
renatofilho@75
|
1160 |
}
|
renatofilho@75
|
1161 |
if (IS_MPEG_PACK_HEADER (data)) {
|
renatofilho@75
|
1162 |
/* found packet start code */
|
renatofilho@75
|
1163 |
guint found = 0;
|
renatofilho@75
|
1164 |
guint packet_size = 0;
|
renatofilho@75
|
1165 |
guint64 offset = skipped;
|
renatofilho@75
|
1166 |
|
renatofilho@75
|
1167 |
while (found < GST_MPEG_TYPEFIND_TRY_HEADERS) {
|
renatofilho@75
|
1168 |
packet_size = mpeg1_parse_header (tf, offset);
|
renatofilho@75
|
1169 |
if (packet_size <= 1)
|
renatofilho@75
|
1170 |
break;
|
renatofilho@75
|
1171 |
offset += packet_size;
|
renatofilho@75
|
1172 |
found++;
|
renatofilho@75
|
1173 |
}
|
renatofilho@75
|
1174 |
g_assert (found <= GST_MPEG_TYPEFIND_TRY_HEADERS);
|
renatofilho@75
|
1175 |
if (found == GST_MPEG_TYPEFIND_TRY_HEADERS || packet_size == 1) {
|
renatofilho@75
|
1176 |
GST_LOG ("suggesting mpeg1 system steeam");
|
renatofilho@75
|
1177 |
caps = gst_caps_copy (MPEG_SYS_CAPS);
|
renatofilho@75
|
1178 |
gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
|
renatofilho@75
|
1179 |
G_TYPE_INT, 1, NULL);
|
renatofilho@75
|
1180 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 1, caps);
|
renatofilho@75
|
1181 |
gst_caps_unref (caps);
|
renatofilho@75
|
1182 |
return;
|
renatofilho@75
|
1183 |
}
|
renatofilho@75
|
1184 |
}
|
renatofilho@75
|
1185 |
data++;
|
renatofilho@75
|
1186 |
skipped++;
|
renatofilho@75
|
1187 |
size--;
|
renatofilho@75
|
1188 |
}
|
renatofilho@75
|
1189 |
}
|
renatofilho@75
|
1190 |
|
renatofilho@75
|
1191 |
/** video/mpegts Transport Stream **/
|
renatofilho@75
|
1192 |
static GstStaticCaps mpegts_caps = GST_STATIC_CAPS ("video/mpegts, "
|
renatofilho@75
|
1193 |
"systemstream = (boolean) true, packetsize = (int) [ 188, 208 ]");
|
renatofilho@75
|
1194 |
#define MPEGTS_CAPS gst_static_caps_get(&mpegts_caps)
|
renatofilho@75
|
1195 |
|
renatofilho@75
|
1196 |
#define GST_MPEGTS_TYPEFIND_MIN_HEADERS 4
|
renatofilho@75
|
1197 |
#define GST_MPEGTS_TYPEFIND_MAX_HEADERS 10
|
renatofilho@75
|
1198 |
#define GST_MPEGTS_MAX_PACKET_SIZE 204
|
renatofilho@75
|
1199 |
#define GST_MPEGTS_TYPEFIND_SYNC_SIZE \
|
renatofilho@75
|
1200 |
(GST_MPEGTS_TYPEFIND_MIN_HEADERS * GST_MPEGTS_MAX_PACKET_SIZE)
|
renatofilho@75
|
1201 |
#define GST_MPEGTS_TYPEFIND_MAX_SYNC \
|
renatofilho@75
|
1202 |
(GST_MPEGTS_TYPEFIND_MAX_HEADERS * GST_MPEGTS_MAX_PACKET_SIZE)
|
renatofilho@75
|
1203 |
|
renatofilho@75
|
1204 |
#define MPEGTS_HDR_SIZE 4
|
renatofilho@75
|
1205 |
#define IS_MPEGTS_HEADER(data) (((data)[0] == 0x47) && \
|
renatofilho@75
|
1206 |
(((data)[1] & 0x80) == 0x00) && \
|
renatofilho@75
|
1207 |
(((data)[3] & 0x10) == 0x10))
|
renatofilho@75
|
1208 |
|
renatofilho@75
|
1209 |
/* Helper function to search ahead at intervals of packet_size for mpegts
|
renatofilho@75
|
1210 |
* headers */
|
renatofilho@75
|
1211 |
gint
|
renatofilho@75
|
1212 |
mpeg_ts_probe_headers (GstTypeFind * tf, guint64 offset, gint packet_size)
|
renatofilho@75
|
1213 |
{
|
renatofilho@75
|
1214 |
/* We always enter this function having found at least one header already */
|
renatofilho@75
|
1215 |
gint found = 1;
|
renatofilho@75
|
1216 |
guint8 *data = NULL;
|
renatofilho@75
|
1217 |
|
renatofilho@75
|
1218 |
while (found < GST_MPEGTS_TYPEFIND_MAX_HEADERS) {
|
renatofilho@75
|
1219 |
offset += packet_size;
|
renatofilho@75
|
1220 |
|
renatofilho@75
|
1221 |
data = gst_type_find_peek (tf, offset, MPEGTS_HDR_SIZE);
|
renatofilho@75
|
1222 |
if (data == NULL || !IS_MPEGTS_HEADER (data))
|
renatofilho@75
|
1223 |
return found;
|
renatofilho@75
|
1224 |
|
renatofilho@75
|
1225 |
found++;
|
renatofilho@75
|
1226 |
}
|
renatofilho@75
|
1227 |
|
renatofilho@75
|
1228 |
return found;
|
renatofilho@75
|
1229 |
}
|
renatofilho@75
|
1230 |
|
renatofilho@75
|
1231 |
/* Try and detect at least 4 packets in at most 10 packets worth of
|
renatofilho@75
|
1232 |
* data. Need to try several possible packet sizes */
|
renatofilho@75
|
1233 |
static void
|
renatofilho@75
|
1234 |
mpeg_ts_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1235 |
{
|
renatofilho@75
|
1236 |
/* TS packet sizes to test: normal, DVHS packet size and
|
renatofilho@75
|
1237 |
* FEC with 16 or 20 byte codes packet size. */
|
renatofilho@75
|
1238 |
const gint pack_sizes[] = { 188, 192, 204, 208 };
|
renatofilho@75
|
1239 |
const gint n_pack_sizes = sizeof (pack_sizes) / sizeof (gint);
|
renatofilho@75
|
1240 |
|
renatofilho@75
|
1241 |
guint8 *data = NULL;
|
renatofilho@75
|
1242 |
guint size = 0;
|
renatofilho@75
|
1243 |
guint64 skipped = 0;
|
renatofilho@75
|
1244 |
|
renatofilho@75
|
1245 |
while (skipped < GST_MPEGTS_TYPEFIND_MAX_SYNC) {
|
renatofilho@75
|
1246 |
if (size < MPEGTS_HDR_SIZE) {
|
renatofilho@75
|
1247 |
data = gst_type_find_peek (tf, skipped, GST_MPEGTS_TYPEFIND_SYNC_SIZE);
|
renatofilho@75
|
1248 |
if (!data)
|
renatofilho@75
|
1249 |
break;
|
renatofilho@75
|
1250 |
size = GST_MPEGTS_TYPEFIND_SYNC_SIZE;
|
renatofilho@75
|
1251 |
}
|
renatofilho@75
|
1252 |
|
renatofilho@75
|
1253 |
/* Have at least MPEGTS_HDR_SIZE bytes at this point */
|
renatofilho@75
|
1254 |
if (IS_MPEGTS_HEADER (data)) {
|
renatofilho@75
|
1255 |
gint p;
|
renatofilho@75
|
1256 |
|
renatofilho@75
|
1257 |
for (p = 0; p < n_pack_sizes; p++) {
|
renatofilho@75
|
1258 |
gint found;
|
renatofilho@75
|
1259 |
|
renatofilho@75
|
1260 |
/* Probe ahead at size pack_sizes[p] */
|
renatofilho@75
|
1261 |
found = mpeg_ts_probe_headers (tf, skipped, pack_sizes[p]);
|
renatofilho@75
|
1262 |
if (found >= GST_MPEGTS_TYPEFIND_MIN_HEADERS) {
|
renatofilho@75
|
1263 |
gint probability;
|
renatofilho@75
|
1264 |
GstCaps *caps = gst_caps_copy (MPEGTS_CAPS);
|
renatofilho@75
|
1265 |
|
renatofilho@75
|
1266 |
gst_structure_set (gst_caps_get_structure (caps, 0), "packetsize",
|
renatofilho@75
|
1267 |
G_TYPE_INT, pack_sizes[p], NULL);
|
renatofilho@75
|
1268 |
|
renatofilho@75
|
1269 |
/* found at least 4 headers. 10 headers = MAXIMUM probability.
|
renatofilho@75
|
1270 |
* Arbitrarily, I assigned 10% probability for each header we
|
renatofilho@75
|
1271 |
* found, 40% -> 100% */
|
renatofilho@75
|
1272 |
|
renatofilho@75
|
1273 |
probability = 10 * MIN (found, 10);
|
renatofilho@75
|
1274 |
|
renatofilho@75
|
1275 |
gst_type_find_suggest (tf, probability, caps);
|
renatofilho@75
|
1276 |
gst_caps_unref (caps);
|
renatofilho@75
|
1277 |
return;
|
renatofilho@75
|
1278 |
}
|
renatofilho@75
|
1279 |
}
|
renatofilho@75
|
1280 |
}
|
renatofilho@75
|
1281 |
data++;
|
renatofilho@75
|
1282 |
skipped++;
|
renatofilho@75
|
1283 |
size--;
|
renatofilho@75
|
1284 |
}
|
renatofilho@75
|
1285 |
}
|
renatofilho@75
|
1286 |
|
renatofilho@75
|
1287 |
/*** video/mpeg MPEG-4 elementary video stream ***/
|
renatofilho@75
|
1288 |
|
renatofilho@75
|
1289 |
static GstStaticCaps mpeg4_video_caps = GST_STATIC_CAPS ("video/mpeg, "
|
renatofilho@75
|
1290 |
"systemstream = (boolean) false, mpegversion = 4");
|
renatofilho@75
|
1291 |
#define MPEG4_VIDEO_CAPS gst_static_caps_get(&mpeg4_video_caps)
|
renatofilho@75
|
1292 |
static void
|
renatofilho@75
|
1293 |
mpeg4_video_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1294 |
{
|
renatofilho@75
|
1295 |
/* Header consists of: a series of start codes (00 00 01 xx), some with
|
renatofilho@75
|
1296 |
* associated data.
|
renatofilho@75
|
1297 |
* Optionally, we start with a visual_object_sequence_start_code, followed by
|
renatofilho@75
|
1298 |
* (optionally) visual_object_start_code), then the mandatory
|
renatofilho@75
|
1299 |
* video_object_start_code and video_object_layer_start_code)
|
renatofilho@75
|
1300 |
*/
|
renatofilho@75
|
1301 |
guint8 *data = NULL;
|
renatofilho@75
|
1302 |
int offset = 0;
|
renatofilho@75
|
1303 |
gboolean seen_vos = FALSE;
|
renatofilho@75
|
1304 |
|
renatofilho@75
|
1305 |
while (TRUE) {
|
renatofilho@75
|
1306 |
data = gst_type_find_peek (tf, offset, 4);
|
renatofilho@75
|
1307 |
if (data && data[0] == 0 && data[1] == 0 && data[2] == 1) {
|
renatofilho@75
|
1308 |
int sc = data[3];
|
renatofilho@75
|
1309 |
|
renatofilho@75
|
1310 |
if (sc == 0xB0) /* visual_object_sequence_start_code */
|
renatofilho@75
|
1311 |
offset += 5;
|
renatofilho@75
|
1312 |
else if (sc == 0xB5) /* visual_object_start_code */
|
renatofilho@75
|
1313 |
offset += 5;
|
renatofilho@75
|
1314 |
else if (sc >= 0x00 && sc <= 0x1F) { /* video_object_start_code */
|
renatofilho@75
|
1315 |
offset += 4;
|
renatofilho@75
|
1316 |
seen_vos = TRUE;
|
renatofilho@75
|
1317 |
} else if (sc >= 0x20 && sc <= 0x2F) { /* video_object_layer_start_code */
|
renatofilho@75
|
1318 |
if (seen_vos) {
|
renatofilho@75
|
1319 |
GstCaps *caps = gst_caps_copy (MPEG4_VIDEO_CAPS);
|
renatofilho@75
|
1320 |
|
renatofilho@75
|
1321 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 1, caps);
|
renatofilho@75
|
1322 |
gst_caps_unref (caps);
|
renatofilho@75
|
1323 |
return;
|
renatofilho@75
|
1324 |
}
|
renatofilho@75
|
1325 |
} else
|
renatofilho@75
|
1326 |
return;
|
renatofilho@75
|
1327 |
} else
|
renatofilho@75
|
1328 |
return;
|
renatofilho@75
|
1329 |
}
|
renatofilho@75
|
1330 |
}
|
renatofilho@75
|
1331 |
|
renatofilho@75
|
1332 |
/*** video/mpeg video stream ***/
|
renatofilho@75
|
1333 |
|
renatofilho@75
|
1334 |
static GstStaticCaps mpeg_video_caps = GST_STATIC_CAPS ("video/mpeg, "
|
renatofilho@75
|
1335 |
"systemstream = (boolean) false");
|
renatofilho@75
|
1336 |
#define MPEG_VIDEO_CAPS gst_static_caps_get(&mpeg_video_caps)
|
renatofilho@75
|
1337 |
static void
|
renatofilho@75
|
1338 |
mpeg_video_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1339 |
{
|
renatofilho@75
|
1340 |
static const guint8 sequence_header[] = { 0x00, 0x00, 0x01, 0xb3 };
|
renatofilho@75
|
1341 |
guint8 *data = NULL;
|
renatofilho@75
|
1342 |
|
renatofilho@75
|
1343 |
data = gst_type_find_peek (tf, 0, 8);
|
renatofilho@75
|
1344 |
|
renatofilho@75
|
1345 |
if (data && memcmp (data, sequence_header, 4) == 0) {
|
renatofilho@75
|
1346 |
GstCaps *caps = gst_caps_copy (MPEG_VIDEO_CAPS);
|
renatofilho@75
|
1347 |
|
renatofilho@75
|
1348 |
gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
|
renatofilho@75
|
1349 |
G_TYPE_INT, 1, NULL);
|
renatofilho@75
|
1350 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 1, caps);
|
renatofilho@75
|
1351 |
gst_caps_unref (caps);
|
renatofilho@75
|
1352 |
}
|
renatofilho@75
|
1353 |
}
|
renatofilho@75
|
1354 |
|
renatofilho@75
|
1355 |
/*
|
renatofilho@75
|
1356 |
* Idea is the same as MPEG system stream typefinding: We check each
|
renatofilho@75
|
1357 |
* byte of the stream to see if - from that point on - the stream
|
renatofilho@75
|
1358 |
* matches a predefined set of marker bits as defined in the MPEG
|
renatofilho@75
|
1359 |
* video specs.
|
renatofilho@75
|
1360 |
*
|
renatofilho@75
|
1361 |
* I'm sure someone will do a chance calculation here too.
|
renatofilho@75
|
1362 |
*/
|
renatofilho@75
|
1363 |
|
renatofilho@75
|
1364 |
#define GST_MPEGVID_TYPEFIND_TRY_PICTURES 6
|
renatofilho@75
|
1365 |
#define GST_MPEGVID_TYPEFIND_TRY_SYNC (100 * 1024) /* 100 kB */
|
renatofilho@75
|
1366 |
#define GST_MPEGVID_TYPEFIND_SYNC_SIZE 2048
|
renatofilho@75
|
1367 |
|
renatofilho@75
|
1368 |
static void
|
renatofilho@75
|
1369 |
mpeg_video_stream_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1370 |
{
|
renatofilho@75
|
1371 |
gint size = 0, found = 0;
|
renatofilho@75
|
1372 |
guint64 skipped = 0;
|
renatofilho@75
|
1373 |
guint8 *data = NULL;
|
renatofilho@75
|
1374 |
|
renatofilho@75
|
1375 |
while (1) {
|
renatofilho@75
|
1376 |
if (found >= GST_MPEGVID_TYPEFIND_TRY_PICTURES) {
|
renatofilho@75
|
1377 |
GstCaps *caps = gst_caps_copy (MPEG_VIDEO_CAPS);
|
renatofilho@75
|
1378 |
|
renatofilho@75
|
1379 |
gst_structure_set (gst_caps_get_structure (caps, 0), "mpegversion",
|
renatofilho@75
|
1380 |
G_TYPE_INT, 1, NULL);
|
renatofilho@75
|
1381 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM - 2, caps);
|
renatofilho@75
|
1382 |
gst_caps_unref (caps);
|
renatofilho@75
|
1383 |
return;
|
renatofilho@75
|
1384 |
}
|
renatofilho@75
|
1385 |
|
renatofilho@75
|
1386 |
if (skipped > GST_MPEGVID_TYPEFIND_TRY_SYNC)
|
renatofilho@75
|
1387 |
break;
|
renatofilho@75
|
1388 |
|
renatofilho@75
|
1389 |
if (size < 5) {
|
renatofilho@75
|
1390 |
data = gst_type_find_peek (tf, skipped, GST_MPEGVID_TYPEFIND_SYNC_SIZE);
|
renatofilho@75
|
1391 |
if (!data)
|
renatofilho@75
|
1392 |
break;
|
renatofilho@75
|
1393 |
size = GST_MPEGVID_TYPEFIND_SYNC_SIZE;
|
renatofilho@75
|
1394 |
}
|
renatofilho@75
|
1395 |
|
renatofilho@75
|
1396 |
/* are we a sequence (0xB3) or GOP (0xB8) header? */
|
renatofilho@75
|
1397 |
if (data[0] == 0x0 && data[1] == 0x0 && data[2] == 0x1 &&
|
renatofilho@75
|
1398 |
(data[3] == 0xB3 || data[3] == 0xB8)) {
|
renatofilho@75
|
1399 |
size -= 8;
|
renatofilho@75
|
1400 |
data += 8;
|
renatofilho@75
|
1401 |
skipped += 8;
|
renatofilho@75
|
1402 |
if (data[3] == 0xB3)
|
renatofilho@75
|
1403 |
continue;
|
renatofilho@75
|
1404 |
else if (size < 4) {
|
renatofilho@75
|
1405 |
data = gst_type_find_peek (tf, skipped, GST_MPEGVID_TYPEFIND_SYNC_SIZE);
|
renatofilho@75
|
1406 |
size = GST_MPEGVID_TYPEFIND_SYNC_SIZE;
|
renatofilho@75
|
1407 |
if (!data)
|
renatofilho@75
|
1408 |
break;
|
renatofilho@75
|
1409 |
}
|
renatofilho@75
|
1410 |
/* else, we should now see an image */
|
renatofilho@75
|
1411 |
}
|
renatofilho@75
|
1412 |
|
renatofilho@75
|
1413 |
/* image header (and, when found, slice header) */
|
renatofilho@75
|
1414 |
if (data[0] == 0x0 && data[1] == 0x0 && data[2] == 0x1 && data[4] == 0x0) {
|
renatofilho@75
|
1415 |
size -= 8;
|
renatofilho@75
|
1416 |
data += 8;
|
renatofilho@75
|
1417 |
skipped += 8;
|
renatofilho@75
|
1418 |
if (size < 5) {
|
renatofilho@75
|
1419 |
data = gst_type_find_peek (tf, skipped, GST_MPEGVID_TYPEFIND_SYNC_SIZE);
|
renatofilho@75
|
1420 |
size = GST_MPEGVID_TYPEFIND_SYNC_SIZE;
|
renatofilho@75
|
1421 |
if (!data)
|
renatofilho@75
|
1422 |
break;
|
renatofilho@75
|
1423 |
}
|
renatofilho@75
|
1424 |
if ((data[0] == 0x0 && data[1] == 0x0 &&
|
renatofilho@75
|
1425 |
data[2] == 0x1 && data[3] == 0x1) ||
|
renatofilho@75
|
1426 |
(data[1] == 0x0 && data[2] == 0x0 &&
|
renatofilho@75
|
1427 |
data[3] == 0x1 && data[4] == 0x1)) {
|
renatofilho@75
|
1428 |
size -= 4;
|
renatofilho@75
|
1429 |
data += 4;
|
renatofilho@75
|
1430 |
skipped += 4;
|
renatofilho@75
|
1431 |
found += 1;
|
renatofilho@75
|
1432 |
continue;
|
renatofilho@75
|
1433 |
}
|
renatofilho@75
|
1434 |
}
|
renatofilho@75
|
1435 |
|
renatofilho@75
|
1436 |
size--;
|
renatofilho@75
|
1437 |
data++;
|
renatofilho@75
|
1438 |
skipped++;
|
renatofilho@75
|
1439 |
}
|
renatofilho@75
|
1440 |
}
|
renatofilho@75
|
1441 |
|
renatofilho@75
|
1442 |
/*** audio/x-aiff ***/
|
renatofilho@75
|
1443 |
|
renatofilho@75
|
1444 |
static GstStaticCaps aiff_caps = GST_STATIC_CAPS ("audio/x-aiff");
|
renatofilho@75
|
1445 |
|
renatofilho@75
|
1446 |
#define AIFF_CAPS gst_static_caps_get(&aiff_caps)
|
renatofilho@75
|
1447 |
static void
|
renatofilho@75
|
1448 |
aiff_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1449 |
{
|
renatofilho@75
|
1450 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1451 |
|
renatofilho@75
|
1452 |
if (data && memcmp (data, "FORM", 4) == 0) {
|
renatofilho@75
|
1453 |
data += 8;
|
renatofilho@75
|
1454 |
if (memcmp (data, "AIFF", 4) == 0 || memcmp (data, "AIFC", 4) == 0)
|
renatofilho@75
|
1455 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, AIFF_CAPS);
|
renatofilho@75
|
1456 |
}
|
renatofilho@75
|
1457 |
}
|
renatofilho@75
|
1458 |
|
renatofilho@75
|
1459 |
/*** audio/x-aiff ***/
|
renatofilho@75
|
1460 |
|
renatofilho@75
|
1461 |
static GstStaticCaps svx_caps = GST_STATIC_CAPS ("audio/x-svx");
|
renatofilho@75
|
1462 |
|
renatofilho@75
|
1463 |
#define SVX_CAPS gst_static_caps_get(&svx_caps)
|
renatofilho@75
|
1464 |
static void
|
renatofilho@75
|
1465 |
svx_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1466 |
{
|
renatofilho@75
|
1467 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1468 |
|
renatofilho@75
|
1469 |
if (data && memcmp (data, "FORM", 4) == 0) {
|
renatofilho@75
|
1470 |
data += 8;
|
renatofilho@75
|
1471 |
if (memcmp (data, "8SVX", 4) == 0 || memcmp (data, "16SV", 4) == 0)
|
renatofilho@75
|
1472 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SVX_CAPS);
|
renatofilho@75
|
1473 |
}
|
renatofilho@75
|
1474 |
}
|
renatofilho@75
|
1475 |
|
renatofilho@75
|
1476 |
/*** audio/x-shorten ***/
|
renatofilho@75
|
1477 |
|
renatofilho@75
|
1478 |
static GstStaticCaps shn_caps = GST_STATIC_CAPS ("audio/x-shorten");
|
renatofilho@75
|
1479 |
|
renatofilho@75
|
1480 |
#define SHN_CAPS gst_static_caps_get(&shn_caps)
|
renatofilho@75
|
1481 |
static void
|
renatofilho@75
|
1482 |
shn_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1483 |
{
|
renatofilho@75
|
1484 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1485 |
|
renatofilho@75
|
1486 |
if (data && memcmp (data, "ajkg", 4) == 0) {
|
renatofilho@75
|
1487 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SHN_CAPS);
|
renatofilho@75
|
1488 |
}
|
renatofilho@75
|
1489 |
data = gst_type_find_peek (tf, -8, 8);
|
renatofilho@75
|
1490 |
if (data && memcmp (data, "SHNAMPSK", 8) == 0) {
|
renatofilho@75
|
1491 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SHN_CAPS);
|
renatofilho@75
|
1492 |
}
|
renatofilho@75
|
1493 |
}
|
renatofilho@75
|
1494 |
|
renatofilho@75
|
1495 |
/*** application/x-ape ***/
|
renatofilho@75
|
1496 |
|
renatofilho@75
|
1497 |
static GstStaticCaps ape_caps = GST_STATIC_CAPS ("application/x-ape");
|
renatofilho@75
|
1498 |
|
renatofilho@75
|
1499 |
#define APE_CAPS gst_static_caps_get(&ape_caps)
|
renatofilho@75
|
1500 |
static void
|
renatofilho@75
|
1501 |
ape_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1502 |
{
|
renatofilho@75
|
1503 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1504 |
|
renatofilho@75
|
1505 |
if (data && memcmp (data, "MAC ", 4) == 0) {
|
renatofilho@75
|
1506 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY + 10, APE_CAPS);
|
renatofilho@75
|
1507 |
}
|
renatofilho@75
|
1508 |
}
|
renatofilho@75
|
1509 |
|
renatofilho@75
|
1510 |
/*** ISO FORMATS ***/
|
renatofilho@75
|
1511 |
|
renatofilho@75
|
1512 |
/*** audio/x-m4a ***/
|
renatofilho@75
|
1513 |
|
renatofilho@75
|
1514 |
static GstStaticCaps m4a_caps = GST_STATIC_CAPS ("audio/x-m4a");
|
renatofilho@75
|
1515 |
|
renatofilho@75
|
1516 |
#define M4A_CAPS (gst_static_caps_get(&m4a_caps))
|
renatofilho@75
|
1517 |
static void
|
renatofilho@75
|
1518 |
m4a_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1519 |
{
|
renatofilho@75
|
1520 |
guint8 *data = gst_type_find_peek (tf, 4, 8);
|
renatofilho@75
|
1521 |
|
renatofilho@75
|
1522 |
if (data &&
|
renatofilho@75
|
1523 |
(memcmp (data, "ftypM4A ", 8) == 0 ||
|
renatofilho@75
|
1524 |
memcmp (data, "ftypmp42", 8) == 0)) {
|
renatofilho@75
|
1525 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, M4A_CAPS);
|
renatofilho@75
|
1526 |
}
|
renatofilho@75
|
1527 |
}
|
renatofilho@75
|
1528 |
|
renatofilho@75
|
1529 |
/*** application/x-3gp ***/
|
renatofilho@75
|
1530 |
|
renatofilho@75
|
1531 |
/* The Q is there because variables can't start with a number. */
|
renatofilho@75
|
1532 |
|
renatofilho@75
|
1533 |
|
renatofilho@75
|
1534 |
static GstStaticCaps q3gp_caps = GST_STATIC_CAPS ("application/x-3gp");
|
renatofilho@75
|
1535 |
|
renatofilho@75
|
1536 |
#define Q3GP_CAPS (gst_static_caps_get(&q3gp_caps))
|
renatofilho@75
|
1537 |
static void
|
renatofilho@75
|
1538 |
q3gp_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1539 |
{
|
renatofilho@75
|
1540 |
|
renatofilho@75
|
1541 |
guint32 ftyp_size = 0;
|
renatofilho@75
|
1542 |
gint offset = 0;
|
renatofilho@75
|
1543 |
guint8 *data = NULL;
|
renatofilho@75
|
1544 |
|
renatofilho@75
|
1545 |
if ((data = gst_type_find_peek (tf, 0, 12)) == NULL) {
|
renatofilho@75
|
1546 |
return;
|
renatofilho@75
|
1547 |
}
|
renatofilho@75
|
1548 |
|
renatofilho@75
|
1549 |
data += 4;
|
renatofilho@75
|
1550 |
if (memcmp (data, "ftyp", 4) != 0) {
|
renatofilho@75
|
1551 |
return;
|
renatofilho@75
|
1552 |
}
|
renatofilho@75
|
1553 |
|
renatofilho@75
|
1554 |
/* check major brand */
|
renatofilho@75
|
1555 |
data += 4;
|
renatofilho@75
|
1556 |
if (memcmp (data, "3gp", 3) == 0 ||
|
renatofilho@75
|
1557 |
memcmp (data, "3gr", 3) == 0 ||
|
renatofilho@75
|
1558 |
memcmp (data, "3gs", 3) == 0 || memcmp (data, "3gg", 3) == 0) {
|
renatofilho@75
|
1559 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, Q3GP_CAPS);
|
renatofilho@75
|
1560 |
return;
|
renatofilho@75
|
1561 |
}
|
renatofilho@75
|
1562 |
|
renatofilho@75
|
1563 |
/* check compatible brands */
|
renatofilho@75
|
1564 |
if ((data = gst_type_find_peek (tf, 0, 4)) != NULL) {
|
renatofilho@75
|
1565 |
ftyp_size = GST_READ_UINT32_BE (data);
|
renatofilho@75
|
1566 |
}
|
renatofilho@75
|
1567 |
for (offset = 16; offset < ftyp_size; offset += 4) {
|
renatofilho@75
|
1568 |
if ((data = gst_type_find_peek (tf, offset, 3)) == NULL) {
|
renatofilho@75
|
1569 |
break;
|
renatofilho@75
|
1570 |
}
|
renatofilho@75
|
1571 |
if (memcmp (data, "3gp", 3) == 0 ||
|
renatofilho@75
|
1572 |
memcmp (data, "3gr", 3) == 0 ||
|
renatofilho@75
|
1573 |
memcmp (data, "3gs", 3) == 0 || memcmp (data, "3gg", 3) == 0) {
|
renatofilho@75
|
1574 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, Q3GP_CAPS);
|
renatofilho@75
|
1575 |
break;
|
renatofilho@75
|
1576 |
}
|
renatofilho@75
|
1577 |
}
|
renatofilho@75
|
1578 |
|
renatofilho@75
|
1579 |
return;
|
renatofilho@75
|
1580 |
|
renatofilho@75
|
1581 |
}
|
renatofilho@75
|
1582 |
|
renatofilho@75
|
1583 |
/*** video/quicktime ***/
|
renatofilho@75
|
1584 |
|
renatofilho@75
|
1585 |
static GstStaticCaps qt_caps = GST_STATIC_CAPS ("video/quicktime");
|
renatofilho@75
|
1586 |
|
renatofilho@75
|
1587 |
#define QT_CAPS gst_static_caps_get(&qt_caps)
|
renatofilho@75
|
1588 |
#define STRNCMP(x,y,z) (strncmp ((char*)(x), (char*)(y), z))
|
renatofilho@75
|
1589 |
|
renatofilho@75
|
1590 |
static void
|
renatofilho@75
|
1591 |
qt_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1592 |
{
|
renatofilho@75
|
1593 |
guint8 *data;
|
renatofilho@75
|
1594 |
guint tip = 0;
|
renatofilho@75
|
1595 |
guint64 offset = 0;
|
renatofilho@75
|
1596 |
guint64 size;
|
renatofilho@75
|
1597 |
|
renatofilho@75
|
1598 |
while ((data = gst_type_find_peek (tf, offset, 8)) != NULL) {
|
renatofilho@75
|
1599 |
/* box/atom types that are in common with ISO base media file format */
|
renatofilho@75
|
1600 |
if (STRNCMP (&data[4], "moov", 4) == 0 ||
|
renatofilho@75
|
1601 |
STRNCMP (&data[4], "mdat", 4) == 0 ||
|
renatofilho@75
|
1602 |
STRNCMP (&data[4], "ftyp", 4) == 0 ||
|
renatofilho@75
|
1603 |
STRNCMP (&data[4], "free", 4) == 0 ||
|
renatofilho@75
|
1604 |
STRNCMP (&data[4], "uuid", 4) == 0 ||
|
renatofilho@75
|
1605 |
STRNCMP (&data[4], "skip", 4) == 0) {
|
renatofilho@75
|
1606 |
if (tip == 0) {
|
renatofilho@75
|
1607 |
tip = GST_TYPE_FIND_LIKELY;
|
renatofilho@75
|
1608 |
} else {
|
renatofilho@75
|
1609 |
tip = GST_TYPE_FIND_NEARLY_CERTAIN;
|
renatofilho@75
|
1610 |
}
|
renatofilho@75
|
1611 |
}
|
renatofilho@75
|
1612 |
/* other box/atom types, apparently quicktime specific */
|
renatofilho@75
|
1613 |
else if (STRNCMP (&data[4], "pnot", 4) == 0 ||
|
renatofilho@75
|
1614 |
STRNCMP (&data[4], "PICT", 4) == 0 ||
|
renatofilho@75
|
1615 |
STRNCMP (&data[4], "wide", 4) == 0 ||
|
renatofilho@75
|
1616 |
STRNCMP (&data[4], "prfl", 4) == 0) {
|
renatofilho@75
|
1617 |
tip = GST_TYPE_FIND_MAXIMUM;
|
renatofilho@75
|
1618 |
break;
|
renatofilho@75
|
1619 |
} else {
|
renatofilho@75
|
1620 |
tip = 0;
|
renatofilho@75
|
1621 |
break;
|
renatofilho@75
|
1622 |
}
|
renatofilho@75
|
1623 |
size = GST_READ_UINT32_BE (data);
|
renatofilho@75
|
1624 |
if (size == 1) {
|
renatofilho@75
|
1625 |
guint8 *sizedata;
|
renatofilho@75
|
1626 |
|
renatofilho@75
|
1627 |
sizedata = gst_type_find_peek (tf, offset + 8, 8);
|
renatofilho@75
|
1628 |
if (sizedata == NULL)
|
renatofilho@75
|
1629 |
break;
|
renatofilho@75
|
1630 |
|
renatofilho@75
|
1631 |
size = GST_READ_UINT64_BE (sizedata);
|
renatofilho@75
|
1632 |
} else {
|
renatofilho@75
|
1633 |
if (size < 8)
|
renatofilho@75
|
1634 |
break;
|
renatofilho@75
|
1635 |
}
|
renatofilho@75
|
1636 |
offset += size;
|
renatofilho@75
|
1637 |
}
|
renatofilho@75
|
1638 |
if (tip > 0) {
|
renatofilho@75
|
1639 |
gst_type_find_suggest (tf, tip, QT_CAPS);
|
renatofilho@75
|
1640 |
}
|
renatofilho@75
|
1641 |
};
|
renatofilho@75
|
1642 |
|
renatofilho@75
|
1643 |
|
renatofilho@75
|
1644 |
/*** image/x-quicktime ***/
|
renatofilho@75
|
1645 |
|
renatofilho@75
|
1646 |
static GstStaticCaps qtif_caps = GST_STATIC_CAPS ("image/x-quicktime");
|
renatofilho@75
|
1647 |
|
renatofilho@75
|
1648 |
#define QTIF_CAPS gst_static_caps_get(&qtif_caps)
|
renatofilho@75
|
1649 |
|
renatofilho@75
|
1650 |
/* how many atoms we check before we give up */
|
renatofilho@75
|
1651 |
#define QTIF_MAXROUNDS 25
|
renatofilho@75
|
1652 |
|
renatofilho@75
|
1653 |
static void
|
renatofilho@75
|
1654 |
qtif_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1655 |
{
|
renatofilho@75
|
1656 |
const guint8 *data;
|
renatofilho@75
|
1657 |
gboolean found_idsc = FALSE;
|
renatofilho@75
|
1658 |
gboolean found_idat = FALSE;
|
renatofilho@75
|
1659 |
guint64 offset = 0;
|
renatofilho@75
|
1660 |
guint rounds = 0;
|
renatofilho@75
|
1661 |
|
renatofilho@75
|
1662 |
while ((data = gst_type_find_peek (tf, offset, 8)) != NULL) {
|
renatofilho@75
|
1663 |
guint64 size;
|
renatofilho@75
|
1664 |
|
renatofilho@75
|
1665 |
size = GST_READ_UINT32_BE (data);
|
renatofilho@75
|
1666 |
if (size == 1) {
|
renatofilho@75
|
1667 |
const guint8 *sizedata;
|
renatofilho@75
|
1668 |
|
renatofilho@75
|
1669 |
sizedata = gst_type_find_peek (tf, offset + 8, 8);
|
renatofilho@75
|
1670 |
if (sizedata == NULL)
|
renatofilho@75
|
1671 |
break;
|
renatofilho@75
|
1672 |
|
renatofilho@75
|
1673 |
size = GST_READ_UINT64_BE (sizedata);
|
renatofilho@75
|
1674 |
}
|
renatofilho@75
|
1675 |
if (size < 8)
|
renatofilho@75
|
1676 |
break;
|
renatofilho@75
|
1677 |
|
renatofilho@75
|
1678 |
if (STRNCMP (data + 4, "idsc", 4) == 0)
|
renatofilho@75
|
1679 |
found_idsc = TRUE;
|
renatofilho@75
|
1680 |
if (STRNCMP (data + 4, "idat", 4) == 0)
|
renatofilho@75
|
1681 |
found_idat = TRUE;
|
renatofilho@75
|
1682 |
|
renatofilho@75
|
1683 |
if (found_idsc && found_idat) {
|
renatofilho@75
|
1684 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, QTIF_CAPS);
|
renatofilho@75
|
1685 |
return;
|
renatofilho@75
|
1686 |
}
|
renatofilho@75
|
1687 |
|
renatofilho@75
|
1688 |
offset += size;
|
renatofilho@75
|
1689 |
if (++rounds > QTIF_MAXROUNDS)
|
renatofilho@75
|
1690 |
break;
|
renatofilho@75
|
1691 |
}
|
renatofilho@75
|
1692 |
|
renatofilho@75
|
1693 |
if (found_idsc || found_idat) {
|
renatofilho@75
|
1694 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, QTIF_CAPS);
|
renatofilho@75
|
1695 |
return;
|
renatofilho@75
|
1696 |
}
|
renatofilho@75
|
1697 |
};
|
renatofilho@75
|
1698 |
|
renatofilho@75
|
1699 |
/*** audio/x-mod ***/
|
renatofilho@75
|
1700 |
|
renatofilho@75
|
1701 |
static GstStaticCaps mod_caps = GST_STATIC_CAPS ("audio/x-mod");
|
renatofilho@75
|
1702 |
|
renatofilho@75
|
1703 |
#define MOD_CAPS gst_static_caps_get(&mod_caps)
|
renatofilho@75
|
1704 |
/* FIXME: M15 CheckType to do */
|
renatofilho@75
|
1705 |
static void
|
renatofilho@75
|
1706 |
mod_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1707 |
{
|
renatofilho@75
|
1708 |
guint8 *data;
|
renatofilho@75
|
1709 |
|
renatofilho@75
|
1710 |
/* MOD */
|
renatofilho@75
|
1711 |
if ((data = gst_type_find_peek (tf, 1080, 4)) != NULL) {
|
renatofilho@75
|
1712 |
/* Protracker and variants */
|
renatofilho@75
|
1713 |
if ((memcmp (data, "M.K.", 4) == 0) || (memcmp (data, "M!K!", 4) == 0) ||
|
renatofilho@75
|
1714 |
/* Star Tracker */
|
renatofilho@75
|
1715 |
(memcmp (data, "FLT", 3) == 0 && isdigit (data[3])) ||
|
renatofilho@75
|
1716 |
(memcmp (data, "EXO", 3) == 0 && isdigit (data[3])) ||
|
renatofilho@75
|
1717 |
/* Oktalyzer (Amiga) */
|
renatofilho@75
|
1718 |
(memcmp (data, "OKTA", 4) == 0) ||
|
renatofilho@75
|
1719 |
/* Oktalyser (Atari) */
|
renatofilho@75
|
1720 |
(memcmp (data, "CD81", 4) == 0) ||
|
renatofilho@75
|
1721 |
/* Fasttracker */
|
renatofilho@75
|
1722 |
(memcmp (data + 1, "CHN", 3) == 0 && isdigit (data[0])) ||
|
renatofilho@75
|
1723 |
/* Fasttracker or Taketracker */
|
renatofilho@75
|
1724 |
(memcmp (data + 2, "CH", 2) == 0 && isdigit (data[0])
|
renatofilho@75
|
1725 |
&& isdigit (data[1])) || (memcmp (data + 2, "CN", 2) == 0
|
renatofilho@75
|
1726 |
&& isdigit (data[0]) && isdigit (data[1]))) {
|
renatofilho@75
|
1727 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1728 |
return;
|
renatofilho@75
|
1729 |
}
|
renatofilho@75
|
1730 |
}
|
renatofilho@75
|
1731 |
/* XM */
|
renatofilho@75
|
1732 |
if ((data = gst_type_find_peek (tf, 0, 38)) != NULL) {
|
renatofilho@75
|
1733 |
if (memcmp (data, "Extended Module: ", 17) == 0 && data[37] == 0x1A) {
|
renatofilho@75
|
1734 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1735 |
return;
|
renatofilho@75
|
1736 |
}
|
renatofilho@75
|
1737 |
}
|
renatofilho@75
|
1738 |
/* OKT */
|
renatofilho@75
|
1739 |
if (data || (data = gst_type_find_peek (tf, 0, 8)) != NULL) {
|
renatofilho@75
|
1740 |
if (memcmp (data, "OKTASONG", 8) == 0) {
|
renatofilho@75
|
1741 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1742 |
return;
|
renatofilho@75
|
1743 |
}
|
renatofilho@75
|
1744 |
}
|
renatofilho@75
|
1745 |
if (data || (data = gst_type_find_peek (tf, 0, 4)) != NULL) {
|
renatofilho@75
|
1746 |
/* 669 */
|
renatofilho@75
|
1747 |
if ((memcmp (data, "if", 2) == 0) || (memcmp (data, "JN", 2) == 0)) {
|
renatofilho@75
|
1748 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, MOD_CAPS);
|
renatofilho@75
|
1749 |
return;
|
renatofilho@75
|
1750 |
}
|
renatofilho@75
|
1751 |
/* AMF */
|
renatofilho@75
|
1752 |
if ((memcmp (data, "AMF", 3) == 0 && data[3] > 10 && data[3] < 14) ||
|
renatofilho@75
|
1753 |
/* IT */
|
renatofilho@75
|
1754 |
(memcmp (data, "IMPM", 4) == 0) ||
|
renatofilho@75
|
1755 |
/* MED */
|
renatofilho@75
|
1756 |
(memcmp (data, "MMD0", 4) == 0) || (memcmp (data, "MMD1", 4) == 0) ||
|
renatofilho@75
|
1757 |
/* MTM */
|
renatofilho@75
|
1758 |
(memcmp (data, "MTM", 3) == 0)) {
|
renatofilho@75
|
1759 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1760 |
return;
|
renatofilho@75
|
1761 |
}
|
renatofilho@75
|
1762 |
/* DSM */
|
renatofilho@75
|
1763 |
if (memcmp (data, "RIFF", 4) == 0) {
|
renatofilho@75
|
1764 |
guint8 *data2 = gst_type_find_peek (tf, 8, 4);
|
renatofilho@75
|
1765 |
|
renatofilho@75
|
1766 |
if (data2) {
|
renatofilho@75
|
1767 |
if (memcmp (data2, "DSMF", 4) == 0) {
|
renatofilho@75
|
1768 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1769 |
return;
|
renatofilho@75
|
1770 |
}
|
renatofilho@75
|
1771 |
}
|
renatofilho@75
|
1772 |
}
|
renatofilho@75
|
1773 |
/* FAM */
|
renatofilho@75
|
1774 |
if (memcmp (data, "FAM\xFE", 4) == 0) {
|
renatofilho@75
|
1775 |
guint8 *data2 = gst_type_find_peek (tf, 44, 3);
|
renatofilho@75
|
1776 |
|
renatofilho@75
|
1777 |
if (data2) {
|
renatofilho@75
|
1778 |
if (memcmp (data2, "compare", 3) == 0) {
|
renatofilho@75
|
1779 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1780 |
return;
|
renatofilho@75
|
1781 |
}
|
renatofilho@75
|
1782 |
} else {
|
renatofilho@75
|
1783 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, MOD_CAPS);
|
renatofilho@75
|
1784 |
return;
|
renatofilho@75
|
1785 |
}
|
renatofilho@75
|
1786 |
}
|
renatofilho@75
|
1787 |
/* GDM */
|
renatofilho@75
|
1788 |
if (memcmp (data, "GDM\xFE", 4) == 0) {
|
renatofilho@75
|
1789 |
guint8 *data2 = gst_type_find_peek (tf, 71, 4);
|
renatofilho@75
|
1790 |
|
renatofilho@75
|
1791 |
if (data2) {
|
renatofilho@75
|
1792 |
if (memcmp (data2, "GMFS", 4) == 0) {
|
renatofilho@75
|
1793 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1794 |
return;
|
renatofilho@75
|
1795 |
}
|
renatofilho@75
|
1796 |
} else {
|
renatofilho@75
|
1797 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, MOD_CAPS);
|
renatofilho@75
|
1798 |
return;
|
renatofilho@75
|
1799 |
}
|
renatofilho@75
|
1800 |
}
|
renatofilho@75
|
1801 |
}
|
renatofilho@75
|
1802 |
/* IMF */
|
renatofilho@75
|
1803 |
if ((data = gst_type_find_peek (tf, 60, 4)) != NULL) {
|
renatofilho@75
|
1804 |
if (memcmp (data, "IM10", 4) == 0) {
|
renatofilho@75
|
1805 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1806 |
return;
|
renatofilho@75
|
1807 |
}
|
renatofilho@75
|
1808 |
}
|
renatofilho@75
|
1809 |
/* S3M */
|
renatofilho@75
|
1810 |
if ((data = gst_type_find_peek (tf, 44, 4)) != NULL) {
|
renatofilho@75
|
1811 |
if (memcmp (data, "SCRM", 4) == 0) {
|
renatofilho@75
|
1812 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MOD_CAPS);
|
renatofilho@75
|
1813 |
return;
|
renatofilho@75
|
1814 |
}
|
renatofilho@75
|
1815 |
}
|
renatofilho@75
|
1816 |
}
|
renatofilho@75
|
1817 |
|
renatofilho@75
|
1818 |
/*** application/x-shockwave-flash ***/
|
renatofilho@75
|
1819 |
|
renatofilho@75
|
1820 |
static GstStaticCaps swf_caps =
|
renatofilho@75
|
1821 |
GST_STATIC_CAPS ("application/x-shockwave-flash");
|
renatofilho@75
|
1822 |
#define SWF_CAPS (gst_static_caps_get(&swf_caps))
|
renatofilho@75
|
1823 |
static void
|
renatofilho@75
|
1824 |
swf_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1825 |
{
|
renatofilho@75
|
1826 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1827 |
|
renatofilho@75
|
1828 |
if (data && (data[0] == 'F' || data[0] == 'C') &&
|
renatofilho@75
|
1829 |
data[1] == 'W' && data[2] == 'S') {
|
renatofilho@75
|
1830 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SWF_CAPS);
|
renatofilho@75
|
1831 |
}
|
renatofilho@75
|
1832 |
}
|
renatofilho@75
|
1833 |
|
renatofilho@75
|
1834 |
/*** image/jpeg ***/
|
renatofilho@75
|
1835 |
|
renatofilho@75
|
1836 |
static GstStaticCaps jpeg_caps = GST_STATIC_CAPS ("image/jpeg");
|
renatofilho@75
|
1837 |
|
renatofilho@75
|
1838 |
#define JPEG_CAPS (gst_static_caps_get(&jpeg_caps))
|
renatofilho@75
|
1839 |
static void
|
renatofilho@75
|
1840 |
jpeg_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1841 |
{
|
renatofilho@75
|
1842 |
guint8 *data = gst_type_find_peek (tf, 0, 10);
|
renatofilho@75
|
1843 |
guint8 header[2] = { 0xFF, 0xD8 };
|
renatofilho@75
|
1844 |
|
renatofilho@75
|
1845 |
if (data && memcmp (data, header, 2) == 0) {
|
renatofilho@75
|
1846 |
if (memcmp (data + 6, "JFIF", 4) == 0) {
|
renatofilho@75
|
1847 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, JPEG_CAPS);
|
renatofilho@75
|
1848 |
} else if (memcmp (data + 6, "Exif", 4) == 0) {
|
renatofilho@75
|
1849 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, JPEG_CAPS);
|
renatofilho@75
|
1850 |
} else {
|
renatofilho@75
|
1851 |
gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, JPEG_CAPS);
|
renatofilho@75
|
1852 |
}
|
renatofilho@75
|
1853 |
}
|
renatofilho@75
|
1854 |
}
|
renatofilho@75
|
1855 |
|
renatofilho@75
|
1856 |
/*** image/bmp ***/
|
renatofilho@75
|
1857 |
|
renatofilho@75
|
1858 |
static GstStaticCaps bmp_caps = GST_STATIC_CAPS ("image/bmp");
|
renatofilho@75
|
1859 |
|
renatofilho@75
|
1860 |
#define BMP_CAPS (gst_static_caps_get(&bmp_caps))
|
renatofilho@75
|
1861 |
static void
|
renatofilho@75
|
1862 |
bmp_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
1863 |
{
|
renatofilho@75
|
1864 |
guint8 *data = gst_type_find_peek (tf, 0, 18);
|
renatofilho@75
|
1865 |
|
renatofilho@75
|
1866 |
if (data && memcmp (data, "BM", 2) == 0) {
|
renatofilho@75
|
1867 |
if ((data[14] == 0x0C ||
|
renatofilho@75
|
1868 |
data[14] == 0x28 ||
|
renatofilho@75
|
1869 |
data[14] == 0xF0) &&
|
renatofilho@75
|
1870 |
data[15] == 0 && data[16] == 0 && data[17] == 0) {
|
renatofilho@75
|
1871 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, BMP_CAPS);
|
renatofilho@75
|
1872 |
}
|
renatofilho@75
|
1873 |
}
|
renatofilho@75
|
1874 |
}
|
renatofilho@75
|
1875 |
|
renatofilho@75
|
1876 |
/*** image/tiff ***/
|
renatofilho@75
|
1877 |
static GstStaticCaps tiff_caps = GST_STATIC_CAPS ("image/tiff, "
|
renatofilho@75
|
1878 |
"endianness = (int) { BIG_ENDIAN, LITTLE_ENDIAN }");
|
renatofilho@75
|
1879 |
#define TIFF_CAPS (gst_static_caps_get(&tiff_caps))
|
renatofilho@75
|
1880 |
static GstStaticCaps tiff_be_caps = GST_STATIC_CAPS ("image/tiff, "
|
renatofilho@75
|
1881 |
"endianness = (int) BIG_ENDIAN");
|
renatofilho@75
|
1882 |
#define TIFF_BE_CAPS (gst_static_caps_get(&tiff_be_caps))
|
renatofilho@75
|
1883 |
static GstStaticCaps tiff_le_caps = GST_STATIC_CAPS ("image/tiff, "
|
renatofilho@75
|
1884 |
"endianness = (int) LITTLE_ENDIAN");
|
renatofilho@75
|
1885 |
#define TIFF_LE_CAPS (gst_static_caps_get(&tiff_le_caps))
|
renatofilho@75
|
1886 |
static void
|
renatofilho@75
|
1887 |
tiff_type_find (GstTypeFind * tf, gpointer ununsed)
|
renatofilho@75
|
1888 |
{
|
renatofilho@75
|
1889 |
guint8 *data = gst_type_find_peek (tf, 0, 8);
|
renatofilho@75
|
1890 |
guint8 le_header[4] = { 0x49, 0x49, 0x2A, 0x00 };
|
renatofilho@75
|
1891 |
guint8 be_header[4] = { 0x4D, 0x4D, 0x00, 0x2A };
|
renatofilho@75
|
1892 |
|
renatofilho@75
|
1893 |
if (data) {
|
renatofilho@75
|
1894 |
if (memcmp (data, le_header, 4) == 0) {
|
renatofilho@75
|
1895 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, TIFF_LE_CAPS);
|
renatofilho@75
|
1896 |
} else if (memcmp (data, be_header, 4) == 0) {
|
renatofilho@75
|
1897 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, TIFF_BE_CAPS);
|
renatofilho@75
|
1898 |
}
|
renatofilho@75
|
1899 |
}
|
renatofilho@75
|
1900 |
}
|
renatofilho@75
|
1901 |
|
renatofilho@75
|
1902 |
static GstStaticCaps sds_caps = GST_STATIC_CAPS ("audio/x-sds");
|
renatofilho@75
|
1903 |
|
renatofilho@75
|
1904 |
#define SDS_CAPS (gst_static_caps_get(&sds_caps))
|
renatofilho@75
|
1905 |
static void
|
renatofilho@75
|
1906 |
sds_type_find (GstTypeFind * tf, gpointer ununsed)
|
renatofilho@75
|
1907 |
{
|
renatofilho@75
|
1908 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1909 |
guint8 mask[4] = { 0xFF, 0xFF, 0x80, 0xFF };
|
renatofilho@75
|
1910 |
guint8 match[4] = { 0xF0, 0x7E, 0, 0x01 };
|
renatofilho@75
|
1911 |
gint x;
|
renatofilho@75
|
1912 |
|
renatofilho@75
|
1913 |
if (data) {
|
renatofilho@75
|
1914 |
for (x = 0; x < 4; x++) {
|
renatofilho@75
|
1915 |
if ((data[x] & mask[x]) != match[x]) {
|
renatofilho@75
|
1916 |
return;
|
renatofilho@75
|
1917 |
}
|
renatofilho@75
|
1918 |
}
|
renatofilho@75
|
1919 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SDS_CAPS);
|
renatofilho@75
|
1920 |
}
|
renatofilho@75
|
1921 |
}
|
renatofilho@75
|
1922 |
|
renatofilho@75
|
1923 |
static GstStaticCaps ircam_caps = GST_STATIC_CAPS ("audio/x-ircam");
|
renatofilho@75
|
1924 |
|
renatofilho@75
|
1925 |
#define IRCAM_CAPS (gst_static_caps_get(&ircam_caps))
|
renatofilho@75
|
1926 |
static void
|
renatofilho@75
|
1927 |
ircam_type_find (GstTypeFind * tf, gpointer ununsed)
|
renatofilho@75
|
1928 |
{
|
renatofilho@75
|
1929 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
1930 |
guint8 mask[4] = { 0xFF, 0xFF, 0xF8, 0xFF };
|
renatofilho@75
|
1931 |
guint8 match[4] = { 0x64, 0xA3, 0x00, 0x00 };
|
renatofilho@75
|
1932 |
gint x;
|
renatofilho@75
|
1933 |
gboolean matched = TRUE;
|
renatofilho@75
|
1934 |
|
renatofilho@75
|
1935 |
if (!data) {
|
renatofilho@75
|
1936 |
return;
|
renatofilho@75
|
1937 |
}
|
renatofilho@75
|
1938 |
for (x = 0; x < 4; x++) {
|
renatofilho@75
|
1939 |
if ((data[x] & mask[x]) != match[x]) {
|
renatofilho@75
|
1940 |
matched = FALSE;
|
renatofilho@75
|
1941 |
}
|
renatofilho@75
|
1942 |
}
|
renatofilho@75
|
1943 |
if (matched) {
|
renatofilho@75
|
1944 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, IRCAM_CAPS);
|
renatofilho@75
|
1945 |
return;
|
renatofilho@75
|
1946 |
}
|
renatofilho@75
|
1947 |
/* now try the reverse version */
|
renatofilho@75
|
1948 |
matched = TRUE;
|
renatofilho@75
|
1949 |
for (x = 0; x < 4; x++) {
|
renatofilho@75
|
1950 |
if ((data[x] & mask[3 - x]) != match[3 - x]) {
|
renatofilho@75
|
1951 |
matched = FALSE;
|
renatofilho@75
|
1952 |
}
|
renatofilho@75
|
1953 |
}
|
renatofilho@75
|
1954 |
}
|
renatofilho@75
|
1955 |
|
renatofilho@75
|
1956 |
|
renatofilho@75
|
1957 |
/*** video/x-matroska ***/
|
renatofilho@75
|
1958 |
static GstStaticCaps matroska_caps = GST_STATIC_CAPS ("video/x-matroska");
|
renatofilho@75
|
1959 |
|
renatofilho@75
|
1960 |
#define MATROSKA_CAPS (gst_static_caps_get(&matroska_caps))
|
renatofilho@75
|
1961 |
static void
|
renatofilho@75
|
1962 |
matroska_type_find (GstTypeFind * tf, gpointer ununsed)
|
renatofilho@75
|
1963 |
{
|
renatofilho@75
|
1964 |
/* 4 bytes for EBML ID, 1 byte for header length identifier */
|
renatofilho@75
|
1965 |
guint8 *data = gst_type_find_peek (tf, 0, 4 + 1);
|
renatofilho@75
|
1966 |
gint len_mask = 0x80, size = 1, n = 1, total;
|
renatofilho@75
|
1967 |
guint8 probe_data[] = { 'm', 'a', 't', 'r', 'o', 's', 'k', 'a' };
|
renatofilho@75
|
1968 |
|
renatofilho@75
|
1969 |
if (!data)
|
renatofilho@75
|
1970 |
return;
|
renatofilho@75
|
1971 |
|
renatofilho@75
|
1972 |
/* ebml header? */
|
renatofilho@75
|
1973 |
if (data[0] != 0x1A || data[1] != 0x45 || data[2] != 0xDF || data[3] != 0xA3)
|
renatofilho@75
|
1974 |
return;
|
renatofilho@75
|
1975 |
|
renatofilho@75
|
1976 |
/* length of header */
|
renatofilho@75
|
1977 |
total = data[4];
|
renatofilho@75
|
1978 |
while (size <= 8 && !(total & len_mask)) {
|
renatofilho@75
|
1979 |
size++;
|
renatofilho@75
|
1980 |
len_mask >>= 1;
|
renatofilho@75
|
1981 |
}
|
renatofilho@75
|
1982 |
if (size > 8)
|
renatofilho@75
|
1983 |
return;
|
renatofilho@75
|
1984 |
total &= (len_mask - 1);
|
renatofilho@75
|
1985 |
while (n < size)
|
renatofilho@75
|
1986 |
total = (total << 8) | data[4 + n++];
|
renatofilho@75
|
1987 |
|
renatofilho@75
|
1988 |
/* get new data for full header, 4 bytes for EBML ID,
|
renatofilho@75
|
1989 |
* EBML length tag and the actual header */
|
renatofilho@75
|
1990 |
data = gst_type_find_peek (tf, 0, 4 + size + total);
|
renatofilho@75
|
1991 |
if (!data)
|
renatofilho@75
|
1992 |
return;
|
renatofilho@75
|
1993 |
|
renatofilho@75
|
1994 |
/* the header must contain the document type 'matroska'. For now,
|
renatofilho@75
|
1995 |
* we don't parse the whole header but simply check for the
|
renatofilho@75
|
1996 |
* availability of that array of characters inside the header.
|
renatofilho@75
|
1997 |
* Not fully fool-proof, but good enough. */
|
renatofilho@75
|
1998 |
for (n = 4 + size; n <= 4 + size + total - sizeof (probe_data); n++)
|
renatofilho@75
|
1999 |
if (!memcmp (&data[n], probe_data, sizeof (probe_data))) {
|
renatofilho@75
|
2000 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, MATROSKA_CAPS);
|
renatofilho@75
|
2001 |
break;
|
renatofilho@75
|
2002 |
}
|
renatofilho@75
|
2003 |
}
|
renatofilho@75
|
2004 |
|
renatofilho@75
|
2005 |
/*** video/x-dv ***/
|
renatofilho@75
|
2006 |
|
renatofilho@75
|
2007 |
static GstStaticCaps dv_caps = GST_STATIC_CAPS ("video/x-dv, "
|
renatofilho@75
|
2008 |
"systemstream = (boolean) true");
|
renatofilho@75
|
2009 |
#define DV_CAPS (gst_static_caps_get(&dv_caps))
|
renatofilho@75
|
2010 |
static void
|
renatofilho@75
|
2011 |
dv_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2012 |
{
|
renatofilho@75
|
2013 |
guint8 *data;
|
renatofilho@75
|
2014 |
|
renatofilho@75
|
2015 |
data = gst_type_find_peek (tf, 0, 5);
|
renatofilho@75
|
2016 |
|
renatofilho@75
|
2017 |
/* check for DIF and DV flag */
|
renatofilho@75
|
2018 |
if (data && (data[0] == 0x1f) && (data[1] == 0x07) && (data[2] == 0x00) &&
|
renatofilho@75
|
2019 |
((data[4] & 0x01) == 0)) {
|
renatofilho@75
|
2020 |
gchar *format;
|
renatofilho@75
|
2021 |
GstCaps *caps = gst_caps_copy (DV_CAPS);
|
renatofilho@75
|
2022 |
|
renatofilho@75
|
2023 |
if (data[3] & 0x80) {
|
renatofilho@75
|
2024 |
format = "PAL";
|
renatofilho@75
|
2025 |
} else {
|
renatofilho@75
|
2026 |
format = "NTSC";
|
renatofilho@75
|
2027 |
}
|
renatofilho@75
|
2028 |
gst_structure_set (gst_caps_get_structure (caps, 0), "format",
|
renatofilho@75
|
2029 |
G_TYPE_STRING, format, NULL);
|
renatofilho@75
|
2030 |
|
renatofilho@75
|
2031 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, caps);
|
renatofilho@75
|
2032 |
gst_caps_unref (caps);
|
renatofilho@75
|
2033 |
}
|
renatofilho@75
|
2034 |
}
|
renatofilho@75
|
2035 |
|
renatofilho@75
|
2036 |
|
renatofilho@75
|
2037 |
/*** application/ogg and application/x-annodex ***/
|
renatofilho@75
|
2038 |
static GstStaticCaps ogg_caps = GST_STATIC_CAPS ("application/ogg");
|
renatofilho@75
|
2039 |
static GstStaticCaps annodex_caps = GST_STATIC_CAPS ("application/x-annodex");
|
renatofilho@75
|
2040 |
|
renatofilho@75
|
2041 |
#define OGGANX_CAPS (gst_static_caps_get(&annodex_caps))
|
renatofilho@75
|
2042 |
|
renatofilho@75
|
2043 |
static void
|
renatofilho@75
|
2044 |
ogganx_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2045 |
{
|
renatofilho@75
|
2046 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
2047 |
|
renatofilho@75
|
2048 |
if ((data != NULL) && (memcmp (data, "OggS", 4) == 0)) {
|
renatofilho@75
|
2049 |
|
renatofilho@75
|
2050 |
/* Check for an annodex fishbone header */
|
renatofilho@75
|
2051 |
data = gst_type_find_peek (tf, 28, 8);
|
renatofilho@75
|
2052 |
if (data && memcmp (data, "fishead\0", 8) == 0)
|
renatofilho@75
|
2053 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGGANX_CAPS);
|
renatofilho@75
|
2054 |
|
renatofilho@75
|
2055 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM,
|
renatofilho@75
|
2056 |
gst_static_caps_get (&ogg_caps));
|
renatofilho@75
|
2057 |
}
|
renatofilho@75
|
2058 |
}
|
renatofilho@75
|
2059 |
|
renatofilho@75
|
2060 |
/*** audio/x-vorbis ***/
|
renatofilho@75
|
2061 |
static GstStaticCaps vorbis_caps = GST_STATIC_CAPS ("audio/x-vorbis");
|
renatofilho@75
|
2062 |
|
renatofilho@75
|
2063 |
#define VORBIS_CAPS (gst_static_caps_get(&vorbis_caps))
|
renatofilho@75
|
2064 |
static void
|
renatofilho@75
|
2065 |
vorbis_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2066 |
{
|
renatofilho@75
|
2067 |
guint8 *data = gst_type_find_peek (tf, 0, 30);
|
renatofilho@75
|
2068 |
|
renatofilho@75
|
2069 |
if (data) {
|
renatofilho@75
|
2070 |
guint blocksize_0;
|
renatofilho@75
|
2071 |
guint blocksize_1;
|
renatofilho@75
|
2072 |
|
renatofilho@75
|
2073 |
/* 1 byte packet type (identification=0x01)
|
renatofilho@75
|
2074 |
6 byte string "vorbis"
|
renatofilho@75
|
2075 |
4 byte vorbis version */
|
renatofilho@75
|
2076 |
if (memcmp (data, "\001vorbis\000\000\000\000", 11) != 0)
|
renatofilho@75
|
2077 |
return;
|
renatofilho@75
|
2078 |
data += 11;
|
renatofilho@75
|
2079 |
/* 1 byte channels must be != 0 */
|
renatofilho@75
|
2080 |
if (data[0] == 0)
|
renatofilho@75
|
2081 |
return;
|
renatofilho@75
|
2082 |
data++;
|
renatofilho@75
|
2083 |
/* 4 byte samplerate must be != 0 */
|
renatofilho@75
|
2084 |
if (*((guint32 *) data) == 0)
|
renatofilho@75
|
2085 |
return;
|
renatofilho@75
|
2086 |
data += 16;
|
renatofilho@75
|
2087 |
/* blocksize checks */
|
renatofilho@75
|
2088 |
blocksize_0 = data[0] & 0x0F;
|
renatofilho@75
|
2089 |
blocksize_1 = (data[0] & 0xF0) >> 4;
|
renatofilho@75
|
2090 |
if (blocksize_0 > blocksize_1)
|
renatofilho@75
|
2091 |
return;
|
renatofilho@75
|
2092 |
if (blocksize_0 < 6 || blocksize_0 > 13)
|
renatofilho@75
|
2093 |
return;
|
renatofilho@75
|
2094 |
if (blocksize_1 < 6 || blocksize_1 > 13)
|
renatofilho@75
|
2095 |
return;
|
renatofilho@75
|
2096 |
data++;
|
renatofilho@75
|
2097 |
/* framing bit */
|
renatofilho@75
|
2098 |
if ((data[0] & 0x01) != 1)
|
renatofilho@75
|
2099 |
return;
|
renatofilho@75
|
2100 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, VORBIS_CAPS);
|
renatofilho@75
|
2101 |
}
|
renatofilho@75
|
2102 |
}
|
renatofilho@75
|
2103 |
|
renatofilho@75
|
2104 |
/*** video/x-theora ***/
|
renatofilho@75
|
2105 |
|
renatofilho@75
|
2106 |
static GstStaticCaps theora_caps = GST_STATIC_CAPS ("video/x-theora");
|
renatofilho@75
|
2107 |
|
renatofilho@75
|
2108 |
#define THEORA_CAPS (gst_static_caps_get(&theora_caps))
|
renatofilho@75
|
2109 |
static void
|
renatofilho@75
|
2110 |
theora_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2111 |
{
|
renatofilho@75
|
2112 |
guint8 *data = gst_type_find_peek (tf, 0, 7); //42);
|
renatofilho@75
|
2113 |
|
renatofilho@75
|
2114 |
if (data) {
|
renatofilho@75
|
2115 |
if (data[0] != 0x80)
|
renatofilho@75
|
2116 |
return;
|
renatofilho@75
|
2117 |
if (memcmp (&data[1], "theora", 6) != 0)
|
renatofilho@75
|
2118 |
return;
|
renatofilho@75
|
2119 |
/* FIXME: make this more reliable when specs are out */
|
renatofilho@75
|
2120 |
|
renatofilho@75
|
2121 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, THEORA_CAPS);
|
renatofilho@75
|
2122 |
}
|
renatofilho@75
|
2123 |
}
|
renatofilho@75
|
2124 |
|
renatofilho@75
|
2125 |
/*** application/x-ogm-video or audio***/
|
renatofilho@75
|
2126 |
|
renatofilho@75
|
2127 |
static GstStaticCaps ogmvideo_caps =
|
renatofilho@75
|
2128 |
GST_STATIC_CAPS ("application/x-ogm-video");
|
renatofilho@75
|
2129 |
#define OGMVIDEO_CAPS (gst_static_caps_get(&ogmvideo_caps))
|
renatofilho@75
|
2130 |
static void
|
renatofilho@75
|
2131 |
ogmvideo_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2132 |
{
|
renatofilho@75
|
2133 |
guint8 *data = gst_type_find_peek (tf, 0, 9);
|
renatofilho@75
|
2134 |
|
renatofilho@75
|
2135 |
if (data) {
|
renatofilho@75
|
2136 |
if (memcmp (data, "\001video\000\000\000", 9) != 0)
|
renatofilho@75
|
2137 |
return;
|
renatofilho@75
|
2138 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGMVIDEO_CAPS);
|
renatofilho@75
|
2139 |
}
|
renatofilho@75
|
2140 |
}
|
renatofilho@75
|
2141 |
|
renatofilho@75
|
2142 |
static GstStaticCaps ogmaudio_caps =
|
renatofilho@75
|
2143 |
GST_STATIC_CAPS ("application/x-ogm-audio");
|
renatofilho@75
|
2144 |
#define OGMAUDIO_CAPS (gst_static_caps_get(&ogmaudio_caps))
|
renatofilho@75
|
2145 |
static void
|
renatofilho@75
|
2146 |
ogmaudio_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2147 |
{
|
renatofilho@75
|
2148 |
guint8 *data = gst_type_find_peek (tf, 0, 9);
|
renatofilho@75
|
2149 |
|
renatofilho@75
|
2150 |
if (data) {
|
renatofilho@75
|
2151 |
if (memcmp (data, "\001audio\000\000\000", 9) != 0)
|
renatofilho@75
|
2152 |
return;
|
renatofilho@75
|
2153 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGMAUDIO_CAPS);
|
renatofilho@75
|
2154 |
}
|
renatofilho@75
|
2155 |
}
|
renatofilho@75
|
2156 |
|
renatofilho@75
|
2157 |
static GstStaticCaps ogmtext_caps = GST_STATIC_CAPS ("application/x-ogm-text");
|
renatofilho@75
|
2158 |
|
renatofilho@75
|
2159 |
#define OGMTEXT_CAPS (gst_static_caps_get(&ogmtext_caps))
|
renatofilho@75
|
2160 |
static void
|
renatofilho@75
|
2161 |
ogmtext_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2162 |
{
|
renatofilho@75
|
2163 |
guint8 *data = gst_type_find_peek (tf, 0, 9);
|
renatofilho@75
|
2164 |
|
renatofilho@75
|
2165 |
if (data) {
|
renatofilho@75
|
2166 |
if (memcmp (data, "\001text\000\000\000\000", 9) != 0)
|
renatofilho@75
|
2167 |
return;
|
renatofilho@75
|
2168 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGMTEXT_CAPS);
|
renatofilho@75
|
2169 |
}
|
renatofilho@75
|
2170 |
}
|
renatofilho@75
|
2171 |
|
renatofilho@75
|
2172 |
/*** audio/x-speex ***/
|
renatofilho@75
|
2173 |
|
renatofilho@75
|
2174 |
static GstStaticCaps speex_caps = GST_STATIC_CAPS ("audio/x-speex");
|
renatofilho@75
|
2175 |
|
renatofilho@75
|
2176 |
#define SPEEX_CAPS (gst_static_caps_get(&speex_caps))
|
renatofilho@75
|
2177 |
static void
|
renatofilho@75
|
2178 |
speex_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2179 |
{
|
renatofilho@75
|
2180 |
guint8 *data = gst_type_find_peek (tf, 0, 80);
|
renatofilho@75
|
2181 |
|
renatofilho@75
|
2182 |
if (data) {
|
renatofilho@75
|
2183 |
/* 8 byte string "Speex "
|
renatofilho@75
|
2184 |
24 byte speex version string + int */
|
renatofilho@75
|
2185 |
if (memcmp (data, "Speex ", 8) != 0)
|
renatofilho@75
|
2186 |
return;
|
renatofilho@75
|
2187 |
data += 32;
|
renatofilho@75
|
2188 |
|
renatofilho@75
|
2189 |
/* 4 byte header size >= 80 */
|
renatofilho@75
|
2190 |
if (GST_READ_UINT32_LE (data) < 80)
|
renatofilho@75
|
2191 |
return;
|
renatofilho@75
|
2192 |
data += 4;
|
renatofilho@75
|
2193 |
|
renatofilho@75
|
2194 |
/* 4 byte sample rate <= 48000 */
|
renatofilho@75
|
2195 |
if (GST_READ_UINT32_LE (data) > 48000)
|
renatofilho@75
|
2196 |
return;
|
renatofilho@75
|
2197 |
data += 4;
|
renatofilho@75
|
2198 |
|
renatofilho@75
|
2199 |
/* currently there are only 3 speex modes. */
|
renatofilho@75
|
2200 |
if (GST_READ_UINT32_LE (data) > 3)
|
renatofilho@75
|
2201 |
return;
|
renatofilho@75
|
2202 |
data += 12;
|
renatofilho@75
|
2203 |
|
renatofilho@75
|
2204 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SPEEX_CAPS);
|
renatofilho@75
|
2205 |
}
|
renatofilho@75
|
2206 |
}
|
renatofilho@75
|
2207 |
|
renatofilho@75
|
2208 |
/*** application/x-ogg-skeleton ***/
|
renatofilho@75
|
2209 |
static GstStaticCaps ogg_skeleton_caps =
|
renatofilho@75
|
2210 |
GST_STATIC_CAPS ("application/x-ogg-skeleton, parsed=(boolean)FALSE");
|
renatofilho@75
|
2211 |
#define OGG_SKELETON_CAPS (gst_static_caps_get(&ogg_skeleton_caps))
|
renatofilho@75
|
2212 |
static void
|
renatofilho@75
|
2213 |
oggskel_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2214 |
{
|
renatofilho@75
|
2215 |
guint8 *data = gst_type_find_peek (tf, 0, 12);
|
renatofilho@75
|
2216 |
|
renatofilho@75
|
2217 |
if (data) {
|
renatofilho@75
|
2218 |
/* 8 byte string "fishead\0" for the ogg skeleton stream */
|
renatofilho@75
|
2219 |
if (memcmp (data, "fishead\0", 8) != 0)
|
renatofilho@75
|
2220 |
return;
|
renatofilho@75
|
2221 |
data += 8;
|
renatofilho@75
|
2222 |
|
renatofilho@75
|
2223 |
/* Require that the header contains version 3.0 */
|
renatofilho@75
|
2224 |
if (GST_READ_UINT16_LE (data) != 3)
|
renatofilho@75
|
2225 |
return;
|
renatofilho@75
|
2226 |
data += 2;
|
renatofilho@75
|
2227 |
if (GST_READ_UINT16_LE (data) != 0)
|
renatofilho@75
|
2228 |
return;
|
renatofilho@75
|
2229 |
|
renatofilho@75
|
2230 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, OGG_SKELETON_CAPS);
|
renatofilho@75
|
2231 |
}
|
renatofilho@75
|
2232 |
}
|
renatofilho@75
|
2233 |
|
renatofilho@75
|
2234 |
static GstStaticCaps cmml_caps = GST_STATIC_CAPS ("text/x-cmml");
|
renatofilho@75
|
2235 |
|
renatofilho@75
|
2236 |
#define CMML_CAPS (gst_static_caps_get(&cmml_caps))
|
renatofilho@75
|
2237 |
static void
|
renatofilho@75
|
2238 |
cmml_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2239 |
{
|
renatofilho@75
|
2240 |
/* Header is 12 bytes minimum (though we don't check the minor version */
|
renatofilho@75
|
2241 |
guint8 *data = gst_type_find_peek (tf, 0, 12);
|
renatofilho@75
|
2242 |
|
renatofilho@75
|
2243 |
if (data) {
|
renatofilho@75
|
2244 |
|
renatofilho@75
|
2245 |
/* 8 byte string "CMML\0\0\0\0" for the magic number */
|
renatofilho@75
|
2246 |
if (memcmp (data, "CMML\0\0\0\0", 8) != 0)
|
renatofilho@75
|
2247 |
return;
|
renatofilho@75
|
2248 |
data += 8;
|
renatofilho@75
|
2249 |
|
renatofilho@75
|
2250 |
/* Require that the header contains at least version 2.0 */
|
renatofilho@75
|
2251 |
if (GST_READ_UINT16_LE (data) < 2)
|
renatofilho@75
|
2252 |
return;
|
renatofilho@75
|
2253 |
|
renatofilho@75
|
2254 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, CMML_CAPS);
|
renatofilho@75
|
2255 |
}
|
renatofilho@75
|
2256 |
}
|
renatofilho@75
|
2257 |
|
renatofilho@75
|
2258 |
/*** application/x-tar ***/
|
renatofilho@75
|
2259 |
|
renatofilho@75
|
2260 |
static GstStaticCaps tar_caps = GST_STATIC_CAPS ("application/x-tar");
|
renatofilho@75
|
2261 |
|
renatofilho@75
|
2262 |
#define TAR_CAPS (gst_static_caps_get(&tar_caps))
|
renatofilho@75
|
2263 |
#define OLDGNU_MAGIC "ustar " /* 7 chars and a NUL */
|
renatofilho@75
|
2264 |
#define NEWGNU_MAGIC "ustar" /* 5 chars and a NUL */
|
renatofilho@75
|
2265 |
static void
|
renatofilho@75
|
2266 |
tar_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2267 |
{
|
renatofilho@75
|
2268 |
guint8 *data = gst_type_find_peek (tf, 257, 8);
|
renatofilho@75
|
2269 |
|
renatofilho@75
|
2270 |
/* of course we are not certain, but we don't want other typefind funcs
|
renatofilho@75
|
2271 |
* to detect formats of files within the tar archive, e.g. mp3s */
|
renatofilho@75
|
2272 |
if (data) {
|
renatofilho@75
|
2273 |
if (memcmp (data, OLDGNU_MAGIC, 8) == 0) { /* sic */
|
renatofilho@75
|
2274 |
gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, TAR_CAPS);
|
renatofilho@75
|
2275 |
} else if (memcmp (data, NEWGNU_MAGIC, 6) == 0 && /* sic */
|
renatofilho@75
|
2276 |
g_ascii_isdigit (data[6]) && g_ascii_isdigit (data[7])) {
|
renatofilho@75
|
2277 |
gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, TAR_CAPS);
|
renatofilho@75
|
2278 |
}
|
renatofilho@75
|
2279 |
}
|
renatofilho@75
|
2280 |
}
|
renatofilho@75
|
2281 |
|
renatofilho@75
|
2282 |
/*** application/x-ar ***/
|
renatofilho@75
|
2283 |
|
renatofilho@75
|
2284 |
static GstStaticCaps ar_caps = GST_STATIC_CAPS ("application/x-ar");
|
renatofilho@75
|
2285 |
|
renatofilho@75
|
2286 |
#define AR_CAPS (gst_static_caps_get(&ar_caps))
|
renatofilho@75
|
2287 |
static void
|
renatofilho@75
|
2288 |
ar_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2289 |
{
|
renatofilho@75
|
2290 |
guint8 *data = gst_type_find_peek (tf, 0, 24);
|
renatofilho@75
|
2291 |
|
renatofilho@75
|
2292 |
if (data && memcmp (data, "!<arch>", 7) == 0) {
|
renatofilho@75
|
2293 |
gint i;
|
renatofilho@75
|
2294 |
|
renatofilho@75
|
2295 |
for (i = 7; i < 24; ++i) {
|
renatofilho@75
|
2296 |
if (!g_ascii_isprint (data[i]) && data[i] != '\n') {
|
renatofilho@75
|
2297 |
gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, AR_CAPS);
|
renatofilho@75
|
2298 |
}
|
renatofilho@75
|
2299 |
}
|
renatofilho@75
|
2300 |
|
renatofilho@75
|
2301 |
gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, AR_CAPS);
|
renatofilho@75
|
2302 |
}
|
renatofilho@75
|
2303 |
}
|
renatofilho@75
|
2304 |
|
renatofilho@75
|
2305 |
/*** audio/x-au ***/
|
renatofilho@75
|
2306 |
|
renatofilho@75
|
2307 |
/* NOTE: we cannot replace this function with TYPE_FIND_REGISTER_START_WITH,
|
renatofilho@75
|
2308 |
* as it is only possible to register one typefind factory per 'name'
|
renatofilho@75
|
2309 |
* (which is in this case the caps), and the first one would be replaced by
|
renatofilho@75
|
2310 |
* the second one. */
|
renatofilho@75
|
2311 |
static GstStaticCaps au_caps = GST_STATIC_CAPS ("audio/x-au");
|
renatofilho@75
|
2312 |
|
renatofilho@75
|
2313 |
#define AU_CAPS (gst_static_caps_get(&au_caps))
|
renatofilho@75
|
2314 |
static void
|
renatofilho@75
|
2315 |
au_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2316 |
{
|
renatofilho@75
|
2317 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
2318 |
|
renatofilho@75
|
2319 |
if (data) {
|
renatofilho@75
|
2320 |
if (memcmp (data, ".snd", 4) == 0 || memcmp (data, "dns.", 4) == 0) {
|
renatofilho@75
|
2321 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, AU_CAPS);
|
renatofilho@75
|
2322 |
}
|
renatofilho@75
|
2323 |
}
|
renatofilho@75
|
2324 |
}
|
renatofilho@75
|
2325 |
|
renatofilho@75
|
2326 |
|
renatofilho@75
|
2327 |
/*** video/x-nuv ***/
|
renatofilho@75
|
2328 |
|
renatofilho@75
|
2329 |
/* NOTE: we cannot replace this function with TYPE_FIND_REGISTER_START_WITH,
|
renatofilho@75
|
2330 |
* as it is only possible to register one typefind factory per 'name'
|
renatofilho@75
|
2331 |
* (which is in this case the caps), and the first one would be replaced by
|
renatofilho@75
|
2332 |
* the second one. */
|
renatofilho@75
|
2333 |
static GstStaticCaps nuv_caps = GST_STATIC_CAPS ("video/x-nuv");
|
renatofilho@75
|
2334 |
|
renatofilho@75
|
2335 |
#define NUV_CAPS (gst_static_caps_get(&nuv_caps))
|
renatofilho@75
|
2336 |
static void
|
renatofilho@75
|
2337 |
nuv_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2338 |
{
|
renatofilho@75
|
2339 |
guint8 *data = gst_type_find_peek (tf, 0, 11);
|
renatofilho@75
|
2340 |
|
renatofilho@75
|
2341 |
if (data) {
|
renatofilho@75
|
2342 |
if (memcmp (data, "MythTVVideo", 11) == 0
|
renatofilho@75
|
2343 |
|| memcmp (data, "NuppelVideo", 11) == 0) {
|
renatofilho@75
|
2344 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, NUV_CAPS);
|
renatofilho@75
|
2345 |
}
|
renatofilho@75
|
2346 |
}
|
renatofilho@75
|
2347 |
}
|
renatofilho@75
|
2348 |
|
renatofilho@75
|
2349 |
/*** audio/x-paris ***/
|
renatofilho@75
|
2350 |
/* NOTE: do not replace this function with two TYPE_FIND_REGISTER_START_WITH */
|
renatofilho@75
|
2351 |
static GstStaticCaps paris_caps = GST_STATIC_CAPS ("audio/x-paris");
|
renatofilho@75
|
2352 |
|
renatofilho@75
|
2353 |
#define PARIS_CAPS (gst_static_caps_get(&paris_caps))
|
renatofilho@75
|
2354 |
static void
|
renatofilho@75
|
2355 |
paris_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2356 |
{
|
renatofilho@75
|
2357 |
guint8 *data = gst_type_find_peek (tf, 0, 4);
|
renatofilho@75
|
2358 |
|
renatofilho@75
|
2359 |
if (data) {
|
renatofilho@75
|
2360 |
if (memcmp (data, " paf", 4) == 0 || memcmp (data, "fap ", 4) == 0) {
|
renatofilho@75
|
2361 |
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, PARIS_CAPS);
|
renatofilho@75
|
2362 |
}
|
renatofilho@75
|
2363 |
}
|
renatofilho@75
|
2364 |
}
|
renatofilho@75
|
2365 |
|
renatofilho@75
|
2366 |
/*** audio/iLBC-sh ***/
|
renatofilho@75
|
2367 |
/* NOTE: do not replace this function with two TYPE_FIND_REGISTER_START_WITH */
|
renatofilho@75
|
2368 |
static GstStaticCaps ilbc_caps = GST_STATIC_CAPS ("audio/iLBC-sh");
|
renatofilho@75
|
2369 |
|
renatofilho@75
|
2370 |
#define ILBC_CAPS (gst_static_caps_get(&ilbc_caps))
|
renatofilho@75
|
2371 |
static void
|
renatofilho@75
|
2372 |
ilbc_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2373 |
{
|
renatofilho@75
|
2374 |
guint8 *data = gst_type_find_peek (tf, 0, 8);
|
renatofilho@75
|
2375 |
|
renatofilho@75
|
2376 |
if (data) {
|
renatofilho@75
|
2377 |
if (memcmp (data, "#!iLBC30", 8) == 0 || memcmp (data, "#!iLBC20", 8) == 0) {
|
renatofilho@75
|
2378 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, ILBC_CAPS);
|
renatofilho@75
|
2379 |
}
|
renatofilho@75
|
2380 |
}
|
renatofilho@75
|
2381 |
}
|
renatofilho@75
|
2382 |
|
renatofilho@75
|
2383 |
/*** application/x-ms-dos-executable ***/
|
renatofilho@75
|
2384 |
|
renatofilho@75
|
2385 |
static GstStaticCaps msdos_caps =
|
renatofilho@75
|
2386 |
GST_STATIC_CAPS ("application/x-ms-dos-executable");
|
renatofilho@75
|
2387 |
#define MSDOS_CAPS (gst_static_caps_get(&msdos_caps))
|
renatofilho@75
|
2388 |
/* see http://www.madchat.org/vxdevl/papers/winsys/pefile/pefile.htm */
|
renatofilho@75
|
2389 |
static void
|
renatofilho@75
|
2390 |
msdos_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2391 |
{
|
renatofilho@75
|
2392 |
guint8 *data = gst_type_find_peek (tf, 0, 64);
|
renatofilho@75
|
2393 |
|
renatofilho@75
|
2394 |
if (data && data[0] == 'M' && data[1] == 'Z' &&
|
renatofilho@75
|
2395 |
GST_READ_UINT16_LE (data + 8) == 4) {
|
renatofilho@75
|
2396 |
guint32 pe_offset = GST_READ_UINT32_LE (data + 60);
|
renatofilho@75
|
2397 |
|
renatofilho@75
|
2398 |
data = gst_type_find_peek (tf, pe_offset, 2);
|
renatofilho@75
|
2399 |
if (data && data[0] == 'P' && data[1] == 'E') {
|
renatofilho@75
|
2400 |
gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN, MSDOS_CAPS);
|
renatofilho@75
|
2401 |
}
|
renatofilho@75
|
2402 |
}
|
renatofilho@75
|
2403 |
}
|
renatofilho@75
|
2404 |
|
renatofilho@75
|
2405 |
/*** application/x-mmsh ***/
|
renatofilho@75
|
2406 |
|
renatofilho@75
|
2407 |
static GstStaticCaps mmsh_caps = GST_STATIC_CAPS ("application/x-mmsh");
|
renatofilho@75
|
2408 |
|
renatofilho@75
|
2409 |
#define MMSH_CAPS gst_static_caps_get(&mmsh_caps)
|
renatofilho@75
|
2410 |
|
renatofilho@75
|
2411 |
/* This is to recognise mssh-over-http */
|
renatofilho@75
|
2412 |
static void
|
renatofilho@75
|
2413 |
mmsh_type_find (GstTypeFind * tf, gpointer unused)
|
renatofilho@75
|
2414 |
{
|
renatofilho@75
|
2415 |
static const guint8 asf_marker[16] = { 0x30, 0x26, 0xb2, 0x75, 0x8e, 0x66,
|
renatofilho@75
|
2416 |
0xcf, 0x11, 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c
|
renatofilho@75
|
2417 |
};
|
renatofilho@75
|
2418 |
|
renatofilho@75
|
2419 |
guint8 *data;
|
renatofilho@75
|
2420 |
|
renatofilho@75
|
2421 |
data = gst_type_find_peek (tf, 0, 2 + 2 + 4 + 2 + 2 + 16);
|
renatofilho@75
|
2422 |
if (data && data[0] == 0x24 && data[1] == 0x48 &&
|
renatofilho@75
|
2423 |
GST_READ_UINT16_LE (data + 2) > 2 + 2 + 4 + 2 + 2 + 16 &&
|
renatofilho@75
|
2424 |
memcmp (data + 2 + 2 + 4 + 2 + 2, asf_marker, 16) == 0) {
|
renatofilho@75
|
2425 |
GstCaps *caps = gst_caps_copy (MMSH_CAPS);
|
renatofilho@75
|
2426 |
|
renatofilho@75
|
2427 |
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, caps);
|
renatofilho@75
|
2428 |
gst_caps_unref (caps);
|
renatofilho@75
|
2429 |
return;
|
renatofilho@75
|
2430 |
}
|
renatofilho@75
|
2431 |
}
|
renatofilho@75
|
2432 |
|
renatofilho@75
|
2433 |
/*** generic typefind for streams that have some data at a specific position***/
|
renatofilho@75
|
2434 |
typedef struct
|
renatofilho@75
|
2435 |
{
|
renatofilho@75
|
2436 |
const guint8 *data;
|
renatofilho@75
|
2437 |
guint size;
|
renatofilho@75
|
2438 |
guint probability;
|
renatofilho@75
|
2439 |
GstCaps *caps;
|
renatofilho@75
|
2440 |
}
|
renatofilho@75
|
2441 |
GstTypeFindData;
|
renatofilho@75
|
2442 |
|
renatofilho@75
|
2443 |
static void
|
renatofilho@75
|
2444 |
start_with_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2445 |
{
|
renatofilho@75
|
2446 |
GstTypeFindData *start_with = (GstTypeFindData *) private;
|
renatofilho@75
|
2447 |
guint8 *data;
|
renatofilho@75
|
2448 |
|
renatofilho@75
|
2449 |
GST_LOG ("trying to find mime type %s with the first %u bytes of data",
|
renatofilho@75
|
2450 |
gst_structure_get_name (gst_caps_get_structure (start_with->caps, 0)),
|
renatofilho@75
|
2451 |
start_with->size);
|
renatofilho@75
|
2452 |
data = gst_type_find_peek (tf, 0, start_with->size);
|
renatofilho@75
|
2453 |
if (data && memcmp (data, start_with->data, start_with->size) == 0) {
|
renatofilho@75
|
2454 |
gst_type_find_suggest (tf, start_with->probability, start_with->caps);
|
renatofilho@75
|
2455 |
}
|
renatofilho@75
|
2456 |
}
|
renatofilho@75
|
2457 |
|
renatofilho@75
|
2458 |
static void
|
renatofilho@75
|
2459 |
sw_data_destroy (GstTypeFindData * sw_data)
|
renatofilho@75
|
2460 |
{
|
renatofilho@75
|
2461 |
if (G_LIKELY (sw_data->caps != NULL))
|
renatofilho@75
|
2462 |
gst_caps_unref (sw_data->caps);
|
renatofilho@75
|
2463 |
g_free (sw_data);
|
renatofilho@75
|
2464 |
}
|
renatofilho@75
|
2465 |
|
renatofilho@75
|
2466 |
#define TYPE_FIND_REGISTER_START_WITH(plugin,name,rank,ext,_data,_size,_probability)\
|
renatofilho@75
|
2467 |
G_BEGIN_DECLS{ \
|
renatofilho@75
|
2468 |
GstTypeFindData *sw_data = g_new (GstTypeFindData, 1); \
|
renatofilho@75
|
2469 |
sw_data->data = (const guint8 *)_data; \
|
renatofilho@75
|
2470 |
sw_data->size = _size; \
|
renatofilho@75
|
2471 |
sw_data->probability = _probability; \
|
renatofilho@75
|
2472 |
sw_data->caps = gst_caps_new_simple (name, NULL); \
|
renatofilho@75
|
2473 |
if (!gst_type_find_register (plugin, name, rank, start_with_type_find,\
|
renatofilho@75
|
2474 |
ext, sw_data->caps, sw_data, \
|
renatofilho@75
|
2475 |
(GDestroyNotify) (sw_data_destroy))) { \
|
renatofilho@75
|
2476 |
gst_caps_unref (sw_data->caps); \
|
renatofilho@75
|
2477 |
g_free (sw_data); \
|
renatofilho@75
|
2478 |
} \
|
renatofilho@75
|
2479 |
}G_END_DECLS
|
renatofilho@75
|
2480 |
|
renatofilho@75
|
2481 |
/*** same for riff types ***/
|
renatofilho@75
|
2482 |
|
renatofilho@75
|
2483 |
static void
|
renatofilho@75
|
2484 |
riff_type_find (GstTypeFind * tf, gpointer private)
|
renatofilho@75
|
2485 |
{
|
renatofilho@75
|
2486 |
GstTypeFindData *riff_data = (GstTypeFindData *) private;
|
renatofilho@75
|
2487 |
guint8 *data = gst_type_find_peek (tf, 0, 12);
|
renatofilho@75
|
2488 |
|
renatofilho@75
|
2489 |
if (data && memcmp (data, "RIFF", 4) == 0) {
|
renatofilho@75
|
2490 |
data += 8;
|
renatofilho@75
|
2491 |
if (memcmp (data, riff_data->data, 4) == 0)
|
renatofilho@75
|
2492 |
gst_type_find_suggest (tf, riff_data->probability, riff_data->caps);
|
renatofilho@75
|
2493 |
}
|
renatofilho@75
|
2494 |
}
|
renatofilho@75
|
2495 |
|
renatofilho@75
|
2496 |
#define TYPE_FIND_REGISTER_RIFF(plugin,name,rank,ext,_data) \
|
renatofilho@75
|
2497 |
G_BEGIN_DECLS{ \
|
renatofilho@75
|
2498 |
GstTypeFindData *sw_data = g_new (GstTypeFindData, 1); \
|
renatofilho@75
|
2499 |
sw_data->data = (gpointer)_data; \
|
renatofilho@75
|
2500 |
sw_data->size = 4; \
|
renatofilho@75
|
2501 |
sw_data->probability = GST_TYPE_FIND_MAXIMUM; \
|
renatofilho@75
|
2502 |
sw_data->caps = gst_caps_new_simple (name, NULL); \
|
renatofilho@75
|
2503 |
if (!gst_type_find_register (plugin, name, rank, riff_type_find, \
|
renatofilho@75
|
2504 |
ext, sw_data->caps, sw_data, \
|
renatofilho@75
|
2505 |
(GDestroyNotify) (sw_data_destroy))) { \
|
renatofilho@75
|
2506 |
gst_caps_unref (sw_data->caps); \
|
renatofilho@75
|
2507 |
g_free (sw_data); \
|
renatofilho@75
|
2508 |
} \
|
renatofilho@75
|
2509 |
}G_END_DECLS
|
renatofilho@75
|
2510 |
|
renatofilho@75
|
2511 |
|
renatofilho@75
|
2512 |
|
renatofilho@75
|
2513 |
/*** plugin initialization ***/
|
renatofilho@75
|
2514 |
|
renatofilho@75
|
2515 |
#define TYPE_FIND_REGISTER(plugin,name,rank,func,ext,caps,priv,notify) \
|
renatofilho@75
|
2516 |
G_BEGIN_DECLS{\
|
renatofilho@75
|
2517 |
if (!gst_type_find_register (plugin, name, rank, func, ext, caps, priv, notify))\
|
renatofilho@75
|
2518 |
return FALSE; \
|
renatofilho@75
|
2519 |
}G_END_DECLS
|
renatofilho@75
|
2520 |
static gboolean
|
renatofilho@75
|
2521 |
plugin_init (GstPlugin * plugin)
|
renatofilho@75
|
2522 |
{
|
renatofilho@75
|
2523 |
/* can't initialize this via a struct as caps can't be statically initialized */
|
renatofilho@75
|
2524 |
|
renatofilho@75
|
2525 |
/* note: asx/wax/wmx are XML files, asf doesn't handle them */
|
renatofilho@75
|
2526 |
/* FIXME-0.11: these should be const,
|
renatofilho@75
|
2527 |
this requires gstreamer/gst/gsttypefind::gst_type_find_register()
|
renatofilho@75
|
2528 |
to have define the parameter as const
|
renatofilho@75
|
2529 |
*/
|
renatofilho@75
|
2530 |
static gchar *asf_exts[] = { "asf", "wm", "wma", "wmv", NULL };
|
renatofilho@75
|
2531 |
static gchar *au_exts[] = { "au", "snd", NULL };
|
renatofilho@75
|
2532 |
static gchar *avi_exts[] = { "avi", NULL };
|
renatofilho@75
|
2533 |
static gchar *cdxa_exts[] = { "dat", NULL };
|
renatofilho@75
|
2534 |
static gchar *flac_exts[] = { "flac", NULL };
|
renatofilho@75
|
2535 |
static gchar *flx_exts[] = { "flc", "fli", NULL };
|
renatofilho@75
|
2536 |
static gchar *id3_exts[] =
|
renatofilho@75
|
2537 |
{ "mp3", "mp2", "mp1", "mpga", "ogg", "flac", "tta", NULL };
|
renatofilho@75
|
2538 |
static gchar *apetag_exts[] = { "ape", "mpc", "wv", NULL }; /* and mp3 and wav? */
|
renatofilho@75
|
2539 |
static gchar *tta_exts[] = { "tta", NULL };
|
renatofilho@75
|
2540 |
static gchar *mod_exts[] = { "669", "amf", "dsm", "gdm", "far", "imf",
|
renatofilho@75
|
2541 |
"it", "med", "mod", "mtm", "okt", "sam",
|
renatofilho@75
|
2542 |
"s3m", "stm", "stx", "ult", "xm", NULL
|
renatofilho@75
|
2543 |
};
|
renatofilho@75
|
2544 |
static gchar *mp3_exts[] = { "mp3", "mp2", "mp1", "mpga", NULL };
|
renatofilho@75
|
2545 |
static gchar *ac3_exts[] = { "ac3", NULL };
|
renatofilho@75
|
2546 |
static gchar *musepack_exts[] = { "mpc", NULL };
|
renatofilho@75
|
2547 |
static gchar *mpeg_sys_exts[] = { "mpe", "mpeg", "mpg", NULL };
|
renatofilho@75
|
2548 |
static gchar *mpeg_video_exts[] = { "mpv", "mpeg", "mpg", NULL };
|
renatofilho@75
|
2549 |
static gchar *mpeg_ts_exts[] = { "ts", NULL };
|
renatofilho@75
|
2550 |
static gchar *ogg_exts[] = { "anx", "ogg", "ogm", NULL };
|
renatofilho@75
|
2551 |
static gchar *qt_exts[] = { "mov", NULL };
|
renatofilho@75
|
2552 |
static gchar *qtif_exts[] = { "qif", "qtif", "qti", NULL };
|
renatofilho@75
|
2553 |
static gchar *rm_exts[] = { "ra", "ram", "rm", "rmvb", NULL };
|
renatofilho@75
|
2554 |
static gchar *swf_exts[] = { "swf", "swfl", NULL };
|
renatofilho@75
|
2555 |
static gchar *utf8_exts[] = { "txt", NULL };
|
renatofilho@75
|
2556 |
static gchar *wav_exts[] = { "wav", NULL };
|
renatofilho@75
|
2557 |
static gchar *aiff_exts[] = { "aiff", "aif", "aifc", NULL };
|
renatofilho@75
|
2558 |
static gchar *svx_exts[] = { "iff", "svx", NULL };
|
renatofilho@75
|
2559 |
static gchar *paris_exts[] = { "paf", NULL };
|
renatofilho@75
|
2560 |
static gchar *nist_exts[] = { "nist", NULL };
|
renatofilho@75
|
2561 |
static gchar *voc_exts[] = { "voc", NULL };
|
renatofilho@75
|
2562 |
static gchar *sds_exts[] = { "sds", NULL };
|
renatofilho@75
|
2563 |
static gchar *ircam_exts[] = { "sf", NULL };
|
renatofilho@75
|
2564 |
static gchar *w64_exts[] = { "w64", NULL };
|
renatofilho@75
|
2565 |
static gchar *shn_exts[] = { "shn", NULL };
|
renatofilho@75
|
2566 |
static gchar *ape_exts[] = { "ape", NULL };
|
renatofilho@75
|
2567 |
static gchar *uri_exts[] = { "ram", NULL };
|
renatofilho@75
|
2568 |
static gchar *smil_exts[] = { "smil", NULL };
|
renatofilho@75
|
2569 |
static gchar *html_exts[] = { "htm", "html", NULL };
|
renatofilho@75
|
2570 |
static gchar *xml_exts[] = { "xml", NULL };
|
renatofilho@75
|
2571 |
static gchar *jpeg_exts[] = { "jpg", "jpe", "jpeg", NULL };
|
renatofilho@75
|
2572 |
static gchar *gif_exts[] = { "gif", NULL };
|
renatofilho@75
|
2573 |
static gchar *png_exts[] = { "png", NULL };
|
renatofilho@75
|
2574 |
static gchar *bmp_exts[] = { "bmp", NULL };
|
renatofilho@75
|
2575 |
static gchar *tiff_exts[] = { "tif", "tiff", NULL };
|
renatofilho@75
|
2576 |
static gchar *matroska_exts[] = { "mkv", "mka", NULL };
|
renatofilho@75
|
2577 |
static gchar *mve_exts[] = { "mve", NULL };
|
renatofilho@75
|
2578 |
static gchar *dv_exts[] = { "dv", "dif", NULL };
|
renatofilho@75
|
2579 |
static gchar *amr_exts[] = { "amr", NULL };
|
renatofilho@75
|
2580 |
static gchar *ilbc_exts[] = { "ilbc", NULL };
|
renatofilho@75
|
2581 |
static gchar *sid_exts[] = { "sid", NULL };
|
renatofilho@75
|
2582 |
static gchar *xcf_exts[] = { "xcf", NULL };
|
renatofilho@75
|
2583 |
static gchar *mng_exts[] = { "mng", NULL };
|
renatofilho@75
|
2584 |
static gchar *jng_exts[] = { "jng", NULL };
|
renatofilho@75
|
2585 |
static gchar *xpm_exts[] = { "xpm", NULL };
|
renatofilho@75
|
2586 |
static gchar *ras_exts[] = { "ras", NULL };
|
renatofilho@75
|
2587 |
static gchar *bz2_exts[] = { "bz2", NULL };
|
renatofilho@75
|
2588 |
static gchar *gz_exts[] = { "gz", NULL };
|
renatofilho@75
|
2589 |
static gchar *zip_exts[] = { "zip", NULL };
|
renatofilho@75
|
2590 |
static gchar *compress_exts[] = { "Z", NULL };
|
renatofilho@75
|
2591 |
static gchar *m4a_exts[] = { "m4a", NULL };
|
renatofilho@75
|
2592 |
static gchar *q3gp_exts[] = { "3gp", NULL };
|
renatofilho@75
|
2593 |
static gchar *aac_exts[] = { "aac", NULL };
|
renatofilho@75
|
2594 |
static gchar *spc_exts[] = { "spc", NULL };
|
renatofilho@75
|
2595 |
static gchar *wavpack_exts[] = { "wv", "wvp", NULL };
|
renatofilho@75
|
2596 |
static gchar *wavpack_correction_exts[] = { "wvc", NULL };
|
renatofilho@75
|
2597 |
static gchar *rar_exts[] = { "rar", NULL };
|
renatofilho@75
|
2598 |
static gchar *tar_exts[] = { "tar", NULL };
|
renatofilho@75
|
2599 |
static gchar *ar_exts[] = { "a", NULL };
|
renatofilho@75
|
2600 |
static gchar *msdos_exts[] = { "dll", "exe", "ocx", "sys", "scr",
|
renatofilho@75
|
2601 |
"msstyles", "cpl", NULL
|
renatofilho@75
|
2602 |
};
|
renatofilho@75
|
2603 |
static gchar *flv_exts[] = { "flv", NULL };
|
renatofilho@75
|
2604 |
static gchar *m4v_exts[] = { "m4v", NULL };
|
renatofilho@75
|
2605 |
static gchar *nuv_exts[] = { "nuv", NULL };
|
renatofilho@75
|
2606 |
|
renatofilho@75
|
2607 |
GST_DEBUG_CATEGORY_INIT (type_find_debug, "typefindfunctions",
|
renatofilho@75
|
2608 |
GST_DEBUG_FG_GREEN | GST_DEBUG_BG_RED, "generic type find functions");
|
renatofilho@75
|
2609 |
|
renatofilho@75
|
2610 |
/* must use strings, macros don't accept initializers */
|
renatofilho@75
|
2611 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-ms-asf", GST_RANK_SECONDARY,
|
renatofilho@75
|
2612 |
asf_exts,
|
renatofilho@75
|
2613 |
"\060\046\262\165\216\146\317\021\246\331\000\252\000\142\316\154", 16,
|
renatofilho@75
|
2614 |
GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2615 |
TYPE_FIND_REGISTER (plugin, "audio/x-musepack", GST_RANK_PRIMARY,
|
renatofilho@75
|
2616 |
musepack_type_find, musepack_exts, MUSEPACK_CAPS, NULL, NULL);
|
renatofilho@75
|
2617 |
TYPE_FIND_REGISTER (plugin, "audio/x-au", GST_RANK_MARGINAL,
|
renatofilho@75
|
2618 |
au_type_find, au_exts, AU_CAPS, NULL, NULL);
|
renatofilho@75
|
2619 |
TYPE_FIND_REGISTER_RIFF (plugin, "video/x-msvideo", GST_RANK_PRIMARY,
|
renatofilho@75
|
2620 |
avi_exts, "AVI ");
|
renatofilho@75
|
2621 |
TYPE_FIND_REGISTER_RIFF (plugin, "video/x-cdxa", GST_RANK_PRIMARY,
|
renatofilho@75
|
2622 |
cdxa_exts, "CDXA");
|
renatofilho@75
|
2623 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-vcd", GST_RANK_PRIMARY,
|
renatofilho@75
|
2624 |
cdxa_exts, "\000\377\377\377\377\377\377\377\377\377\377\000", 12,
|
renatofilho@75
|
2625 |
GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2626 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-flac", GST_RANK_PRIMARY,
|
renatofilho@75
|
2627 |
flac_exts, "fLaC", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2628 |
TYPE_FIND_REGISTER (plugin, "video/x-fli", GST_RANK_MARGINAL, flx_type_find,
|
renatofilho@75
|
2629 |
flx_exts, FLX_CAPS, NULL, NULL);
|
renatofilho@75
|
2630 |
TYPE_FIND_REGISTER (plugin, "application/x-id3v2", GST_RANK_PRIMARY + 3,
|
renatofilho@75
|
2631 |
id3v2_type_find, id3_exts, ID3_CAPS, NULL, NULL);
|
renatofilho@75
|
2632 |
TYPE_FIND_REGISTER (plugin, "application/x-id3v1", GST_RANK_PRIMARY + 1,
|
renatofilho@75
|
2633 |
id3v1_type_find, id3_exts, ID3_CAPS, NULL, NULL);
|
renatofilho@75
|
2634 |
TYPE_FIND_REGISTER (plugin, "application/x-apetag", GST_RANK_PRIMARY + 2,
|
renatofilho@75
|
2635 |
apetag_type_find, apetag_exts, APETAG_CAPS, NULL, NULL);
|
renatofilho@75
|
2636 |
TYPE_FIND_REGISTER (plugin, "audio/x-ttafile", GST_RANK_PRIMARY,
|
renatofilho@75
|
2637 |
tta_type_find, tta_exts, TTA_CAPS, NULL, NULL);
|
renatofilho@75
|
2638 |
TYPE_FIND_REGISTER (plugin, "audio/x-mod", GST_RANK_SECONDARY, mod_type_find,
|
renatofilho@75
|
2639 |
mod_exts, MOD_CAPS, NULL, NULL);
|
renatofilho@75
|
2640 |
TYPE_FIND_REGISTER (plugin, "audio/mpeg", GST_RANK_PRIMARY, mp3_type_find,
|
renatofilho@75
|
2641 |
mp3_exts, MP3_CAPS, NULL, NULL);
|
renatofilho@75
|
2642 |
TYPE_FIND_REGISTER (plugin, "audio/x-ac3", GST_RANK_PRIMARY, ac3_type_find,
|
renatofilho@75
|
2643 |
ac3_exts, AC3_CAPS, NULL, NULL);
|
renatofilho@75
|
2644 |
TYPE_FIND_REGISTER (plugin, "video/mpeg1", GST_RANK_PRIMARY,
|
renatofilho@75
|
2645 |
mpeg1_sys_type_find, mpeg_sys_exts, MPEG_SYS_CAPS, NULL, NULL);
|
renatofilho@75
|
2646 |
TYPE_FIND_REGISTER (plugin, "video/mpeg2", GST_RANK_SECONDARY,
|
renatofilho@75
|
2647 |
mpeg2_sys_type_find, mpeg_sys_exts, MPEG_SYS_CAPS, NULL, NULL);
|
renatofilho@75
|
2648 |
TYPE_FIND_REGISTER (plugin, "video/mpegts", GST_RANK_PRIMARY,
|
renatofilho@75
|
2649 |
mpeg_ts_type_find, mpeg_ts_exts, MPEGTS_CAPS, NULL, NULL);
|
renatofilho@75
|
2650 |
TYPE_FIND_REGISTER (plugin, "application/ogg", GST_RANK_PRIMARY,
|
renatofilho@75
|
2651 |
ogganx_type_find, ogg_exts, OGGANX_CAPS, NULL, NULL);
|
renatofilho@75
|
2652 |
TYPE_FIND_REGISTER (plugin, "video/mpeg", GST_RANK_SECONDARY,
|
renatofilho@75
|
2653 |
mpeg_video_type_find, mpeg_video_exts, MPEG_VIDEO_CAPS, NULL, NULL);
|
renatofilho@75
|
2654 |
TYPE_FIND_REGISTER (plugin, "video/mpeg-stream", GST_RANK_MARGINAL,
|
renatofilho@75
|
2655 |
mpeg_video_stream_type_find, mpeg_video_exts, MPEG_VIDEO_CAPS, NULL,
|
renatofilho@75
|
2656 |
NULL);
|
renatofilho@75
|
2657 |
TYPE_FIND_REGISTER (plugin, "video/mpeg4", GST_RANK_PRIMARY,
|
renatofilho@75
|
2658 |
mpeg4_video_type_find, m4v_exts, MPEG_VIDEO_CAPS, NULL, NULL);
|
renatofilho@75
|
2659 |
TYPE_FIND_REGISTER (plugin, "video/x-nuv", GST_RANK_SECONDARY,
|
renatofilho@75
|
2660 |
nuv_type_find, nuv_exts, NUV_CAPS, NULL, NULL);
|
renatofilho@75
|
2661 |
|
renatofilho@75
|
2662 |
/* ISO formats */
|
renatofilho@75
|
2663 |
TYPE_FIND_REGISTER (plugin, "audio/x-m4a", GST_RANK_PRIMARY, m4a_type_find,
|
renatofilho@75
|
2664 |
m4a_exts, M4A_CAPS, NULL, NULL);
|
renatofilho@75
|
2665 |
TYPE_FIND_REGISTER (plugin, "application/x-3gp", GST_RANK_PRIMARY,
|
renatofilho@75
|
2666 |
q3gp_type_find, q3gp_exts, Q3GP_CAPS, NULL, NULL);
|
renatofilho@75
|
2667 |
TYPE_FIND_REGISTER (plugin, "video/quicktime", GST_RANK_SECONDARY,
|
renatofilho@75
|
2668 |
qt_type_find, qt_exts, QT_CAPS, NULL, NULL);
|
renatofilho@75
|
2669 |
TYPE_FIND_REGISTER (plugin, "image/x-quicktime", GST_RANK_SECONDARY,
|
renatofilho@75
|
2670 |
qtif_type_find, qtif_exts, QTIF_CAPS, NULL, NULL);
|
renatofilho@75
|
2671 |
|
renatofilho@75
|
2672 |
TYPE_FIND_REGISTER (plugin, "text/html", GST_RANK_SECONDARY, html_type_find,
|
renatofilho@75
|
2673 |
html_exts, HTML_CAPS, NULL, NULL);
|
renatofilho@75
|
2674 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/vnd.rn-realmedia",
|
renatofilho@75
|
2675 |
GST_RANK_SECONDARY, rm_exts, ".RMF", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2676 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-pn-realaudio",
|
renatofilho@75
|
2677 |
GST_RANK_SECONDARY, rm_exts, ".ra\375", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2678 |
TYPE_FIND_REGISTER (plugin, "application/x-shockwave-flash",
|
renatofilho@75
|
2679 |
GST_RANK_SECONDARY, swf_type_find, swf_exts, SWF_CAPS, NULL, NULL);
|
renatofilho@75
|
2680 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-flv", GST_RANK_SECONDARY,
|
renatofilho@75
|
2681 |
flv_exts, "FLV", 3, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2682 |
TYPE_FIND_REGISTER (plugin, "text/plain", GST_RANK_MARGINAL, utf8_type_find,
|
renatofilho@75
|
2683 |
utf8_exts, UTF8_CAPS, NULL, NULL);
|
renatofilho@75
|
2684 |
TYPE_FIND_REGISTER (plugin, "text/uri-list", GST_RANK_MARGINAL, uri_type_find,
|
renatofilho@75
|
2685 |
uri_exts, URI_CAPS, NULL, NULL);
|
renatofilho@75
|
2686 |
TYPE_FIND_REGISTER (plugin, "application/smil", GST_RANK_SECONDARY,
|
renatofilho@75
|
2687 |
smil_type_find, smil_exts, SMIL_CAPS, NULL, NULL);
|
renatofilho@75
|
2688 |
TYPE_FIND_REGISTER (plugin, "application/xml", GST_RANK_MARGINAL,
|
renatofilho@75
|
2689 |
xml_type_find, xml_exts, GENERIC_XML_CAPS, NULL, NULL);
|
renatofilho@75
|
2690 |
TYPE_FIND_REGISTER_RIFF (plugin, "audio/x-wav", GST_RANK_PRIMARY, wav_exts,
|
renatofilho@75
|
2691 |
"WAVE");
|
renatofilho@75
|
2692 |
TYPE_FIND_REGISTER (plugin, "audio/x-aiff", GST_RANK_SECONDARY,
|
renatofilho@75
|
2693 |
aiff_type_find, aiff_exts, AIFF_CAPS, NULL, NULL);
|
renatofilho@75
|
2694 |
TYPE_FIND_REGISTER (plugin, "audio/x-svx", GST_RANK_SECONDARY, svx_type_find,
|
renatofilho@75
|
2695 |
svx_exts, SVX_CAPS, NULL, NULL);
|
renatofilho@75
|
2696 |
TYPE_FIND_REGISTER (plugin, "audio/x-paris", GST_RANK_SECONDARY,
|
renatofilho@75
|
2697 |
paris_type_find, paris_exts, PARIS_CAPS, NULL, NULL);
|
renatofilho@75
|
2698 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-nist", GST_RANK_SECONDARY,
|
renatofilho@75
|
2699 |
nist_exts, "NIST", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2700 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-voc", GST_RANK_SECONDARY,
|
renatofilho@75
|
2701 |
voc_exts, "Creative", 8, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2702 |
TYPE_FIND_REGISTER (plugin, "audio/x-sds", GST_RANK_SECONDARY, sds_type_find,
|
renatofilho@75
|
2703 |
sds_exts, SDS_CAPS, NULL, NULL);
|
renatofilho@75
|
2704 |
TYPE_FIND_REGISTER (plugin, "audio/x-ircam", GST_RANK_SECONDARY,
|
renatofilho@75
|
2705 |
ircam_type_find, ircam_exts, IRCAM_CAPS, NULL, NULL);
|
renatofilho@75
|
2706 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-w64", GST_RANK_SECONDARY,
|
renatofilho@75
|
2707 |
w64_exts, "riff", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2708 |
TYPE_FIND_REGISTER (plugin, "audio/x-shorten", GST_RANK_SECONDARY,
|
renatofilho@75
|
2709 |
shn_type_find, shn_exts, SHN_CAPS, NULL, NULL);
|
renatofilho@75
|
2710 |
TYPE_FIND_REGISTER (plugin, "application/x-ape", GST_RANK_SECONDARY,
|
renatofilho@75
|
2711 |
ape_type_find, ape_exts, APE_CAPS, NULL, NULL);
|
renatofilho@75
|
2712 |
TYPE_FIND_REGISTER (plugin, "image/jpeg", GST_RANK_PRIMARY, jpeg_type_find,
|
renatofilho@75
|
2713 |
jpeg_exts, JPEG_CAPS, NULL, NULL);
|
renatofilho@75
|
2714 |
TYPE_FIND_REGISTER_START_WITH (plugin, "image/gif", GST_RANK_PRIMARY,
|
renatofilho@75
|
2715 |
gif_exts, "GIF8", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2716 |
TYPE_FIND_REGISTER_START_WITH (plugin, "image/png", GST_RANK_PRIMARY,
|
renatofilho@75
|
2717 |
png_exts, "\211PNG\015\012\032\012", 8, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2718 |
TYPE_FIND_REGISTER (plugin, "image/bmp", GST_RANK_PRIMARY, bmp_type_find,
|
renatofilho@75
|
2719 |
bmp_exts, BMP_CAPS, NULL, NULL);
|
renatofilho@75
|
2720 |
TYPE_FIND_REGISTER (plugin, "image/tiff", GST_RANK_PRIMARY, tiff_type_find,
|
renatofilho@75
|
2721 |
tiff_exts, TIFF_CAPS, NULL, NULL);
|
renatofilho@75
|
2722 |
TYPE_FIND_REGISTER (plugin, "video/x-matroska", GST_RANK_PRIMARY,
|
renatofilho@75
|
2723 |
matroska_type_find, matroska_exts, MATROSKA_CAPS, NULL, NULL);
|
renatofilho@75
|
2724 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-mve", GST_RANK_SECONDARY,
|
renatofilho@75
|
2725 |
mve_exts, "Interplay MVE File\032\000\032\000\000\001\063\021", 26,
|
renatofilho@75
|
2726 |
GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2727 |
TYPE_FIND_REGISTER (plugin, "video/x-dv", GST_RANK_SECONDARY, dv_type_find,
|
renatofilho@75
|
2728 |
dv_exts, DV_CAPS, NULL, NULL);
|
renatofilho@75
|
2729 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-amr-nb-sh", GST_RANK_PRIMARY,
|
renatofilho@75
|
2730 |
amr_exts, "#!AMR", 5, GST_TYPE_FIND_LIKELY);
|
renatofilho@75
|
2731 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-amr-wb-sh", GST_RANK_PRIMARY,
|
renatofilho@75
|
2732 |
amr_exts, "#!AMR-WB", 7, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2733 |
TYPE_FIND_REGISTER (plugin, "audio/iLBC-sh", GST_RANK_PRIMARY,
|
renatofilho@75
|
2734 |
ilbc_type_find, ilbc_exts, ILBC_CAPS, NULL, NULL);
|
renatofilho@75
|
2735 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-sid", GST_RANK_MARGINAL,
|
renatofilho@75
|
2736 |
sid_exts, "PSID", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2737 |
TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-xcf", GST_RANK_SECONDARY,
|
renatofilho@75
|
2738 |
xcf_exts, "gimp xcf", 8, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2739 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-mng", GST_RANK_SECONDARY,
|
renatofilho@75
|
2740 |
mng_exts, "\212MNG\015\012\032\012", 8, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2741 |
TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-jng", GST_RANK_SECONDARY,
|
renatofilho@75
|
2742 |
jng_exts, "\213JNG\015\012\032\012", 8, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2743 |
TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-xpixmap", GST_RANK_SECONDARY,
|
renatofilho@75
|
2744 |
xpm_exts, "/* XPM */", 9, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2745 |
TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-sun-raster",
|
renatofilho@75
|
2746 |
GST_RANK_SECONDARY, ras_exts, "\131\246\152\225", 4,
|
renatofilho@75
|
2747 |
GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2748 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-bzip",
|
renatofilho@75
|
2749 |
GST_RANK_SECONDARY, bz2_exts, "BZh", 3, GST_TYPE_FIND_LIKELY);
|
renatofilho@75
|
2750 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-gzip",
|
renatofilho@75
|
2751 |
GST_RANK_SECONDARY, gz_exts, "\037\213", 2, GST_TYPE_FIND_LIKELY);
|
renatofilho@75
|
2752 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/zip", GST_RANK_SECONDARY,
|
renatofilho@75
|
2753 |
zip_exts, "PK\003\004", 4, GST_TYPE_FIND_LIKELY);
|
renatofilho@75
|
2754 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-compress",
|
renatofilho@75
|
2755 |
GST_RANK_SECONDARY, compress_exts, "\037\235", 2, GST_TYPE_FIND_LIKELY);
|
renatofilho@75
|
2756 |
TYPE_FIND_REGISTER (plugin, "audio/x-vorbis", GST_RANK_PRIMARY,
|
renatofilho@75
|
2757 |
vorbis_type_find, NULL, VORBIS_CAPS, NULL, NULL);
|
renatofilho@75
|
2758 |
TYPE_FIND_REGISTER (plugin, "video/x-theora", GST_RANK_PRIMARY,
|
renatofilho@75
|
2759 |
theora_type_find, NULL, THEORA_CAPS, NULL, NULL);
|
renatofilho@75
|
2760 |
TYPE_FIND_REGISTER (plugin, "application/x-ogm-video", GST_RANK_PRIMARY,
|
renatofilho@75
|
2761 |
ogmvideo_type_find, NULL, OGMVIDEO_CAPS, NULL, NULL);
|
renatofilho@75
|
2762 |
TYPE_FIND_REGISTER (plugin, "application/x-ogm-audio", GST_RANK_PRIMARY,
|
renatofilho@75
|
2763 |
ogmaudio_type_find, NULL, OGMAUDIO_CAPS, NULL, NULL);
|
renatofilho@75
|
2764 |
TYPE_FIND_REGISTER (plugin, "application/x-ogm-text", GST_RANK_PRIMARY,
|
renatofilho@75
|
2765 |
ogmtext_type_find, NULL, OGMTEXT_CAPS, NULL, NULL);
|
renatofilho@75
|
2766 |
TYPE_FIND_REGISTER (plugin, "audio/x-speex", GST_RANK_PRIMARY,
|
renatofilho@75
|
2767 |
speex_type_find, NULL, SPEEX_CAPS, NULL, NULL);
|
renatofilho@75
|
2768 |
TYPE_FIND_REGISTER (plugin, "application/x-ogg-skeleton", GST_RANK_PRIMARY,
|
renatofilho@75
|
2769 |
oggskel_type_find, NULL, OGG_SKELETON_CAPS, NULL, NULL);
|
renatofilho@75
|
2770 |
TYPE_FIND_REGISTER (plugin, "text/x-cmml", GST_RANK_PRIMARY, cmml_type_find,
|
renatofilho@75
|
2771 |
NULL, CMML_CAPS, NULL, NULL);
|
renatofilho@75
|
2772 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-executable",
|
renatofilho@75
|
2773 |
GST_RANK_MARGINAL, NULL, "\177ELF", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2774 |
TYPE_FIND_REGISTER (plugin, "adts_mpeg_stream", GST_RANK_SECONDARY,
|
renatofilho@75
|
2775 |
aac_type_find, aac_exts, AAC_CAPS, NULL, NULL);
|
renatofilho@75
|
2776 |
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-spc", GST_RANK_SECONDARY,
|
renatofilho@75
|
2777 |
spc_exts, "SNES-SPC700 Sound File Data", 27, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2778 |
TYPE_FIND_REGISTER (plugin, "audio/x-wavpack", GST_RANK_SECONDARY,
|
renatofilho@75
|
2779 |
wavpack_type_find, wavpack_exts, WAVPACK_CAPS, NULL, NULL);
|
renatofilho@75
|
2780 |
TYPE_FIND_REGISTER (plugin, "audio/x-wavpack-correction", GST_RANK_SECONDARY,
|
renatofilho@75
|
2781 |
wavpack_type_find, wavpack_correction_exts, WAVPACK_CORRECTION_CAPS, NULL,
|
renatofilho@75
|
2782 |
NULL);
|
renatofilho@75
|
2783 |
TYPE_FIND_REGISTER_START_WITH (plugin, "application/x-rar",
|
renatofilho@75
|
2784 |
GST_RANK_SECONDARY, rar_exts, "Rar!", 4, GST_TYPE_FIND_LIKELY);
|
renatofilho@75
|
2785 |
TYPE_FIND_REGISTER (plugin, "application/x-tar", GST_RANK_SECONDARY,
|
renatofilho@75
|
2786 |
tar_type_find, tar_exts, TAR_CAPS, NULL, NULL);
|
renatofilho@75
|
2787 |
TYPE_FIND_REGISTER (plugin, "application/x-ar", GST_RANK_SECONDARY,
|
renatofilho@75
|
2788 |
ar_type_find, ar_exts, AR_CAPS, NULL, NULL);
|
renatofilho@75
|
2789 |
TYPE_FIND_REGISTER (plugin, "application/x-ms-dos-executable",
|
renatofilho@75
|
2790 |
GST_RANK_SECONDARY, msdos_type_find, msdos_exts, MSDOS_CAPS, NULL, NULL);
|
renatofilho@75
|
2791 |
#if 0
|
renatofilho@75
|
2792 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-dirac",
|
renatofilho@75
|
2793 |
GST_RANK_PRIMARY, NULL, "BBCD", 4, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2794 |
#endif
|
renatofilho@75
|
2795 |
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-dirac",
|
renatofilho@75
|
2796 |
GST_RANK_PRIMARY, NULL, "KW-DIRAC", 8, GST_TYPE_FIND_MAXIMUM);
|
renatofilho@75
|
2797 |
TYPE_FIND_REGISTER (plugin, "multipart/x-mixed-replace", GST_RANK_SECONDARY,
|
renatofilho@75
|
2798 |
multipart_type_find, NULL, MULTIPART_CAPS, NULL, NULL);
|
renatofilho@75
|
2799 |
TYPE_FIND_REGISTER (plugin, "application/x-mmsh", GST_RANK_SECONDARY,
|
renatofilho@75
|
2800 |
mmsh_type_find, NULL, MMSH_CAPS, NULL, NULL);
|
renatofilho@75
|
2801 |
return TRUE;
|
renatofilho@75
|
2802 |
}
|
renatofilho@75
|
2803 |
|
renatofilho@75
|
2804 |
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
renatofilho@75
|
2805 |
GST_VERSION_MINOR,
|
renatofilho@75
|
2806 |
"typefindfunctions",
|
renatofilho@75
|
2807 |
"default typefind functions",
|
renatofilho@75
|
2808 |
plugin_init, VERSION, "LGPL", "GStreamer Base Plug-ins CVS/prerelease", "Gstreamer CVS")
|