diff options
author | Max Kellermann <max@duempel.org> | 2009-11-11 07:59:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-11 07:59:22 +0100 |
commit | d605329f833ac323a41ca34ee4428d6bef69b1b1 (patch) | |
tree | e22270ee17c20d068d8951bfe1aafd96521a8b94 /src/decoder/flac_pcm.h | |
parent | f6e7dffada2e98a38a61eb54494e32dab1391480 (diff) | |
download | mpd-d605329f833ac323a41ca34ee4428d6bef69b1b1.tar.gz mpd-d605329f833ac323a41ca34ee4428d6bef69b1b1.tar.xz mpd-d605329f833ac323a41ca34ee4428d6bef69b1b1.zip |
decoder/flac: moved code to flac_pcm.c
Diffstat (limited to '')
-rw-r--r-- | src/decoder/flac_pcm.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/decoder/flac_pcm.h b/src/decoder/flac_pcm.h new file mode 100644 index 000000000..dca9d6824 --- /dev/null +++ b/src/decoder/flac_pcm.h @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2003-2009 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_FLAC_PCM_H +#define MPD_FLAC_PCM_H + +#include <FLAC/ordinals.h> + +void +flac_convert(void *dest, + unsigned int num_channels, unsigned sample_format, + const FLAC__int32 *const buf[], + unsigned int position, unsigned int end); + +#endif |