~oah-dev/oah/gst-plugins-bad

« back to all changes in this revision

Viewing changes to gst/real/gstrealaudiodec.h

  • Committer: Haakon Sporsheim
  • Date: 2009-03-12 13:52:03 UTC
  • Revision ID: haakon.sporsheim@tandberg.com-20090312135203-i5k294hgkushb0mt
Initial import of git repository: git://anongit.freedesktop.org/gstreamer/gst-plugins-bad (tag: RELEASE-0_10_10)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 *
 
3
 * Copyright (C) 2006 Lutz Mueller <lutz@topfrose.de>
 
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
#ifndef __GST_REAL_AUDIO_DEC_H__
 
22
#define __GST_REAL_AUDIO_DEC_H__
 
23
 
 
24
#include <gst/gst.h>
 
25
#include <gst/audio/audio.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define GST_TYPE_REAL_AUDIO_DEC (gst_real_audio_dec_get_type())
 
30
#define GST_REAL_AUDIO_DEC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_REAL_AUDIO_DEC,GstRealAudioDec))
 
31
#define GST_REAL_AUDIO_DEC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_REAL_AUDIO_DEC,GstRealAudioDecClass))
 
32
 
 
33
typedef struct _GstRealAudioDec GstRealAudioDec;
 
34
typedef struct _GstRealAudioDecClass GstRealAudioDecClass;
 
35
 
 
36
GType gst_real_audio_dec_get_type (void);
 
37
 
 
38
G_END_DECLS
 
39
 
 
40
#endif /* __GST_REAL_AUDIO_DEC_H__ */