gst/audioconvert/audioconvert.*: Cleanups, speedups, simplifications, added back...
[platform/upstream/gstreamer.git] / gst / audioconvert / audioconvert.h
1 /* GStreamer
2  * Copyright (C) 2004 Ronald Bultje <rbultje@ronald.bitfreak.net>
3  *
4  * audioconvert.h: audio format conversion library
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
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  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __AUDIO_CONVERT_H__
23 #define __AUDIO_CONVERT_H__
24
25 #include <gst/gst.h>
26 #include <gst/audio/multichannel.h>
27
28 typedef struct _AudioConvertCtx AudioConvertCtx;
29 typedef struct _AudioConvertFmt AudioConvertFmt;
30
31 struct _AudioConvertFmt
32 {
33   /* general caps */
34   gboolean is_int;
35   gint endianness;
36   gint width;
37   gint rate;
38   gint channels;
39   GstAudioChannelPosition *pos;
40
41   /* int audio caps */
42   gboolean sign;
43   gint depth;
44
45   /* float audio caps */
46   gint buffer_frames;
47
48   gint unit_size;
49 };
50
51 typedef void (*AudioConvertUnpack) (gpointer src, gint32 *dst, gint scale, gint count);
52 typedef void (*AudioConvertPack) (gint32 *src, gpointer dst, gint scale, gint count);
53
54 struct _AudioConvertCtx
55 {
56   AudioConvertFmt in;
57   AudioConvertFmt out;
58
59   AudioConvertUnpack unpack;
60   AudioConvertPack pack;
61
62   /* channel conversion matrix, m[in_channels][out_channels].
63    * If identity matrix, passthrough applies. */
64   gfloat **matrix;
65
66   gboolean in_default;
67   gboolean mix_passthrough;
68   gboolean out_default;
69
70   gpointer tmpbuf;
71   gint tmpbufsize;
72
73   gint in_scale;
74   gint out_scale;
75 };
76
77 gboolean        audio_convert_clean_fmt         (AudioConvertFmt *fmt); 
78
79 gboolean        audio_convert_prepare_context   (AudioConvertCtx *ctx, AudioConvertFmt *in, 
80                                                  AudioConvertFmt *out);
81 gboolean        audio_convert_get_sizes         (AudioConvertCtx *ctx, gint samples, gint *srcsize,
82                                                  gint *dstsize);
83
84 gboolean        audio_convert_clean_context     (AudioConvertCtx *ctx);
85
86 gboolean        audio_convert_convert           (AudioConvertCtx *ctx, gpointer src, 
87                                                  gpointer dst, gint samples, gboolean src_writable);
88
89 #endif /* __AUDIO_CONVERT_H__ */