2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-08-26 08:27:18 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-08-26 08:27:18 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2008-08-26 08:44:19 +02:00
|
|
|
#include "decoder_control.h"
|
2010-11-05 17:42:08 +01:00
|
|
|
#include "pipe.h"
|
2012-08-09 21:20:24 +02:00
|
|
|
#include "song.h"
|
2008-08-26 08:40:47 +02:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
2010-03-21 18:21:47 +01:00
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "decoder_control"
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2011-01-10 20:46:04 +01:00
|
|
|
struct decoder_control *
|
2011-01-10 21:27:43 +01:00
|
|
|
dc_new(GCond *client_cond)
|
2008-08-26 08:45:14 +02:00
|
|
|
{
|
2011-01-10 20:46:04 +01:00
|
|
|
struct decoder_control *dc = g_new(struct decoder_control, 1);
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->thread = NULL;
|
|
|
|
|
|
|
|
dc->mutex = g_mutex_new();
|
|
|
|
dc->cond = g_cond_new();
|
2011-01-10 21:27:43 +01:00
|
|
|
dc->client_cond = client_cond;
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->state = DECODE_STATE_STOP;
|
|
|
|
dc->command = DECODE_COMMAND_NONE;
|
2010-03-21 18:21:47 +01:00
|
|
|
|
2012-08-09 20:55:18 +02:00
|
|
|
dc->song = NULL;
|
|
|
|
|
2010-05-08 09:19:44 +02:00
|
|
|
dc->replay_gain_db = 0;
|
|
|
|
dc->replay_gain_prev_db = 0;
|
2010-03-21 18:21:47 +01:00
|
|
|
dc->mixramp_start = NULL;
|
|
|
|
dc->mixramp_end = NULL;
|
|
|
|
dc->mixramp_prev_end = NULL;
|
2011-01-10 20:46:04 +01:00
|
|
|
|
|
|
|
return dc;
|
2008-08-26 08:45:14 +02:00
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
void
|
2011-01-10 20:46:04 +01:00
|
|
|
dc_free(struct decoder_control *dc)
|
2008-09-24 07:14:11 +02:00
|
|
|
{
|
2012-08-08 21:54:54 +02:00
|
|
|
dc_clear_error(dc);
|
|
|
|
|
2012-08-09 20:55:18 +02:00
|
|
|
if (dc->song != NULL)
|
|
|
|
song_free(dc->song);
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
g_cond_free(dc->cond);
|
|
|
|
g_mutex_free(dc->mutex);
|
2010-09-23 08:49:21 +02:00
|
|
|
g_free(dc->mixramp_start);
|
|
|
|
g_free(dc->mixramp_end);
|
|
|
|
g_free(dc->mixramp_prev_end);
|
2011-01-10 20:46:04 +01:00
|
|
|
g_free(dc);
|
2008-09-24 07:14:11 +02:00
|
|
|
}
|
|
|
|
|
2009-08-13 23:33:46 +02:00
|
|
|
static void
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command_wait_locked(struct decoder_control *dc)
|
2008-08-26 08:27:18 +02:00
|
|
|
{
|
2009-11-02 17:12:00 +01:00
|
|
|
while (dc->command != DECODE_COMMAND_NONE)
|
2011-01-10 21:27:43 +01:00
|
|
|
g_cond_wait(dc->client_cond, dc->mutex);
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:16 +02:00
|
|
|
static void
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command_locked(struct decoder_control *dc, enum decoder_command cmd)
|
2008-08-26 08:27:18 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->command = cmd;
|
2009-11-02 17:12:00 +01:00
|
|
|
decoder_signal(dc);
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command_wait_locked(dc);
|
2009-08-13 23:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command(struct decoder_control *dc, enum decoder_command cmd)
|
2009-08-13 23:33:46 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_lock(dc);
|
2012-08-08 21:54:54 +02:00
|
|
|
dc_clear_error(dc);
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command_locked(dc, cmd);
|
|
|
|
decoder_unlock(dc);
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
static void
|
|
|
|
dc_command_async(struct decoder_control *dc, enum decoder_command cmd)
|
2008-08-26 08:27:18 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_lock(dc);
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->command = cmd;
|
|
|
|
decoder_signal(dc);
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_unlock(dc);
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
|
|
|
|
2012-08-15 17:49:23 +02:00
|
|
|
bool
|
|
|
|
decoder_is_current_song(const struct decoder_control *dc,
|
|
|
|
const struct song *song)
|
|
|
|
{
|
|
|
|
assert(dc != NULL);
|
|
|
|
assert(song != NULL);
|
|
|
|
|
|
|
|
switch (dc->state) {
|
|
|
|
case DECODE_STATE_STOP:
|
|
|
|
case DECODE_STATE_ERROR:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case DECODE_STATE_START:
|
|
|
|
case DECODE_STATE_DECODE:
|
2012-08-09 21:20:24 +02:00
|
|
|
return song_equals(dc->song, song);
|
2012-08-15 17:49:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
void
|
2009-11-03 21:18:22 +01:00
|
|
|
dc_start(struct decoder_control *dc, struct song *song,
|
2011-10-05 22:37:59 +02:00
|
|
|
unsigned start_ms, unsigned end_ms,
|
2009-11-03 21:18:22 +01:00
|
|
|
struct music_buffer *buffer, struct music_pipe *pipe)
|
2008-08-26 08:27:18 +02:00
|
|
|
{
|
|
|
|
assert(song != NULL);
|
2009-11-03 21:18:22 +01:00
|
|
|
assert(buffer != NULL);
|
|
|
|
assert(pipe != NULL);
|
2010-11-05 17:42:08 +01:00
|
|
|
assert(music_pipe_empty(pipe));
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2012-08-09 20:55:18 +02:00
|
|
|
if (dc->song != NULL)
|
|
|
|
song_free(dc->song);
|
|
|
|
|
2009-11-03 20:02:19 +01:00
|
|
|
dc->song = song;
|
2011-10-05 22:37:59 +02:00
|
|
|
dc->start_ms = start_ms;
|
|
|
|
dc->end_ms = end_ms;
|
2009-11-03 21:18:22 +01:00
|
|
|
dc->buffer = buffer;
|
|
|
|
dc->pipe = pipe;
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command(dc, DECODE_COMMAND_START);
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:16 +02:00
|
|
|
void
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_stop(struct decoder_control *dc)
|
2008-08-26 08:27:18 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_lock(dc);
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
if (dc->command != DECODE_COMMAND_NONE)
|
2009-04-25 15:19:01 +02:00
|
|
|
/* Attempt to cancel the current command. If it's too
|
|
|
|
late and the decoder thread is already executing
|
|
|
|
the old command, we'll call STOP again in this
|
|
|
|
function (see below). */
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command_locked(dc, DECODE_COMMAND_STOP);
|
2009-04-25 15:19:01 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
if (dc->state != DECODE_STATE_STOP && dc->state != DECODE_STATE_ERROR)
|
|
|
|
dc_command_locked(dc, DECODE_COMMAND_STOP);
|
2009-08-13 23:33:46 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_unlock(dc);
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
bool
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_seek(struct decoder_control *dc, double where)
|
2008-08-26 08:27:18 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
assert(dc->state != DECODE_STATE_START);
|
2008-08-26 08:27:18 +02:00
|
|
|
assert(where >= 0.0);
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
if (dc->state == DECODE_STATE_STOP ||
|
|
|
|
dc->state == DECODE_STATE_ERROR || !dc->seekable)
|
2008-10-30 08:38:54 +01:00
|
|
|
return false;
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->seek_where = where;
|
|
|
|
dc->seek_error = false;
|
|
|
|
dc_command(dc, DECODE_COMMAND_SEEK);
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
if (dc->seek_error)
|
2008-10-30 08:38:54 +01:00
|
|
|
return false;
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
return true;
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
2008-12-28 19:48:53 +01:00
|
|
|
|
|
|
|
void
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_quit(struct decoder_control *dc)
|
2008-12-28 19:48:53 +01:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
assert(dc->thread != NULL);
|
2009-01-25 13:44:27 +01:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->quit = true;
|
|
|
|
dc_command_async(dc, DECODE_COMMAND_STOP);
|
2009-01-25 13:44:27 +01:00
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
g_thread_join(dc->thread);
|
|
|
|
dc->thread = NULL;
|
2008-12-28 19:48:53 +01:00
|
|
|
}
|
2010-03-21 18:21:47 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
dc_mixramp_start(struct decoder_control *dc, char *mixramp_start)
|
|
|
|
{
|
|
|
|
assert(dc != NULL);
|
|
|
|
|
2010-09-23 08:49:21 +02:00
|
|
|
g_free(dc->mixramp_start);
|
2010-03-21 18:21:47 +01:00
|
|
|
dc->mixramp_start = mixramp_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dc_mixramp_end(struct decoder_control *dc, char *mixramp_end)
|
|
|
|
{
|
|
|
|
assert(dc != NULL);
|
|
|
|
|
2010-09-23 08:49:21 +02:00
|
|
|
g_free(dc->mixramp_end);
|
2010-03-21 18:21:47 +01:00
|
|
|
dc->mixramp_end = mixramp_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dc_mixramp_prev_end(struct decoder_control *dc, char *mixramp_prev_end)
|
|
|
|
{
|
|
|
|
assert(dc != NULL);
|
|
|
|
|
2010-09-23 08:49:21 +02:00
|
|
|
g_free(dc->mixramp_prev_end);
|
2010-03-21 18:21:47 +01:00
|
|
|
dc->mixramp_prev_end = mixramp_prev_end;
|
|
|
|
}
|