2008-08-26 08:27:04 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
|
|
|
* Copyright (C) 2008 Max Kellermann <max@duempel.org>
|
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-26 08:27:06 +02:00
|
|
|
#include "decoder_internal.h"
|
2008-08-26 08:44:19 +02:00
|
|
|
#include "decoder_control.h"
|
2008-08-26 08:44:38 +02:00
|
|
|
#include "player_control.h"
|
2008-08-26 08:27:06 +02:00
|
|
|
#include "audio.h"
|
2008-10-08 10:49:11 +02:00
|
|
|
#include "song.h"
|
2008-08-26 08:27:04 +02:00
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "normalize.h"
|
2008-11-02 14:12:52 +01:00
|
|
|
#include "pipe.h"
|
2008-08-26 08:27:04 +02:00
|
|
|
#include "gcc.h"
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2008-08-26 08:27:06 +02:00
|
|
|
void decoder_initialized(struct decoder * decoder,
|
2008-09-07 19:19:55 +02:00
|
|
|
const struct audio_format *audio_format,
|
2008-11-02 17:01:51 +01:00
|
|
|
bool seekable, float total_time)
|
2008-08-26 08:27:04 +02:00
|
|
|
{
|
|
|
|
assert(dc.state == DECODE_STATE_START);
|
2008-11-10 15:02:26 +01:00
|
|
|
assert(decoder != NULL);
|
|
|
|
assert(!decoder->stream_tag_sent);
|
|
|
|
assert(!decoder->seeking);
|
2008-10-29 17:29:03 +01:00
|
|
|
assert(audio_format != NULL);
|
2008-11-10 15:02:26 +01:00
|
|
|
assert(audio_format_defined(audio_format));
|
2008-08-26 08:27:04 +02:00
|
|
|
|
2008-10-21 22:53:16 +02:00
|
|
|
pcm_convert_init(&decoder->conv_state);
|
2008-08-26 08:27:06 +02:00
|
|
|
|
2008-11-02 16:55:43 +01:00
|
|
|
dc.in_audio_format = *audio_format;
|
|
|
|
getOutputAudioFormat(audio_format, &dc.out_audio_format);
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2008-11-02 17:01:51 +01:00
|
|
|
dc.seekable = seekable;
|
2008-11-03 21:43:02 +01:00
|
|
|
dc.total_time = total_time;
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
dc.state = DECODE_STATE_DECODE;
|
|
|
|
notify_signal(&pc.notify);
|
|
|
|
}
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
const char *decoder_get_url(mpd_unused struct decoder * decoder, char * buffer)
|
|
|
|
{
|
2008-10-08 11:05:34 +02:00
|
|
|
return song_get_url(dc.current_song, buffer);
|
2008-08-26 08:27:07 +02:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
enum decoder_command decoder_get_command(mpd_unused struct decoder * decoder)
|
|
|
|
{
|
|
|
|
return dc.command;
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
void decoder_command_finished(mpd_unused struct decoder * decoder)
|
|
|
|
{
|
|
|
|
assert(dc.command != DECODE_COMMAND_NONE);
|
2008-08-26 08:27:14 +02:00
|
|
|
assert(dc.command != DECODE_COMMAND_SEEK ||
|
2008-11-03 21:43:02 +01:00
|
|
|
dc.seek_error || decoder->seeking);
|
2008-08-26 08:27:07 +02:00
|
|
|
|
2008-10-29 17:28:47 +01:00
|
|
|
if (dc.command == DECODE_COMMAND_SEEK)
|
|
|
|
/* delete frames from the old song position */
|
2008-11-02 14:18:34 +01:00
|
|
|
music_pipe_clear();
|
2008-10-29 17:28:47 +01:00
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
dc.command = DECODE_COMMAND_NONE;
|
|
|
|
notify_signal(&pc.notify);
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
double decoder_seek_where(mpd_unused struct decoder * decoder)
|
|
|
|
{
|
|
|
|
assert(dc.command == DECODE_COMMAND_SEEK);
|
|
|
|
|
2008-10-08 11:03:39 +02:00
|
|
|
decoder->seeking = true;
|
2008-08-26 08:27:14 +02:00
|
|
|
|
2008-11-03 21:43:02 +01:00
|
|
|
return dc.seek_where;
|
2008-08-26 08:27:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void decoder_seek_error(struct decoder * decoder)
|
|
|
|
{
|
|
|
|
assert(dc.command == DECODE_COMMAND_SEEK);
|
|
|
|
|
2008-11-03 21:43:02 +01:00
|
|
|
dc.seek_error = true;
|
2008-08-26 08:27:07 +02:00
|
|
|
decoder_command_finished(decoder);
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:14 +02:00
|
|
|
size_t decoder_read(struct decoder *decoder,
|
2008-11-03 17:56:41 +01:00
|
|
|
struct input_stream *is,
|
2008-08-26 08:27:14 +02:00
|
|
|
void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
size_t nbytes;
|
|
|
|
|
2008-11-11 15:55:28 +01:00
|
|
|
assert(decoder == NULL ||
|
|
|
|
dc.state == DECODE_STATE_START ||
|
2008-11-10 15:02:26 +01:00
|
|
|
dc.state == DECODE_STATE_DECODE);
|
2008-11-03 17:56:41 +01:00
|
|
|
assert(is != NULL);
|
2008-08-26 08:27:14 +02:00
|
|
|
assert(buffer != NULL);
|
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
while (true) {
|
2008-08-26 08:27:14 +02:00
|
|
|
/* XXX don't allow decoder==NULL */
|
2008-08-26 08:27:14 +02:00
|
|
|
if (decoder != NULL &&
|
2008-11-13 02:06:55 +01:00
|
|
|
/* ignore the SEEK command during initialization,
|
|
|
|
the plugin should handle that after it has
|
|
|
|
initialized successfully */
|
2008-08-26 08:27:14 +02:00
|
|
|
(dc.command != DECODE_COMMAND_SEEK ||
|
2008-11-13 02:06:55 +01:00
|
|
|
(dc.state != DECODE_STATE_START && !decoder->seeking)) &&
|
2008-08-26 08:27:14 +02:00
|
|
|
dc.command != DECODE_COMMAND_NONE)
|
2008-08-26 08:27:14 +02:00
|
|
|
return 0;
|
|
|
|
|
2008-11-03 17:56:41 +01:00
|
|
|
nbytes = input_stream_read(is, buffer, length);
|
|
|
|
if (nbytes > 0 || input_stream_eof(is))
|
2008-08-26 08:27:14 +02:00
|
|
|
return nbytes;
|
|
|
|
|
|
|
|
/* sleep for a fraction of a second! */
|
|
|
|
/* XXX don't sleep, wait for an event instead */
|
|
|
|
my_usleep(10000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-03 18:24:01 +01:00
|
|
|
/**
|
|
|
|
* Add the tag items from the input stream (meta_name, meta_title) to
|
|
|
|
* a duplicate of the specified tag. The return value has to be freed
|
|
|
|
* with tag_free(). If this function returns NULL, then there are no
|
|
|
|
* tags provided by the stream.
|
|
|
|
*/
|
|
|
|
static struct tag *
|
|
|
|
tag_add_stream_tags(const struct tag *src_tag, const struct input_stream *is)
|
|
|
|
{
|
|
|
|
struct tag *tag;
|
|
|
|
|
|
|
|
assert(src_tag != NULL);
|
|
|
|
assert(is != NULL);
|
|
|
|
|
|
|
|
if ((is->meta_name == NULL || tag_has_type(src_tag, TAG_ITEM_NAME)) &&
|
|
|
|
(is->meta_title == NULL || tag_has_type(src_tag, TAG_ITEM_TITLE)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tag = tag_dup(src_tag);
|
|
|
|
if (is->meta_name != NULL && !tag_has_type(src_tag, TAG_ITEM_NAME))
|
|
|
|
tag_add_item(tag, TAG_ITEM_NAME, is->meta_name);
|
|
|
|
if (is->meta_title != NULL && !tag_has_type(src_tag, TAG_ITEM_TITLE))
|
|
|
|
tag_add_item(tag, TAG_ITEM_TITLE, is->meta_title);
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:05 +02:00
|
|
|
/**
|
|
|
|
* All chunks are full of decoded data; wait for the player to free
|
|
|
|
* one.
|
|
|
|
*/
|
2008-08-26 08:27:07 +02:00
|
|
|
static enum decoder_command
|
2008-11-03 17:56:41 +01:00
|
|
|
need_chunks(struct input_stream *is)
|
2008-08-26 08:27:05 +02:00
|
|
|
{
|
2008-11-02 17:01:51 +01:00
|
|
|
if (dc.command == DECODE_COMMAND_STOP ||
|
|
|
|
dc.command == DECODE_COMMAND_SEEK)
|
|
|
|
return dc.command;
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2008-11-03 17:56:41 +01:00
|
|
|
if (is == NULL || input_stream_buffer(is) <= 0) {
|
2008-08-26 08:27:05 +02:00
|
|
|
notify_wait(&dc.notify);
|
|
|
|
notify_signal(&pc.notify);
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
return DECODE_COMMAND_NONE;
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
enum decoder_command
|
2008-10-17 17:53:48 +02:00
|
|
|
decoder_data(struct decoder *decoder,
|
2008-11-03 17:56:41 +01:00
|
|
|
struct input_stream *is,
|
|
|
|
void *_data, size_t length,
|
2008-09-29 15:49:29 +02:00
|
|
|
float data_time, uint16_t bitRate,
|
2008-11-11 15:55:34 +01:00
|
|
|
struct replay_gain_info *replay_gain_info)
|
2008-08-26 08:27:05 +02:00
|
|
|
{
|
2008-11-03 17:56:41 +01:00
|
|
|
static char *conv_buffer;
|
|
|
|
static size_t conv_buffer_size;
|
2008-08-26 08:27:05 +02:00
|
|
|
size_t nbytes;
|
|
|
|
char *data;
|
|
|
|
|
2008-11-10 15:02:26 +01:00
|
|
|
assert(dc.state == DECODE_STATE_DECODE);
|
|
|
|
|
2008-11-03 18:24:01 +01:00
|
|
|
if (is != NULL && !decoder->stream_tag_sent) {
|
2008-11-03 20:20:09 +01:00
|
|
|
const struct tag *src;
|
|
|
|
struct tag *tag1, *tag2;
|
|
|
|
|
|
|
|
/* base is the current song's tag, or an empty new
|
|
|
|
tag if the song has no tag */
|
|
|
|
src = dc.current_song->tag;
|
|
|
|
if (src == NULL)
|
|
|
|
src = tag1 = tag_new();
|
|
|
|
else
|
|
|
|
tag1 = NULL;
|
|
|
|
|
|
|
|
tag2 = tag_add_stream_tags(src, is);
|
|
|
|
if (tag1 != NULL)
|
|
|
|
/* free the empty tag created by tag_new(), we
|
|
|
|
aren't going to send it */
|
|
|
|
tag_free(tag1);
|
|
|
|
|
|
|
|
if (tag2 != NULL)
|
|
|
|
/* use the composite tag returned by
|
|
|
|
tag_add_stream_tags() */
|
|
|
|
src = tag2;
|
|
|
|
|
|
|
|
if (src != NULL) {
|
|
|
|
music_pipe_tag(src);
|
|
|
|
if (tag2 != NULL)
|
|
|
|
tag_free(tag2);
|
2008-11-03 18:24:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
decoder->stream_tag_sent = true;
|
|
|
|
}
|
|
|
|
|
2008-11-02 16:55:43 +01:00
|
|
|
if (audio_format_equals(&dc.in_audio_format, &dc.out_audio_format)) {
|
2008-11-03 17:56:41 +01:00
|
|
|
data = _data;
|
2008-08-26 08:27:05 +02:00
|
|
|
} else {
|
2008-11-03 17:56:41 +01:00
|
|
|
length = pcm_convert_size(&dc.in_audio_format, length,
|
|
|
|
&dc.out_audio_format);
|
|
|
|
if (length > conv_buffer_size) {
|
|
|
|
if (conv_buffer != NULL)
|
|
|
|
free(conv_buffer);
|
|
|
|
conv_buffer = xmalloc(length);
|
|
|
|
conv_buffer_size = length;
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
2008-11-03 17:56:41 +01:00
|
|
|
|
|
|
|
data = conv_buffer;
|
|
|
|
length = pcm_convert(&dc.in_audio_format, _data,
|
|
|
|
length, &dc.out_audio_format,
|
|
|
|
data, &decoder->conv_state);
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
|
|
|
|
2008-11-11 15:55:34 +01:00
|
|
|
if (replay_gain_info != NULL && (replay_gain_mode != REPLAY_GAIN_OFF))
|
|
|
|
replay_gain_apply(replay_gain_info, data, length,
|
2008-11-02 16:55:43 +01:00
|
|
|
&dc.out_audio_format);
|
2008-08-26 08:27:05 +02:00
|
|
|
else if (normalizationEnabled)
|
2008-11-03 17:56:41 +01:00
|
|
|
normalizeData(data, length, &dc.out_audio_format);
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2008-11-03 17:56:41 +01:00
|
|
|
while (length > 0) {
|
|
|
|
nbytes = music_pipe_append(data, length,
|
2008-11-02 16:55:43 +01:00
|
|
|
&dc.out_audio_format,
|
|
|
|
data_time, bitRate);
|
2008-11-03 17:56:41 +01:00
|
|
|
length -= nbytes;
|
2008-08-26 08:27:05 +02:00
|
|
|
data += nbytes;
|
|
|
|
|
2008-11-03 17:56:41 +01:00
|
|
|
if (length > 0) {
|
|
|
|
enum decoder_command cmd = need_chunks(is);
|
2008-10-29 16:11:15 +01:00
|
|
|
if (cmd != DECODE_COMMAND_NONE)
|
|
|
|
return cmd;
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-26 08:27:07 +02:00
|
|
|
return DECODE_COMMAND_NONE;
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
2008-11-02 17:02:28 +01:00
|
|
|
|
|
|
|
enum decoder_command
|
|
|
|
decoder_tag(mpd_unused struct decoder *decoder, struct input_stream *is,
|
|
|
|
const struct tag *tag)
|
|
|
|
{
|
2008-11-03 18:24:01 +01:00
|
|
|
struct tag *tag2 = is != NULL ? tag_add_stream_tags(tag, is) : NULL;
|
|
|
|
|
2008-11-10 15:02:26 +01:00
|
|
|
assert(dc.state == DECODE_STATE_DECODE);
|
|
|
|
|
2008-11-03 18:24:01 +01:00
|
|
|
if (tag2 != NULL)
|
|
|
|
tag = tag2;
|
|
|
|
|
2008-11-02 17:02:28 +01:00
|
|
|
while (!music_pipe_tag(tag)) {
|
|
|
|
enum decoder_command cmd = need_chunks(is);
|
|
|
|
if (cmd != DECODE_COMMAND_NONE)
|
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
2008-11-03 18:24:01 +01:00
|
|
|
if (tag2 != NULL)
|
|
|
|
tag_free(tag2);
|
|
|
|
|
|
|
|
decoder->stream_tag_sent = true;
|
|
|
|
|
2008-11-02 17:02:28 +01:00
|
|
|
return DECODE_COMMAND_NONE;
|
|
|
|
}
|