2010-12-22 09:08:12 +01:00
|
|
|
/*
|
2013-07-28 13:10:05 +02:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2010-12-22 09:08:12 +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"
|
2013-07-28 13:10:05 +02:00
|
|
|
#include "decoder/PcmDecoderPlugin.hxx"
|
2010-12-22 09:08:12 +01:00
|
|
|
#include "decoder_api.h"
|
2013-07-28 13:10:05 +02:00
|
|
|
|
|
|
|
extern "C" {
|
2012-03-21 19:07:15 +01:00
|
|
|
#include "util/byte_reverse.h"
|
2013-07-28 13:10:05 +02:00
|
|
|
}
|
2010-12-22 09:08:12 +01:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <unistd.h>
|
2011-10-09 17:39:11 +02:00
|
|
|
#include <stdio.h> /* for SEEK_SET */
|
2010-12-22 09:08:12 +01:00
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "pcm"
|
|
|
|
|
|
|
|
static void
|
|
|
|
pcm_stream_decode(struct decoder *decoder, struct input_stream *is)
|
|
|
|
{
|
2013-07-28 13:10:05 +02:00
|
|
|
static constexpr struct audio_format audio_format = {
|
|
|
|
44100,
|
|
|
|
SAMPLE_FORMAT_S16,
|
|
|
|
2,
|
2010-12-22 09:08:12 +01:00
|
|
|
};
|
2011-10-10 09:40:46 +02:00
|
|
|
|
2013-01-24 19:14:40 +01:00
|
|
|
const char *const mime = input_stream_get_mime_type(is);
|
2013-07-28 13:10:05 +02:00
|
|
|
const bool reverse_endian = mime != nullptr &&
|
2013-01-24 19:14:40 +01:00
|
|
|
strcmp(mime, "audio/x-mpd-cdda-pcm-reverse") == 0;
|
2011-10-10 09:40:46 +02:00
|
|
|
|
2013-07-28 13:10:05 +02:00
|
|
|
GError *error = nullptr;
|
2010-12-22 09:08:12 +01:00
|
|
|
enum decoder_command cmd;
|
|
|
|
|
2012-03-21 19:07:15 +01:00
|
|
|
double time_to_size = audio_format_time_to_size(&audio_format);
|
2010-12-22 09:08:12 +01:00
|
|
|
|
|
|
|
float total_time = -1;
|
2013-01-24 19:14:40 +01:00
|
|
|
const goffset size = input_stream_get_size(is);
|
|
|
|
if (size >= 0)
|
|
|
|
total_time = size / time_to_size;
|
2010-12-22 09:08:12 +01:00
|
|
|
|
2013-01-24 19:14:40 +01:00
|
|
|
decoder_initialized(decoder, &audio_format,
|
|
|
|
input_stream_is_seekable(is), total_time);
|
2010-12-22 09:08:12 +01:00
|
|
|
|
|
|
|
do {
|
|
|
|
char buffer[4096];
|
|
|
|
|
|
|
|
size_t nbytes = decoder_read(decoder, is,
|
|
|
|
buffer, sizeof(buffer));
|
2011-03-20 17:26:28 +01:00
|
|
|
|
2011-09-14 21:46:41 +02:00
|
|
|
if (nbytes == 0 && input_stream_lock_eof(is))
|
2011-03-20 17:26:28 +01:00
|
|
|
break;
|
|
|
|
|
2012-03-21 19:07:15 +01:00
|
|
|
if (reverse_endian)
|
|
|
|
/* make sure we deliver samples in host byte order */
|
|
|
|
reverse_bytes_16((uint16_t *)buffer,
|
|
|
|
(uint16_t *)buffer,
|
|
|
|
(uint16_t *)(buffer + nbytes));
|
|
|
|
|
2010-12-22 09:08:12 +01:00
|
|
|
cmd = nbytes > 0
|
|
|
|
? decoder_data(decoder, is,
|
|
|
|
buffer, nbytes, 0)
|
|
|
|
: decoder_get_command(decoder);
|
|
|
|
if (cmd == DECODE_COMMAND_SEEK) {
|
|
|
|
goffset offset = (goffset)(time_to_size *
|
|
|
|
decoder_seek_where(decoder));
|
2011-09-14 21:46:41 +02:00
|
|
|
if (input_stream_lock_seek(is, offset, SEEK_SET,
|
|
|
|
&error)) {
|
2010-12-22 09:08:12 +01:00
|
|
|
decoder_command_finished(decoder);
|
|
|
|
} else {
|
|
|
|
g_warning("seeking failed: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
decoder_seek_error(decoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = DECODE_COMMAND_NONE;
|
|
|
|
}
|
|
|
|
} while (cmd == DECODE_COMMAND_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const pcm_mime_types[] = {
|
|
|
|
/* for streams obtained by the cdio_paranoia input plugin */
|
|
|
|
"audio/x-mpd-cdda-pcm",
|
2011-10-10 09:40:46 +02:00
|
|
|
|
|
|
|
/* same as above, but with reverse byte order */
|
|
|
|
"audio/x-mpd-cdda-pcm-reverse",
|
|
|
|
|
2013-07-28 13:10:05 +02:00
|
|
|
nullptr
|
2010-12-22 09:08:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct decoder_plugin pcm_decoder_plugin = {
|
2013-07-28 13:10:05 +02:00
|
|
|
"pcm",
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
pcm_stream_decode,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
pcm_mime_types,
|
2010-12-22 09:08:12 +01:00
|
|
|
};
|