Use audioconvert for converting from non-native endianness floats in auparse instead...
[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
162   gst_adapter_clear (auparse->adapter);
163
164   /* gst_segment_init (&auparse->segment, GST_FORMAT_TIME); */
165 }
166
167 static gboolean
168 gst_au_parse_add_srcpad (GstAuParse * auparse, GstCaps * new_caps)
169 {
170   GstPad *srcpad = NULL;
171
172   if (auparse->src_caps && gst_caps_is_equal (new_caps, auparse->src_caps)) {
173     GST_LOG_OBJECT (auparse, "same caps, nothing to do");
174     return TRUE;
175   }
176
177   gst_caps_replace (&auparse->src_caps, new_caps);
178   if (auparse->srcpad != NULL) {
179     GST_DEBUG_OBJECT (auparse, "Changing src pad caps to %" GST_PTR_FORMAT,
180         auparse->src_caps);
181     gst_pad_set_caps (auparse->srcpad, auparse->src_caps);
182   }
183
184   if (auparse->srcpad == NULL) {
185     srcpad = auparse->srcpad =
186         gst_pad_new_from_static_template (&src_template, "src");
187     g_return_val_if_fail (auparse->srcpad != NULL, FALSE);
188
189 #if 0
190     gst_pad_set_query_type_function (auparse->srcpad,
191         GST_DEBUG_FUNCPTR (gst_au_parse_src_get_query_types));
192 #endif
193     gst_pad_set_query_function (auparse->srcpad,
194         GST_DEBUG_FUNCPTR (gst_au_parse_src_query));
195     gst_pad_set_event_function (auparse->srcpad,
196         GST_DEBUG_FUNCPTR (gst_au_parse_src_event));
197
198     gst_pad_use_fixed_caps (auparse->srcpad);
199     gst_pad_set_active (auparse->srcpad, TRUE);
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   if (auparse->samplerate < 8000 || auparse->samplerate > 192000)
272     goto unsupported_sample_rate;
273
274   if (auparse->channels < 1 || auparse->channels > 2)
275     goto unsupported_number_of_channels;
276
277   GST_DEBUG_OBJECT (auparse, "offset %" G_GINT64_FORMAT ", size %u, "
278       "encoding %u, frequency %u, channels %u", auparse->offset, size,
279       auparse->encoding, auparse->samplerate, auparse->channels);
280
281   /* Docs:
282    * http://www.opengroup.org/public/pubs/external/auformat.html
283    * http://astronomy.swin.edu.au/~pbourke/dataformats/au/
284    * Solaris headers : /usr/include/audio/au.h
285    * libsndfile : src/au.c
286    *
287    * Samples :
288    * http://www.tsp.ece.mcgill.ca/MMSP/Documents/AudioFormats/AU/Samples.html
289    */
290
291   switch (auparse->encoding) {
292     case 1:                    /* 8-bit ISDN mu-law G.711 */
293       law = 1;
294       depth = 8;
295       break;
296     case 27:                   /* 8-bit ISDN  A-law G.711 */
297       law = 2;
298       depth = 8;
299       break;
300
301     case 2:                    /*  8-bit linear PCM */
302       depth = 8;
303       break;
304     case 3:                    /* 16-bit linear PCM */
305       depth = 16;
306       break;
307     case 4:                    /* 24-bit linear PCM */
308       depth = 24;
309       break;
310     case 5:                    /* 32-bit linear PCM */
311       depth = 32;
312       break;
313
314     case 6:                    /* 32-bit IEEE floating point */
315       ieee = 1;
316       depth = 32;
317       break;
318     case 7:                    /* 64-bit IEEE floating point */
319       ieee = 1;
320       depth = 64;
321       break;
322
323     case 23:                   /* 4-bit CCITT G.721   ADPCM 32kbps -> modplug/libsndfile (compressed 8-bit mu-law) */
324       strcpy (layout, "g721");
325       break;
326     case 24:                   /* 8-bit CCITT G.722   ADPCM        -> rtp */
327       strcpy (layout, "g722");
328       break;
329     case 25:                   /* 3-bit CCITT G.723.3 ADPCM 24kbps -> rtp/xine/modplug/libsndfile */
330       strcpy (layout, "g723_3");
331       break;
332     case 26:                   /* 5-bit CCITT G.723.5 ADPCM 40kbps -> rtp/xine/modplug/libsndfile */
333       strcpy (layout, "g723_5");
334       break;
335
336     case 8:                    /* Fragmented sample data */
337     case 9:                    /* AU_ENCODING_NESTED */
338
339     case 10:                   /* DSP program */
340     case 11:                   /* DSP  8-bit fixed point */
341     case 12:                   /* DSP 16-bit fixed point */
342     case 13:                   /* DSP 24-bit fixed point */
343     case 14:                   /* DSP 32-bit fixed point */
344
345     case 16:                   /* AU_ENCODING_DISPLAY : non-audio display data */
346     case 17:                   /* AU_ENCODING_MULAW_SQUELCH */
347
348     case 18:                   /* 16-bit linear with emphasis */
349     case 19:                   /* 16-bit linear compressed (NeXT) */
350     case 20:                   /* 16-bit linear with emphasis and compression */
351
352     case 21:                   /* Music kit DSP commands */
353     case 22:                   /* Music kit DSP commands samples */
354
355     default:
356       goto unknown_format;
357   }
358
359   if (law) {
360     tempcaps =
361         gst_caps_new_simple ((law == 1) ? "audio/x-mulaw" : "audio/x-alaw",
362         "rate", G_TYPE_INT, auparse->samplerate,
363         "channels", G_TYPE_INT, auparse->channels, NULL);
364     auparse->sample_size = auparse->channels;
365   } else if (ieee) {
366     tempcaps = gst_caps_new_simple ("audio/x-raw-float",
367         "rate", G_TYPE_INT, auparse->samplerate,
368         "channels", G_TYPE_INT, auparse->channels,
369         "endianness", G_TYPE_INT, auparse->endianness,
370         "width", G_TYPE_INT, depth, NULL);
371     auparse->sample_size = auparse->channels * depth / 8;
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=%" G_GINT64_FORMAT, 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 unsupported_sample_rate:
405   {
406     GST_ELEMENT_ERROR (auparse, STREAM, FORMAT, (NULL),
407         ("Unsupported samplerate: %u", auparse->samplerate));
408     return GST_FLOW_ERROR;
409   }
410 unsupported_number_of_channels:
411   {
412     GST_ELEMENT_ERROR (auparse, STREAM, FORMAT, (NULL),
413         ("Unsupported number of channels: %u", auparse->channels));
414     return GST_FLOW_ERROR;
415   }
416 unknown_format:
417   {
418     GST_ELEMENT_ERROR (auparse, STREAM, FORMAT, (NULL),
419         ("Unsupported encoding: %u", auparse->encoding));
420     return GST_FLOW_ERROR;
421   }
422 add_pad_failed:
423   {
424     GST_ELEMENT_ERROR (auparse, STREAM, FAILED, (NULL),
425         ("Failed to add srcpad"));
426     gst_caps_unref (tempcaps);
427     return GST_FLOW_ERROR;
428   }
429 }
430
431 #define AU_HEADER_SIZE 24
432
433 static GstFlowReturn
434 gst_au_parse_chain (GstPad * pad, GstBuffer * buf)
435 {
436   GstFlowReturn ret = GST_FLOW_OK;
437   GstAuParse *auparse;
438   gint avail, sendnow = 0;
439
440   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
441
442   GST_LOG_OBJECT (auparse, "got buffer of size %u", GST_BUFFER_SIZE (buf));
443
444   gst_adapter_push (auparse->adapter, buf);
445   buf = NULL;
446
447   /* if we haven't seen any data yet... */
448   if (auparse->srcpad == NULL) {
449     if (gst_adapter_available (auparse->adapter) < AU_HEADER_SIZE) {
450       GST_DEBUG_OBJECT (auparse, "need more data to parse header");
451       ret = GST_FLOW_OK;
452       goto out;
453     }
454
455     ret = gst_au_parse_parse_header (auparse);
456     if (ret != GST_FLOW_OK)
457       goto out;
458
459     gst_pad_push_event (auparse->srcpad,
460         gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_DEFAULT,
461             0, GST_CLOCK_TIME_NONE, 0));
462   }
463
464   avail = gst_adapter_available (auparse->adapter);
465
466   if (auparse->sample_size > 0) {
467     /* Ensure we push a buffer that's a multiple of the frame size downstream */
468     sendnow = avail - (avail % auparse->sample_size);
469   } else {
470     /* It's something non-trivial (such as ADPCM), we don't understand it, so
471      * just push downstream and assume it will know what to do with it */
472     sendnow = avail;
473   }
474
475   if (sendnow > 0) {
476     GstBuffer *outbuf;
477     const guint8 *data;
478
479     ret = gst_pad_alloc_buffer_and_set_caps (auparse->srcpad,
480         auparse->buffer_offset, sendnow, GST_PAD_CAPS (auparse->srcpad),
481         &outbuf);
482
483     if (ret != GST_FLOW_OK) {
484       GST_DEBUG_OBJECT (auparse, "pad alloc flow: %s", gst_flow_get_name (ret));
485       goto out;
486     }
487
488     data = gst_adapter_peek (auparse->adapter, sendnow);
489     memcpy (GST_BUFFER_DATA (outbuf), data, sendnow);
490     gst_adapter_flush (auparse->adapter, sendnow);
491
492     auparse->buffer_offset += sendnow;
493
494     ret = gst_pad_push (auparse->srcpad, outbuf);
495   }
496
497 out:
498
499   gst_object_unref (auparse);
500   return ret;
501 }
502
503 static gboolean
504 gst_au_parse_src_convert (GstAuParse * auparse, GstFormat src_format,
505     gint64 srcval, GstFormat dest_format, gint64 * destval)
506 {
507   gboolean ret = TRUE;
508   gint64 offset;
509   guint samplesize, rate;
510
511   if (dest_format == src_format) {
512     *destval = srcval;
513     return TRUE;
514   }
515
516   GST_OBJECT_LOCK (auparse);
517   samplesize = auparse->sample_size;
518   offset = auparse->offset;
519   rate = auparse->samplerate;
520   GST_OBJECT_UNLOCK (auparse);
521
522   if (samplesize == 0 || rate == 0) {
523     GST_LOG_OBJECT (auparse, "cannot convert, sample_size or rate unknown");
524     return FALSE;
525   }
526
527   switch (src_format) {
528     case GST_FORMAT_BYTES:
529       srcval /= samplesize;
530       /* fallthrough */
531     case GST_FORMAT_DEFAULT:{
532       switch (dest_format) {
533         case GST_FORMAT_BYTES:
534           *destval = srcval * samplesize;
535           break;
536         case GST_FORMAT_TIME:
537           *destval = gst_util_uint64_scale_int (srcval, GST_SECOND, rate);
538           break;
539         default:
540           ret = FALSE;
541           break;
542       }
543       break;
544     }
545     case GST_FORMAT_TIME:{
546       switch (dest_format) {
547         case GST_FORMAT_BYTES:
548           *destval =
549               gst_util_uint64_scale_int (srcval, rate * samplesize, GST_SECOND);
550           break;
551         case GST_FORMAT_DEFAULT:
552           *destval = gst_util_uint64_scale_int (srcval, rate, GST_SECOND);
553           break;
554         default:
555           ret = FALSE;
556           break;
557       }
558       break;
559     }
560     default:{
561       ret = FALSE;
562       break;
563     }
564   }
565
566   if (!ret) {
567     GST_DEBUG_OBJECT (auparse, "could not convert from %s to %s format",
568         gst_format_get_name (src_format), gst_format_get_name (dest_format));
569   }
570
571   return ret;
572 }
573
574 static gboolean
575 gst_au_parse_src_query (GstPad * pad, GstQuery * query)
576 {
577   GstAuParse *auparse;
578   gboolean ret = FALSE;
579
580   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
581
582   switch (GST_QUERY_TYPE (query)) {
583     case GST_QUERY_DURATION:{
584       GstFormat bformat = GST_FORMAT_BYTES;
585       GstFormat format;
586       gint64 len, val;
587
588       gst_query_parse_duration (query, &format, NULL);
589       if (!gst_pad_query_peer_duration (auparse->sinkpad, &bformat, &len)) {
590         GST_DEBUG_OBJECT (auparse, "failed to query upstream length");
591         break;
592       }
593       GST_OBJECT_LOCK (auparse);
594       len -= auparse->offset;
595       GST_OBJECT_UNLOCK (auparse);
596
597       ret = gst_au_parse_src_convert (auparse, GST_FORMAT_BYTES, len,
598           format, &val);
599
600       if (ret) {
601         gst_query_set_duration (query, format, val);
602       }
603       break;
604     }
605     case GST_QUERY_POSITION:{
606       GstFormat bformat = GST_FORMAT_BYTES;
607       GstFormat format;
608       gint64 pos, val;
609
610       gst_query_parse_position (query, &format, NULL);
611       if (!gst_pad_query_peer_position (auparse->sinkpad, &bformat, &pos)) {
612         GST_DEBUG_OBJECT (auparse, "failed to query upstream position");
613         break;
614       }
615       GST_OBJECT_LOCK (auparse);
616       pos -= auparse->offset;
617       GST_OBJECT_UNLOCK (auparse);
618
619       ret = gst_au_parse_src_convert (auparse, GST_FORMAT_BYTES, pos,
620           format, &val);
621
622       if (ret) {
623         gst_query_set_position (query, format, val);
624       }
625       break;
626     }
627     default:
628       ret = gst_pad_query_default (pad, query);
629       break;
630   }
631
632   gst_object_unref (auparse);
633   return ret;
634 }
635
636 static gboolean
637 gst_au_parse_handle_seek (GstAuParse * auparse, GstEvent * event)
638 {
639   GstSeekType start_type, stop_type;
640   GstSeekFlags flags;
641   GstFormat format;
642   gdouble rate;
643   gint64 start, stop;
644
645   gst_event_parse_seek (event, &rate, &format, &flags, &start_type, &start,
646       &stop_type, &stop);
647
648   if (format != GST_FORMAT_TIME) {
649     GST_DEBUG_OBJECT (auparse, "only support seeks in TIME format");
650     return FALSE;
651   }
652
653   /* FIXME: implement seeking */
654   return FALSE;
655 }
656
657 static gboolean
658 gst_au_parse_sink_event (GstPad * pad, GstEvent * event)
659 {
660   GstAuParse *auparse;
661   gboolean ret;
662
663   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
664
665   switch (GST_EVENT_TYPE (event)) {
666     default:
667       ret = gst_pad_event_default (pad, event);
668       break;
669   }
670
671   gst_object_unref (auparse);
672   return ret;
673 }
674
675 static gboolean
676 gst_au_parse_src_event (GstPad * pad, GstEvent * event)
677 {
678   GstAuParse *auparse;
679   gboolean ret;
680
681   auparse = GST_AU_PARSE (gst_pad_get_parent (pad));
682
683   switch (GST_EVENT_TYPE (event)) {
684     case GST_EVENT_SEEK:
685       ret = gst_au_parse_handle_seek (auparse, event);
686       break;
687     default:
688       ret = gst_pad_event_default (pad, event);
689       break;
690   }
691
692   gst_object_unref (auparse);
693   return ret;
694 }
695
696 static GstStateChangeReturn
697 gst_au_parse_change_state (GstElement * element, GstStateChange transition)
698 {
699   GstAuParse *auparse = GST_AU_PARSE (element);
700   GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
701
702   ret = parent_class->change_state (element, transition);
703   if (ret == GST_STATE_CHANGE_FAILURE)
704     return ret;
705
706   switch (transition) {
707     case GST_STATE_CHANGE_PAUSED_TO_READY:
708       gst_au_parse_reset (auparse);
709     default:
710       break;
711   }
712
713   return ret;
714 }
715
716 static gboolean
717 plugin_init (GstPlugin * plugin)
718 {
719   if (!gst_element_register (plugin, "auparse", GST_RANK_SECONDARY,
720           GST_TYPE_AU_PARSE)) {
721     return FALSE;
722   }
723
724   return TRUE;
725 }
726
727 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
728     GST_VERSION_MINOR,
729     "auparse",
730     "parses au streams", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME,
731     GST_PACKAGE_ORIGIN)