2 * Copyright (C) 2004 Ronald Bultje <rbultje@ronald.bitfreak.net>
4 * audioconvert.h: audio format conversion library
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.
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.
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.
22 #ifndef __AUDIO_CONVERT_H__
23 #define __AUDIO_CONVERT_H__
26 #include <gst/audio/multichannel.h>
28 typedef struct _AudioConvertCtx AudioConvertCtx;
29 typedef struct _AudioConvertFmt AudioConvertFmt;
31 struct _AudioConvertFmt
39 GstAudioChannelPosition *pos;
45 /* float audio caps */
51 typedef void (*AudioConvertUnpack) (gpointer src, gint32 *dst, gint64 scale, gint count);
52 typedef void (*AudioConvertPack) (gint32 *src, gpointer dst, gint depth, gint count);
54 struct _AudioConvertCtx
59 AudioConvertUnpack unpack;
60 AudioConvertPack pack;
62 /* channel conversion matrix, m[in_channels][out_channels].
63 * If identity matrix, passthrough applies. */
67 gboolean mix_passthrough;
77 gboolean audio_convert_clean_fmt (AudioConvertFmt *fmt);
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,
84 gboolean audio_convert_clean_context (AudioConvertCtx *ctx);
86 gboolean audio_convert_convert (AudioConvertCtx *ctx, gpointer src,
87 gpointer dst, gint samples, gboolean src_writable);
89 #endif /* __AUDIO_CONVERT_H__ */