2 * Copyright (C) 2003-2010 The Music Player Daemon Project
3 * http://www.musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program 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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "pcm_resample.h"
24 #include "pcm_dither.h"
25 #include "pcm_buffer.h"
30 * This object is statically allocated (within another struct), and
31 * holds buffer allocations and the state for all kinds of PCM
34 struct pcm_convert_state
{
35 struct pcm_resample_state resample
;
37 struct pcm_dither dither
;
39 /** the buffer for converting the sample format */
40 struct pcm_buffer format_buffer
;
42 /** the buffer for converting to/from packed samples */
43 struct pcm_buffer pack_buffer
;
45 /** the buffer for converting the channel count */
46 struct pcm_buffer channels_buffer
;
48 /** the buffer for swapping the byte order */
49 struct pcm_buffer byteswap_buffer
;
53 pcm_convert_quark(void)
55 return g_quark_from_static_string("pcm_convert");
59 * Initializes a pcm_convert_state object.
61 void pcm_convert_init(struct pcm_convert_state
*state
);
64 * Deinitializes a pcm_convert_state object and frees allocated
67 void pcm_convert_deinit(struct pcm_convert_state
*state
);
70 * Converts PCM data between two audio formats.
72 * @param state an initialized pcm_convert_state object
73 * @param src_format the source audio format
74 * @param src the source PCM buffer
75 * @param src_size the size of #src in bytes
76 * @param dest_format the requested destination audio format
77 * @param dest_size_r returns the number of bytes of the destination buffer
78 * @param error_r location to store the error occuring, or NULL to
80 * @return the destination buffer, or NULL on error
83 pcm_convert(struct pcm_convert_state
*state
,
84 const struct audio_format
*src_format
,
85 const void *src
, size_t src_size
,
86 const struct audio_format
*dest_format
,