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
|
|
|
|
*/
|
|
|
|
|
2009-02-15 17:48:37 +01:00
|
|
|
#include "decoder_api.h"
|
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 "normalize.h"
|
2008-11-02 14:12:52 +01:00
|
|
|
#include "pipe.h"
|
2008-08-26 08:27:04 +02:00
|
|
|
|
2008-11-24 14:32:53 +01:00
|
|
|
#include <glib.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2009-01-03 14:51:28 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2009-01-15 08:33:32 +01:00
|
|
|
void decoder_initialized(G_GNUC_UNUSED 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);
|
2009-01-03 23:29:45 +01:00
|
|
|
assert(decoder->stream_tag == NULL);
|
|
|
|
assert(decoder->decoder_tag == NULL);
|
2008-11-10 15:02:26 +01:00
|
|
|
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-11-21 20:27:30 +01:00
|
|
|
assert(audio_format_valid(audio_format));
|
2008-08-26 08:27:04 +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
|
|
|
|
2009-01-04 19:09:34 +01:00
|
|
|
char *decoder_get_uri(G_GNUC_UNUSED struct decoder *decoder)
|
2008-08-26 08:27:07 +02:00
|
|
|
{
|
2009-01-04 19:09:34 +01:00
|
|
|
return song_get_uri(dc.current_song);
|
2008-08-26 08:27:07 +02:00
|
|
|
}
|
|
|
|
|
2008-11-24 14:32:53 +01:00
|
|
|
enum decoder_command decoder_get_command(G_GNUC_UNUSED struct decoder * decoder)
|
2008-08-26 08:27:07 +02:00
|
|
|
{
|
|
|
|
return dc.command;
|
|
|
|
}
|
|
|
|
|
2008-11-24 14:32:53 +01:00
|
|
|
void decoder_command_finished(G_GNUC_UNUSED struct decoder * decoder)
|
2008-08-26 08:27:07 +02:00
|
|
|
{
|
|
|
|
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-11-24 14:32:53 +01:00
|
|
|
double decoder_seek_where(G_GNUC_UNUSED struct decoder * decoder)
|
2008-08-26 08:27:07 +02:00
|
|
|
{
|
|
|
|
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-11-15 19:27:30 +01:00
|
|
|
if (length == 0)
|
|
|
|
return 0;
|
|
|
|
|
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 */
|
2009-02-19 13:33:03 +01:00
|
|
|
g_usleep(10000);
|
2008-08-26 08:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-13 02:54:56 +01:00
|
|
|
need_chunks(struct input_stream *is, bool wait)
|
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-13 02:54:56 +01:00
|
|
|
if ((is == NULL || input_stream_buffer(is) <= 0) && wait) {
|
2008-08-26 08:27:05 +02:00
|
|
|
notify_wait(&dc.notify);
|
|
|
|
notify_signal(&pc.notify);
|
2008-11-13 14:43:19 +01:00
|
|
|
|
2009-01-13 18:15:25 +01:00
|
|
|
return dc.command;
|
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
|
|
|
}
|
|
|
|
|
2009-01-03 23:28:51 +01:00
|
|
|
static enum decoder_command
|
|
|
|
do_send_tag(struct input_stream *is, const struct tag *tag)
|
|
|
|
{
|
|
|
|
while (!music_pipe_tag(tag)) {
|
|
|
|
enum decoder_command cmd = need_chunks(is, true);
|
|
|
|
if (cmd != DECODE_COMMAND_NONE)
|
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DECODE_COMMAND_NONE;
|
|
|
|
}
|
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
static bool
|
|
|
|
update_stream_tag(struct decoder *decoder, struct input_stream *is)
|
|
|
|
{
|
|
|
|
struct tag *tag;
|
|
|
|
|
|
|
|
if (is == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
tag = input_stream_tag(is);
|
|
|
|
if (tag == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (decoder->stream_tag != NULL)
|
|
|
|
tag_free(decoder->stream_tag);
|
|
|
|
|
|
|
|
decoder->stream_tag = tag;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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,
|
2009-01-17 13:23:12 +01:00
|
|
|
const 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
|
|
|
{
|
2009-01-17 13:11:16 +01:00
|
|
|
const char *data = _data;
|
2008-08-26 08:27:05 +02:00
|
|
|
|
2008-11-10 15:02:26 +01:00
|
|
|
assert(dc.state == DECODE_STATE_DECODE);
|
2009-01-16 18:53:32 +01:00
|
|
|
assert(length % audio_format_frame_size(&dc.in_audio_format) == 0);
|
2008-11-10 15:02:26 +01:00
|
|
|
|
2008-11-13 02:42:40 +01:00
|
|
|
if (dc.command == DECODE_COMMAND_STOP ||
|
2008-11-21 20:26:57 +01:00
|
|
|
dc.command == DECODE_COMMAND_SEEK ||
|
|
|
|
length == 0)
|
2008-11-13 02:42:40 +01:00
|
|
|
return dc.command;
|
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
/* send stream tags */
|
|
|
|
|
|
|
|
if (update_stream_tag(decoder, is)) {
|
|
|
|
enum decoder_command cmd;
|
2008-11-03 18:24:01 +01:00
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
if (decoder->decoder_tag != NULL) {
|
|
|
|
/* merge with tag from decoder plugin */
|
|
|
|
struct tag *tag;
|
|
|
|
|
|
|
|
tag = tag_merge(decoder->stream_tag,
|
|
|
|
decoder->decoder_tag);
|
|
|
|
cmd = do_send_tag(is, tag);
|
|
|
|
tag_free(tag);
|
|
|
|
} else
|
|
|
|
/* send only the stream tag */
|
|
|
|
cmd = do_send_tag(is, decoder->stream_tag);
|
|
|
|
|
|
|
|
if (cmd != DECODE_COMMAND_NONE)
|
|
|
|
return cmd;
|
2008-11-03 18:24:01 +01:00
|
|
|
}
|
|
|
|
|
2009-01-17 13:11:16 +01:00
|
|
|
if (!audio_format_equals(&dc.in_audio_format, &dc.out_audio_format)) {
|
|
|
|
data = pcm_convert(&decoder->conv_state,
|
|
|
|
&dc.in_audio_format, data, length,
|
|
|
|
&dc.out_audio_format, &length);
|
2008-12-24 03:08:39 +01:00
|
|
|
|
|
|
|
/* under certain circumstances, pcm_convert() may
|
|
|
|
return an empty buffer - this condition should be
|
|
|
|
investigated further, but for now, do this check as
|
|
|
|
a workaround: */
|
2009-01-17 13:11:16 +01:00
|
|
|
if (data == NULL)
|
2008-12-24 03:08:39 +01:00
|
|
|
return DECODE_COMMAND_NONE;
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
|
|
|
|
2008-11-03 17:56:41 +01:00
|
|
|
while (length > 0) {
|
2009-01-17 13:11:10 +01:00
|
|
|
size_t nbytes;
|
|
|
|
char *dest = music_pipe_write(&dc.out_audio_format,
|
|
|
|
data_time, bitRate,
|
|
|
|
&nbytes);
|
|
|
|
if (dest == NULL) {
|
|
|
|
/* the music pipe is full: wait for more
|
|
|
|
room */
|
2009-01-17 15:23:57 +01:00
|
|
|
enum decoder_command cmd = need_chunks(is, true);
|
2008-10-29 16:11:15 +01:00
|
|
|
if (cmd != DECODE_COMMAND_NONE)
|
|
|
|
return cmd;
|
2009-01-17 13:11:10 +01:00
|
|
|
continue;
|
2008-08-26 08:27:05 +02:00
|
|
|
}
|
2009-01-17 13:11:10 +01:00
|
|
|
|
|
|
|
assert(nbytes > 0);
|
|
|
|
|
|
|
|
if (nbytes > length)
|
|
|
|
nbytes = length;
|
|
|
|
|
|
|
|
/* copy the buffer */
|
|
|
|
|
|
|
|
memcpy(dest, data, nbytes);
|
|
|
|
|
|
|
|
/* apply replay gain or normalization */
|
|
|
|
|
|
|
|
if (replay_gain_info != NULL &&
|
|
|
|
replay_gain_mode != REPLAY_GAIN_OFF)
|
|
|
|
replay_gain_apply(replay_gain_info, dest, nbytes,
|
|
|
|
&dc.out_audio_format);
|
|
|
|
else if (normalizationEnabled)
|
|
|
|
normalizeData(dest, nbytes, &dc.out_audio_format);
|
|
|
|
|
|
|
|
/* expand the music pipe chunk */
|
|
|
|
|
|
|
|
music_pipe_expand(&dc.out_audio_format, nbytes);
|
|
|
|
|
|
|
|
data += nbytes;
|
|
|
|
length -= nbytes;
|
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
|
2008-11-24 14:32:53 +01:00
|
|
|
decoder_tag(G_GNUC_UNUSED struct decoder *decoder, struct input_stream *is,
|
2008-11-02 17:02:28 +01:00
|
|
|
const struct tag *tag)
|
|
|
|
{
|
2009-01-03 23:28:51 +01:00
|
|
|
enum decoder_command cmd;
|
2008-11-03 18:24:01 +01:00
|
|
|
|
2008-11-10 15:02:26 +01:00
|
|
|
assert(dc.state == DECODE_STATE_DECODE);
|
2009-01-03 23:29:45 +01:00
|
|
|
assert(tag != NULL);
|
|
|
|
|
|
|
|
/* save the tag */
|
|
|
|
|
|
|
|
if (decoder->decoder_tag != NULL)
|
|
|
|
tag_free(decoder->decoder_tag);
|
|
|
|
decoder->decoder_tag = tag_dup(tag);
|
|
|
|
|
|
|
|
/* check for a new stream tag */
|
2008-11-10 15:02:26 +01:00
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
update_stream_tag(decoder, is);
|
2008-11-03 18:24:01 +01:00
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
/* send tag to music pipe */
|
2008-11-02 17:02:28 +01:00
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
if (decoder->stream_tag != NULL) {
|
|
|
|
/* merge with tag from input stream */
|
|
|
|
struct tag *merged;
|
2008-11-03 18:24:01 +01:00
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
merged = tag_merge(decoder->stream_tag, decoder->decoder_tag);
|
|
|
|
cmd = do_send_tag(is, merged);
|
|
|
|
tag_free(merged);
|
|
|
|
} else
|
|
|
|
/* send only the decoder tag */
|
|
|
|
cmd = do_send_tag(is, tag);
|
2008-11-03 18:24:01 +01:00
|
|
|
|
2009-01-03 23:28:51 +01:00
|
|
|
return cmd;
|
2008-11-02 17:02:28 +01:00
|
|
|
}
|