gst/auparse/gstauparse.*: Rewrite auparse to suck a little bit less: make source...
[platform/upstream/gst-plugins-good.git] / gst / auparse / gstauparse.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2006> Tim-Philipp Müller <tim centricular net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * SECTION:element-auparse
23  * @short_description: .au file parser
24  * 
25  * <refsect2>
26  * <para>
27  * Parses .au files.
28  * </para>
29  * </refsect2>
30  */
31
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35
36 #include <stdlib.h>
37 #include <string.h>
38
39 #include "gstauparse.h"
40 #include <gst/audio/audio.h>
41
42 GST_DEBUG_CATEGORY_STATIC (auparse_debug);
43 #define GST_CAT_DEFAULT (auparse_debug)
44
45 static const GstElementDetails gst_au_parse_details =
46 GST_ELEMENT_DETAILS ("AU audio demuxer",
47     "Codec/Demuxer/Audio",
48     "Parse an .au file into raw audio",
49     "Erik Walthinsen <omega@cse.ogi.edu>");
50
51 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
52     GST_PAD_SINK,
53     GST_PAD_ALWAYS,
54     GST_STATIC_CAPS ("audio/x-au")
55     );
56
57 #define GST_AU_PARSE_ALAW_PAD_TEMPLATE_CAPS \
58     "audio/x-alaw, "                        \
59     "rate = (int) [ 8000, 192000 ], "       \
60     "channels = (int) [ 1, 2 ]"
61
62 #define GST_AU_PARSE_MULAW_PAD_TEMPLATE_CAPS \
63     "audio/x-mulaw, "                        \
64     "rate = (int) [ 8000, 192000 ], "        \
65     "channels = (int) [ 1, 2 ]"
66
67 /* Nothing to decode those ADPCM streams for now */
68 #define GST_AU_PARSE_ADPCM_PAD_TEMPLATE_CAPS \
69     "audio/x-adpcm, "                        \
70     "layout = (string) { g721, g722, g723_3, g723_5 }"
71
72 static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
73     GST_PAD_SRC,
74     GST_PAD_SOMETIMES,
75     GST_STATIC_CAPS (GST_AUDIO_INT_PAD_TEMPLATE_CAPS "; "
76         GST_AUDIO_FLOAT_PAD_TEMPLATE_CAPS ";"
77         GST_AU_PARSE_ALAW_PAD_TEMPLATE_CAPS ";"
78         GST_AU_PARSE_MULAW_PAD_TEMPLATE_CAPS ";"
79         GST_AU_PARSE_ADPCM_PAD_TEMPLATE_CAPS));
80
81
82 static void gst_au_parse_dispose (GObject * object);
83 static GstFlowReturn gst_au_parse_chain (GstPad * pad, GstBuffer * buf);
84 static GstStateChangeReturn gst_au_parse_change_state (GstElement * element,
85     GstStateChange transition);
86 static void gst_au_parse_reset (GstAuParse * auparse);
87 static gboolean gst_au_parse_remove_srcpad (GstAuParse * auparse);
88 static gboolean gst_au_parse_add_srcpad (GstAuParse * auparse, GstCaps * caps);
89 static gboolean gst_au_parse_src_query (GstPad * pad, GstQuery * query);
90 static gboolean gst_au_parse_src_event (GstPad * pad, GstEvent * event);
91 static gboolean gst_au_parse_sink_event (GstPad * pad, GstEvent * event);
92
93 GST_BOILERPLATE (GstAuParse, gst_au_parse, GstElement, GST_TYPE_ELEMENT);
94
95 static void
96 gst_au_parse_base_init (gpointer g_class)
97 {
98   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
99
100   gst_element_class_add_pad_template (element_class,
101       gst_static_pad_template_get (&sink_template));
102   gst_element_class_add_pad_template (element_class,
103       gst_static_pad_template_get (&src_template));
104   gst_element_class_set_details (element_class, &gst_au_parse_details);
105
106   GST_DEBUG_CATEGORY_INIT (auparse_debug, "auparse", 0, ".au parser");
107 }
108
109 static void
110 gst_au_parse_class_init (GstAuParseClass * klass)
111 {
112   GObjectClass *gobject_class;
113   GstElementClass *gstelement_class;
114
115   gobject_class = (GObjectClass *) klass;
116   gstelement_class = (GstElementClass *) klass;
117
118   gobject_class->dispose = gst_au_parse_dispose;
119
120   gstelement_class->change_state =
121       GST_DEBUG_FUNCPTR (gst_au_parse_change_state);
122 }
123
124 static void
125 gst_au_parse_init (GstAuParse * auparse, GstAuParseClass * klass)
126 {
127   auparse->sinkpad = gst_pad_new_from_static_template (&sink_template, "sink");
128   gst_pad_set_chain_function (auparse->sinkpad,
129       GST_DEBUG_FUNCPTR (gst_au_parse_chain));
130   gst_pad_set_event_function (auparse->sinkpad,
131       GST_DEBUG_FUNCPTR (gst_au_parse_sink_event));
132   gst_element_add_pad (GST_ELEMENT (auparse), auparse->sinkpad);
133
134   auparse->srcpad = NULL;
135   auparse->adapter = gst_adapter_new ();
136   gst_au_parse_reset (auparse);
137 }
138
139 static void
140 gst_au_parse_dispose (GObject * object)
141 {
142   GstAuParse *au = GST_AU_PARSE (object);
143
144   if (au->adapter != NULL) {
145     g_object_unref (au->adapter);
146     au->adapter = NULL;
147   }
148   G_OBJECT_CLASS (parent_class)->dispose (object);
149 }
150
151 static void
152 gst_au_parse_reset (GstAuParse * auparse)
153 {
154   gst_au_parse_remove_srcpad (auparse);
155
156   auparse->offset = 0;
157   auparse->buffer_offset = 0;
158   auparse->encoding = 0;
159   auparse->samplerate = 0;
160   auparse->channels = 0;
161   auparse->float_swap = 0;
162
163   gst_adapter_clear (auparse->adapter);
164
165   /* gst_segment_init (&auparse->segment, GST_FORMAT_TIME); */
166 }
167
168 static gboolean
169 gst_au_parse_add_srcpad (GstAuParse * auparse, GstCaps * new_caps)
170 {
171   GstPad *srcpad = NULL;
172
173   if (auparse->src_caps && gst_caps_is_equal (new_caps, auparse->src_caps)) {
174     GST_LOG_OBJECT (auparse, "same caps, nothing to do");
175     return TRUE;
176   }
177
178   gst_caps_replace (&auparse->src_caps, new_caps);
179   if (auparse->srcpad != NULL) {
180     GST_DEBUG_OBJECT (auparse, "Changing src pad caps to %" GST_PTR_FORMAT,
181         auparse->src_caps);
182     gst_pad_set_caps (auparse->srcpad, auparse->src_caps);
183   }
184
185   if (auparse->srcpad == NULL) {
186     srcpad = auparse->srcpad =
187         gst_pad_new_from_static_template (&src_template, "src");
188     g_return_val_if_fail (auparse->srcpad != NULL, FALSE);
189
190 #if 0
191     gst_pad_set_query_type_function (auparse->srcpad,
192         GST_DEBUG_FUNCPTR (gst_au_parse_src_get_query_types));
193 #endif
194     gst_pad_set_query_function (auparse->srcpad,
195         GST_DEBUG_FUNCPTR (gst_au_parse_src_query));
196     gst_pad_set_event_function (auparse->srcpad,
197         GST_DEBUG_FUNCPTR (gst_au_parse_src_event));
198
199     gst_pad_use_fixed_caps (auparse->srcpad);
200
201     if (auparse->src_caps)
202       gst_pad_set_caps (auparse->srcpad, auparse->src_caps);
203
204     GST_DEBUG_OBJECT (auparse, "Adding src pad with caps %" GST_PTR_FORMAT,
205         auparse->src_caps);
206
207     gst_object_ref (auparse->srcpad);
208     if (!gst_element_add_pad (GST_ELEMENT (auparse), auparse->srcpad))
209       return FALSE;
210     gst_element_no_more_pads (GST_ELEMENT (auparse));
211   }
212
213   return TRUE;
214 }
215
216 static gboolean
217 gst_au_parse_remove_srcpad (GstAuParse * auparse)
218 {
219   gboolean res = TRUE;
220
221   if (auparse->srcpad != NULL) {
222     GST_DEBUG_OBJECT (auparse, "Removing src pad");
223     res = gst_element_remove_pad (GST_ELEMENT (auparse), auparse->srcpad);
224     g_return_val_if_fail (res != FALSE, FALSE);
225     gst_object_unref (auparse->srcpad);
226     auparse->srcpad = NULL;
227   }
228
229   return res;
230 }
231
232 static GstFlowReturn
233 gst_au_parse_parse_header (GstAuParse * auparse)
234 {
235   GstCaps *tempcaps;
236   guint32 size;
237   guint8 *head;
238   gchar layout[7] = { 0, };
239   gint law = 0, depth = 0, ieee = 0;
240
241   head = (guint8 *) gst_adapter_peek (auparse->adapter, 24);
242   g_assert (head != NULL);
243
244   GST_DEBUG_OBJECT (auparse, "[%c%c%c%c]", head[0], head[1], head[2], head[3]);
245
246   switch (GST_READ_UINT32_BE (head)) {
247       /* normal format is big endian (au is a Sparc format) */
248     case 0x2e736e64:{          /* ".snd" */
249       auparse->endianness = G_BIG_ENDIAN;
250       break;
251     }
252       /* and of course, someone had to invent a little endian
253        * version.  Used by DEC systems. */
254     case 0x646e732e:           /* dns.                          */
255     case 0x0064732e:{          /* other source say it is "dns." */
256       auparse->endianness = G_LITTLE_ENDIAN;
257       break;
258     }
259     default:{
260       goto unknown_header;
261     }
262   }
263
264   auparse->offset = GST_READ_UINT32_BE (head + 4);
265   /* Do not trust size, could be set to -1 : unknown */
266   size = GST_READ_UINT32_BE (head + 8);
267   auparse->encoding = GST_READ_UINT32_BE (head + 12);
268   auparse->samplerate = GST_READ_UINT32_BE (head + 16);
269   auparse->channels = GST_READ_UINT32_BE (head + 20);
270
271   GST_DEBUG_OBJECT (auparse, "offset %ld, size %u, encoding %u, "
272       "frequency %u, channels %u", auparse->offset, size,
273       auparse->encoding, auparse->samplerate, auparse->channels);
274
275   /* Docs:
276    * http://www.opengroup.org/public/pubs/external/auformat.html
277    * http://astronomy.swin.edu.au/~pbourke/dataformats/au/
278    * Solaris headers : /usr/include/audio/au.h
279    * libsndfile : src/au.c
280    *
281    * Samples :
282    * http://www.tsp.ece.mcgill.ca/MMSP/Documents/AudioFormats/AU/Samples.html
283    */
284
285   auparse->float_swap = 0;
286
287   switch (auparse->encoding) {
288     case 1:                    /* 8-bit ISDN mu-law G.711 */
289       law = 1;
290       depth = 8;
291       break;
292     case 27:                   /* 8-bit ISDN  A-law G.711 */
293       law = 2;
294       depth = 8;
295       break;
296
297     case 2:                    /*  8-bit linear PCM */
298       depth = 8;
299       break;
300     case 3:                    /* 16-bit linear PCM */
301       depth = 16;
302       break;
303     case 4:                    /* 24-bit linear PCM */
304       depth = 24;
305       break;
306     case 5:                    /* 32-bit linear PCM */
307       depth = 32;
308       break;
309
310     case 6:                    /* 32-bit IEEE floating point */
311       ieee = 1;
312       depth = 32;
313       break;
314     case 7:                    /* 64-bit IEEE floating point */
315       ieee = 1;
316       depth = 64;
317       break;
318
319     case 23:                   /* 4-bit CCITT G.721   ADPCM 32kbps -> modplug/libsndfile (compressed 8-bit mu-law) */
320       strcpy (layout, "g721");
321       break;
322     case 24:                   /* 8-bit CCITT G.722   ADPCM        -> rtp */
323       strcpy (layout, "g722");
324       break;
325     case 25:                   /* 3-bit CCITT G.723.3 ADPCM 24kbps -> rtp/xine/modplug/libsndfile */
326       strcpy (layout, "g723_3");
327       break;
328     case 26:                   /* 5-bit CCITT G.723.5 ADPCM 40kbps -> rtp/xine/modplug/libsndfile */
329       strcpy (layout, "g723_5");
330       break;
331
332     case 8:                    /* Fragmented sample data */
333     case 9:                    /* AU_ENCODING_NESTED */
334
335     case 10:                   /* DSP program */
336     case 11:                   /* DSP  8-bit fixed point */
337     case 12:                   /* DSP 16-bit fixed point */
338     case 13:                   /* DSP 24-bit fixed point */
339     case 14:                   /* DSP 32-bit fixed point */
340
341     case 16:                   /* AU_ENCODING_DISPLAY : non-audio display data */
342     case 17:                   /* AU_ENCODING_MULAW_SQUELCH */
343
344     case 18:                   /* 16-bit linear with emphasis */
345     case 19:                   /* 16-bit linear compressed (NeXT) */
346     case 20:                   /* 16-bit linear with emphasis and compression */
347
348     case 21:                   /* Music kit DSP commands */
349     case 22:                   /* Music kit DSP commands samples */
350
351     default:
352       goto unknown_format;
353   }
354
355   if (law) {
356     tempcaps =
357         gst_caps_new_simple ((law == 1) ? "audio/x-mulaw" : "audio/x-alaw",
358         "rate", G_TYPE_INT, auparse->samplerate,
359         "channels", G_TYPE_INT, auparse->channels, NULL);
360     auparse->sample_size = auparse->channels;
361   } else if (ieee) {
362     tempcaps = gst_caps_new_simple ("audio/x-raw-float",
363         "rate", G_TYPE_INT, auparse->samplerate,
364         "channels", G_TYPE_INT, auparse->channels,
365         "endianness", G_TYPE_INT, G_BYTE_ORDER,
366         "width", G_TYPE_INT, depth, NULL);
367     auparse->sample_size = auparse->channels * depth / 8;
368     if (auparse->endianness != G_BYTE_ORDER) {
369       GST_DEBUG_OBJECT (auparse, "need to swap float byte order ourselves!");
370       auparse->float_swap = depth;
371     }
372   } else if (layout[0]) {
373     tempcaps = gst_caps_new_simple ("audio/x-adpcm",
374         "layout", G_TYPE_STRING, layout, NULL);
375     auparse->sample_size = 0;
376   } else {
377     tempcaps = gst_caps_new_simple ("audio/x-raw-int",
378         "rate", G_TYPE_INT, auparse->samplerate,
379         "channels", G_TYPE_INT, auparse->channels,
380         "endianness", G_TYPE_INT, auparse->endianness,
381         "depth", G_TYPE_INT, depth, "width", G_TYPE_INT, depth,
382         /* FIXME: signed TRUE even for 8-bit PCM? */
383         "signed", G_TYPE_BOOLEAN, TRUE, NULL);
384     auparse->sample_size = auparse->channels * depth / 8;
385   }
386
387   GST_DEBUG_OBJECT (auparse, "sample_size=%d", auparse->sample_size);
388
389   if (!gst_au_parse_add_srcpad (auparse, tempcaps))
390     goto add_pad_failed;
391
392   GST_DEBUG_OBJECT (auparse, "offset=%ld", auparse->offset);
393   gst_adapter_flush (auparse->adapter, auparse->offset);
394
395   gst_caps_unref (tempcaps);
396   return GST_FLOW_OK;
397
398   /* ERRORS */
399 unknown_header:
400   {
401     GST_ELEMENT_ERROR (auparse, STREAM, WRONG_TYPE, (NULL), (NULL));
402     return GST_FLOW_ERROR;
403   }
404 unknown_format:
405   {
406     GST_ELEMENT_ERROR (auparse, STREAM, FORMAT, (NULL), (NULL));
407     return GST_FLOW_ERROR;
408   }
409 add_pad_failed:
410   {
411     GST_ELEMENT_ERROR (auparse, STREAM, FAILED, (NULL),
412         ("Failed to add srcpad"));
413     gst_caps_unref (tempcaps);
414     return GST_FLOW_ERROR;
415   }
416 }
417
418 #define AU_HEADER_SIZE 24
419
420 static GstFlowReturn
421 gst_au_parse_chain (GstPad * pad, GstBuffer * buf)
422 {
423   GstFlowReturn ret = GST_FLOW_OK;
424   GstAuParse *auparse;
425   gint avail, sendnow = 0;
426
427   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
428
429   GST_LOG_OBJECT (auparse, "got buffer of size %u", GST_BUFFER_SIZE (buf));
430
431   gst_adapter_push (auparse->adapter, buf);
432   buf = NULL;
433
434   /* if we haven't seen any data yet... */
435   if (auparse->srcpad == NULL) {
436     if (gst_adapter_available (auparse->adapter) < AU_HEADER_SIZE) {
437       GST_DEBUG_OBJECT (auparse, "need more data to parse header");
438       ret = GST_FLOW_OK;
439       goto out;
440     }
441
442     ret = gst_au_parse_parse_header (auparse);
443     if (ret != GST_FLOW_OK)
444       goto out;
445
446     gst_pad_push_event (auparse->srcpad,
447         gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_DEFAULT,
448             0, GST_CLOCK_TIME_NONE, 0));
449   }
450
451   avail = gst_adapter_available (auparse->adapter);
452
453   if (auparse->sample_size > 0) {
454     /* Ensure we push a buffer that's a multiple of the frame size downstream */
455     sendnow = avail - (avail % auparse->sample_size);
456   } else {
457     /* It's something non-trivial (such as ADPCM), we don't understand it, so
458      * just push downstream and assume it will know what to do with it */
459     sendnow = avail;
460   }
461
462   if (sendnow > 0) {
463     GstBuffer *outbuf;
464     const guint8 *data;
465
466     ret = gst_pad_alloc_buffer_and_set_caps (auparse->srcpad,
467         auparse->buffer_offset, sendnow, GST_PAD_CAPS (auparse->srcpad),
468         &outbuf);
469
470     if (ret != GST_FLOW_OK) {
471       GST_DEBUG_OBJECT (auparse, "pad alloc flow: %s", gst_flow_get_name (ret));
472       goto out;
473     }
474
475     data = gst_adapter_peek (auparse->adapter, sendnow);
476
477     /* audioconvert only handles floats in native endianness ... */
478     switch (auparse->float_swap) {
479       case 32:{
480         guint32 *indata = (guint32 *) data;
481         guint32 *outdata = (guint32 *) GST_BUFFER_DATA (outbuf);
482         gint i;
483
484         for (i = 0; i < (sendnow / sizeof (guint32)); ++i) {
485           outdata[i] = GUINT32_SWAP_LE_BE (indata[i]);
486         }
487         break;
488       }
489       case 64:{
490         guint64 *indata = (guint64 *) data;
491         guint64 *outdata = (guint64 *) GST_BUFFER_DATA (outbuf);
492         gint i;
493
494         for (i = 0; i < (sendnow / sizeof (guint64)); ++i) {
495           outdata[i] = GUINT64_SWAP_LE_BE (indata[i]);
496         }
497         break;
498       }
499       default:{
500         memcpy (GST_BUFFER_DATA (outbuf), data, sendnow);
501         break;
502       }
503     }
504
505     gst_adapter_flush (auparse->adapter, sendnow);
506
507     auparse->buffer_offset += sendnow;
508
509     ret = gst_pad_push (auparse->srcpad, outbuf);
510   }
511
512 out:
513
514   gst_object_unref (auparse);
515   return ret;
516 }
517
518 static gboolean
519 gst_au_parse_src_convert (GstAuParse * auparse, GstFormat src_format,
520     gint64 srcval, GstFormat dest_format, gint64 * destval)
521 {
522   gboolean ret = TRUE;
523   gint64 offset;
524   guint samplesize, rate;
525
526   if (dest_format == src_format) {
527     *destval = srcval;
528     return TRUE;
529   }
530
531   GST_OBJECT_LOCK (auparse);
532   samplesize = auparse->sample_size;
533   offset = auparse->offset;
534   rate = auparse->samplerate;
535   GST_OBJECT_UNLOCK (auparse);
536
537   if (samplesize == 0 || rate == 0) {
538     GST_LOG_OBJECT (auparse, "cannot convert, sample_size or rate unknown");
539     return FALSE;
540   }
541
542   switch (src_format) {
543     case GST_FORMAT_BYTES:
544       srcval /= samplesize;
545       /* fallthrough */
546     case GST_FORMAT_DEFAULT:{
547       switch (dest_format) {
548         case GST_FORMAT_BYTES:
549           *destval = srcval * samplesize;
550           break;
551         case GST_FORMAT_TIME:
552           *destval = gst_util_uint64_scale_int (srcval, GST_SECOND, rate);
553           break;
554         default:
555           ret = FALSE;
556           break;
557       }
558       break;
559     }
560     case GST_FORMAT_TIME:{
561       switch (dest_format) {
562         case GST_FORMAT_BYTES:
563           *destval =
564               gst_util_uint64_scale_int (srcval, rate * samplesize, GST_SECOND);
565           break;
566         case GST_FORMAT_DEFAULT:
567           *destval = gst_util_uint64_scale_int (srcval, rate, GST_SECOND);
568           break;
569         default:
570           ret = FALSE;
571           break;
572       }
573       break;
574     }
575     default:{
576       ret = FALSE;
577       break;
578     }
579   }
580
581   if (!ret) {
582     GST_DEBUG_OBJECT (auparse, "could not convert from %s to %s format",
583         gst_format_get_name (src_format), gst_format_get_name (dest_format));
584   }
585
586   return ret;
587 }
588
589 static gboolean
590 gst_au_parse_src_query (GstPad * pad, GstQuery * query)
591 {
592   GstAuParse *auparse;
593   gboolean ret = FALSE;
594
595   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
596
597   switch (GST_QUERY_TYPE (query)) {
598     case GST_QUERY_DURATION:{
599       GstFormat bformat = GST_FORMAT_BYTES;
600       GstFormat format;
601       gint64 len, val;
602
603       gst_query_parse_duration (query, &format, NULL);
604       if (!gst_pad_query_peer_duration (auparse->sinkpad, &bformat, &len)) {
605         GST_DEBUG_OBJECT (auparse, "failed to query upstream length");
606         break;
607       }
608       GST_OBJECT_LOCK (auparse);
609       len -= auparse->offset;
610       GST_OBJECT_UNLOCK (auparse);
611
612       ret = gst_au_parse_src_convert (auparse, GST_FORMAT_BYTES, len,
613           format, &val);
614
615       if (ret) {
616         gst_query_set_duration (query, format, val);
617       }
618       break;
619     }
620     case GST_QUERY_POSITION:{
621       GstFormat bformat = GST_FORMAT_BYTES;
622       GstFormat format;
623       gint64 pos, val;
624
625       gst_query_parse_position (query, &format, NULL);
626       if (!gst_pad_query_peer_position (auparse->sinkpad, &bformat, &pos)) {
627         GST_DEBUG_OBJECT (auparse, "failed to query upstream position");
628         break;
629       }
630       GST_OBJECT_LOCK (auparse);
631       pos -= auparse->offset;
632       GST_OBJECT_UNLOCK (auparse);
633
634       ret = gst_au_parse_src_convert (auparse, GST_FORMAT_BYTES, pos,
635           format, &val);
636
637       if (ret) {
638         gst_query_set_position (query, format, val);
639       }
640       break;
641     }
642     default:
643       ret = gst_pad_query_default (pad, query);
644       break;
645   }
646
647   gst_object_unref (auparse);
648   return ret;
649 }
650
651 static gboolean
652 gst_au_parse_handle_seek (GstAuParse * auparse, GstEvent * event)
653 {
654   GstSeekType start_type, stop_type;
655   GstSeekFlags flags;
656   GstFormat format;
657   gdouble rate;
658   gint64 start, stop;
659
660   gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
661       &stop_type, &stop);
662
663   if (format != GST_FORMAT_TIME) {
664     GST_DEBUG_OBJECT (auparse, "only support seeks in TIME format");
665     return FALSE;
666   }
667
668   /* FIXME: implement seeking */
669   return FALSE;
670 }
671
672 static gboolean
673 gst_au_parse_sink_event (GstPad * pad, GstEvent * event)
674 {
675   GstAuParse *auparse;
676   gboolean ret;
677
678   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
679
680   switch (GST_EVENT_TYPE (event)) {
681     default:
682       ret = gst_pad_event_default (pad, event);
683       break;
684   }
685
686   gst_object_unref (auparse);
687   return ret;
688 }
689
690 static gboolean
691 gst_au_parse_src_event (GstPad * pad, GstEvent * event)
692 {
693   GstAuParse *auparse;
694   gboolean ret;
695
696   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
697
698   switch (GST_EVENT_TYPE (event)) {
699     case GST_EVENT_SEEK:
700       ret = gst_au_parse_handle_seek (auparse, event);
701       break;
702     default:
703       ret = gst_pad_event_default (pad, event);
704       break;
705   }
706
707   gst_object_unref (auparse);
708   return ret;
709 }
710
711 static GstStateChangeReturn
712 gst_au_parse_change_state (GstElement * element, GstStateChange transition)
713 {
714   GstAuParse *auparse = GST_AU_PARSE (element);
715   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
716
717   ret = parent_class->change_state (element, transition);
718   if (ret == GST_STATE_CHANGE_FAILURE)
719     return ret;
720
721   switch (transition) {
722     case GST_STATE_CHANGE_PAUSED_TO_READY:
723       gst_au_parse_reset (auparse);
724     default:
725       break;
726   }
727
728   return ret;
729 }
730
731 static gboolean
732 plugin_init (GstPlugin * plugin)
733 {
734   if (!gst_element_register (plugin, "auparse", GST_RANK_SECONDARY,
735           GST_TYPE_AU_PARSE)) {
736     return FALSE;
737   }
738
739   return TRUE;
740 }
741
742 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
743     GST_VERSION_MINOR,
744     "auparse",
745     "parses au streams", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME,
746     GST_PACKAGE_ORIGIN)