expand tabs
[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   gint unit_size;
46 };
47
48 typedef void (*AudioConvertUnpack) (gpointer src, gint32 *dst, gint scale, gint count);
49 typedef void (*AudioConvertPack) (gint32 *src, gpointer dst, gint scale, gint count);
50
51 struct _AudioConvertCtx
52 {
53   AudioConvertFmt in;
54   AudioConvertFmt out;
55
56   AudioConvertUnpack unpack;
57   AudioConvertPack pack;
58
59   /* channel conversion matrix, m[in_channels][out_channels].
60    * If identity matrix, passthrough applies. */
61   gfloat **matrix;
62   /* temp storage for channelmix */
63   gint32 *tmp;
64
65   gboolean in_default;
66   gboolean mix_passthrough;
67   gboolean out_default;
68
69   gpointer tmpbuf;
70   gint tmpbufsize;
71
72   gint in_scale;
73   gint out_scale;
74 };
75
76 gboolean        audio_convert_clean_fmt         (AudioConvertFmt *fmt); 
77
78 gboolean        audio_convert_prepare_context   (AudioConvertCtx *ctx, AudioConvertFmt *in, 
79                                                  AudioConvertFmt *out);
80 gboolean        audio_convert_get_sizes         (AudioConvertCtx *ctx, gint samples, gint *srcsize,
81                                                  gint *dstsize);
82
83 gboolean        audio_convert_clean_context     (AudioConvertCtx *ctx);
84
85 gboolean        audio_convert_convert           (AudioConvertCtx *ctx, gpointer src, 
86                                                  gpointer dst, gint samples, gboolean src_writable);
87
88 #endif /* __AUDIO_CONVERT_H__ */