Merge remote-tracking branch 'origin/master' into 0.11
[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/audio.h>
27
28 GST_DEBUG_CATEGORY_EXTERN (audio_convert_debug);
29 #define GST_CAT_DEFAULT (audio_convert_debug)
30
31 /**
32  * GstAudioConvertDithering:
33  * @DITHER_NONE: No dithering
34  * @DITHER_RPDF: Rectangular dithering
35  * @DITHER_TPDF: Triangular dithering (default)
36  * @DITHER_TPDF_HF: High frequency triangular dithering
37  *
38  * Set of available dithering methods when converting audio.
39  */
40 typedef enum
41 {
42   DITHER_NONE = 0,
43   DITHER_RPDF,
44   DITHER_TPDF,
45   DITHER_TPDF_HF
46 } GstAudioConvertDithering;
47
48 /**
49  * GstAudioConvertNoiseShaping:
50  * @NOISE_SHAPING_NONE: No noise shaping (default)
51  * @NOISE_SHAPING_ERROR_FEEDBACK: Error feedback
52  * @NOISE_SHAPING_SIMPLE: Simple 2-pole noise shaping
53  * @NOISE_SHAPING_MEDIUM: Medium 5-pole noise shaping
54  * @NOISE_SHAPING_HIGH: High 8-pole noise shaping
55  *
56  * Set of available noise shaping methods
57  */
58 typedef enum
59 {
60   NOISE_SHAPING_NONE = 0,
61   NOISE_SHAPING_ERROR_FEEDBACK,
62   NOISE_SHAPING_SIMPLE,
63   NOISE_SHAPING_MEDIUM,
64   NOISE_SHAPING_HIGH
65 } GstAudioConvertNoiseShaping;
66
67 typedef struct _AudioConvertCtx AudioConvertCtx;
68 #if 0
69 typedef struct _AudioConvertFmt AudioConvertFmt;
70
71 struct _AudioConvertFmt
72 {
73   /* general caps */
74   gboolean is_int;
75   gint endianness;
76   gint width;
77   gint rate;
78   gint channels;
79   GstAudioChannelPosition *pos;
80   gboolean unpositioned_layout;
81
82   /* int audio caps */
83   gboolean sign;
84   gint depth;
85
86   gint unit_size;
87 };
88 #endif
89
90 typedef void (*AudioConvertUnpack) (gpointer src, gpointer dst, gint scale,
91     gint count);
92 typedef void (*AudioConvertPack) (gpointer src, gpointer dst, gint scale,
93     gint count);
94
95 typedef void (*AudioConvertMix) (AudioConvertCtx *, gpointer, gpointer, gint);
96 typedef void (*AudioConvertQuantize) (AudioConvertCtx * ctx, gpointer src,
97     gpointer dst, gint count);
98
99 struct _AudioConvertCtx
100 {
101   GstAudioInfo in;
102   GstAudioInfo out;
103
104   AudioConvertUnpack unpack;
105   AudioConvertPack pack;
106
107   /* channel conversion matrix, m[in_channels][out_channels].
108    * If identity matrix, passthrough applies. */
109   gfloat **matrix;
110   /* temp storage for channelmix */
111   gpointer tmp;
112
113   gboolean in_default;
114   gboolean mix_passthrough;
115   gboolean out_default;
116
117   gpointer tmpbuf;
118   gint tmpbufsize;
119
120   gint in_scale;
121   gint out_scale;
122
123   AudioConvertMix channel_mix;
124
125   AudioConvertQuantize quantize;
126
127   GstAudioConvertDithering dither;
128   GstAudioConvertNoiseShaping ns;
129   /* last random number generated per channel for hifreq TPDF dither */
130   gpointer last_random;
131   /* contains the past quantization errors, error[out_channels][count] */
132   gdouble *error_buf;
133 };
134
135 gboolean audio_convert_prepare_context (AudioConvertCtx * ctx,
136     GstAudioInfo * in, GstAudioInfo * out,
137     GstAudioConvertDithering dither, GstAudioConvertNoiseShaping ns);
138 gboolean audio_convert_get_sizes (AudioConvertCtx * ctx, gint samples,
139     gint * srcsize, gint * dstsize);
140
141 gboolean audio_convert_clean_context (AudioConvertCtx * ctx);
142
143 gboolean audio_convert_convert (AudioConvertCtx * ctx, gpointer src,
144     gpointer dst, gint samples, gboolean src_writable);
145
146 #endif /* __AUDIO_CONVERT_H__ */