mpd/src/decoder/plugins/FlacPcm.cxx

83 lines
2.2 KiB
C++
Raw Normal View History

2009-11-11 07:59:22 +01:00
/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 The Music Player Daemon Project
2009-11-11 07:59:22 +01:00
* 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.
*/
#include "config.h"
#include "FlacPcm.hxx"
2009-11-11 07:59:22 +01:00
#include <assert.h>
template<typename T>
static void
FlacImportStereo(T *dest, const FLAC__int32 *const src[], size_t n_frames)
2009-11-11 07:59:22 +01:00
{
for (size_t i = 0; i != n_frames; ++i) {
*dest++ = (T)src[0][i];
*dest++ = (T)src[1][i];
2009-11-11 07:59:22 +01:00
}
}
template<typename T>
2009-11-11 07:59:22 +01:00
static void
FlacImportAny(T *dest, const FLAC__int32 *const src[], size_t n_frames,
unsigned n_channels)
2009-11-11 07:59:22 +01:00
{
for (size_t i = 0; i != n_frames; ++i)
for (unsigned c = 0; c != n_channels; ++c)
*dest++ = src[c][i];
2009-11-11 07:59:22 +01:00
}
template<typename T>
2009-11-11 07:59:22 +01:00
static void
FlacImport(T *dest, const FLAC__int32 *const src[], size_t n_frames,
unsigned n_channels)
2009-11-11 07:59:22 +01:00
{
FlacImportAny(dest, src, n_frames, n_channels);
2009-11-11 07:59:22 +01:00
}
void
flac_convert(void *dest,
2013-08-03 21:00:50 +02:00
unsigned int num_channels, SampleFormat sample_format,
2009-11-11 07:59:22 +01:00
const FLAC__int32 *const buf[],
size_t n_frames)
2009-11-11 07:59:22 +01:00
{
switch (sample_format) {
2013-08-03 21:00:50 +02:00
case SampleFormat::S16:
2009-11-11 07:59:22 +01:00
if (num_channels == 2)
FlacImportStereo((int16_t *)dest, buf, n_frames);
2009-11-11 07:59:22 +01:00
else
FlacImportAny((int16_t *)dest, buf, n_frames, num_channels);
2009-11-11 07:59:22 +01:00
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S24_P32:
case SampleFormat::S32:
FlacImport((int32_t *)dest, buf, n_frames, num_channels);
2009-11-11 07:59:22 +01:00
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S8:
FlacImport((int8_t *)dest, buf, n_frames, num_channels);
2009-11-11 07:59:22 +01:00
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::FLOAT:
case SampleFormat::DSD:
case SampleFormat::UNDEFINED:
assert(false);
2013-08-03 21:34:17 +02:00
gcc_unreachable();
2009-11-11 07:59:22 +01:00
}
}