this is a FIXME
[swfdec.git] / swfdec / swfdec_audio.h
blobe6b2078949fbad1d11c3ea7ec49d24eaf8ff93a1
1 /* Swfdec
2 * Copyright (C) 2003-2006 David Schleef <ds@schleef.org>
3 * 2005-2006 Eric Anholt <eric@anholt.net>
4 * 2006 Benjamin Otte <otte@gnome.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA
22 #ifndef _SWFDEC_AUDIO_H_
23 #define _SWFDEC_AUDIO_H_
25 #include <glib-object.h>
27 G_BEGIN_DECLS
29 typedef struct _SwfdecAudio SwfdecAudio;
30 typedef struct _SwfdecAudioClass SwfdecAudioClass;
32 #define SWFDEC_TYPE_AUDIO (swfdec_audio_get_type())
33 #define SWFDEC_IS_AUDIO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SWFDEC_TYPE_AUDIO))
34 #define SWFDEC_IS_AUDIO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SWFDEC_TYPE_AUDIO))
35 #define SWFDEC_AUDIO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SWFDEC_TYPE_AUDIO, SwfdecAudio))
36 #define SWFDEC_AUDIO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SWFDEC_TYPE_AUDIO, SwfdecAudioClass))
37 #define SWFDEC_AUDIO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SWFDEC_TYPE_AUDIO, SwfdecAudioClass))
39 GType swfdec_audio_get_type (void);
41 gsize swfdec_audio_render (SwfdecAudio * audio,
42 gint16 * dest,
43 gsize start_offset,
44 gsize n_samples);
46 G_END_DECLS
47 #endif