2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 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"
|
2009-10-31 17:02:12 +01:00
|
|
|
#include "player_control.h"
|
2010-11-05 17:42:08 +01:00
|
|
|
#include "pipe.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
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
void
|
|
|
|
dc_init(struct decoder_control *dc)
|
2008-08-26 08:45:14 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
dc->thread = NULL;
|
|
|
|
|
|
|
|
dc->mutex = g_mutex_new();
|
|
|
|
dc->cond = g_cond_new();
|
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
|
|
|
|
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;
|
2008-08-26 08:45:14 +02:00
|
|
|
}
|
|
|
|
|
2009-10-31 19:22:56 +01:00
|
|
|
void
|
|
|
|
dc_deinit(struct decoder_control *dc)
|
2008-09-24 07:14:11 +02:00
|
|
|
{
|
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);
|
2010-03-21 18:21:47 +01:00
|
|
|
dc->mixramp_start = NULL;
|
|
|
|
dc->mixramp_end = NULL;
|
|
|
|
dc->mixramp_prev_end = NULL;
|
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)
|
2009-10-31 19:22:56 +01:00
|
|
|
player_wait_decoder(dc);
|
2008-08-26 08:27:18 +02:00
|
|
|
}
|
|
|
|
|
2009-08-13 23:33:46 +02:00
|
|
|
void
|
2009-10-31 19:22:56 +01:00
|
|
|
dc_command_wait(struct decoder_control *dc)
|
2009-08-13 23:33:46 +02:00
|
|
|
{
|
2009-10-31 19:22:56 +01:00
|
|
|
decoder_lock(dc);
|
|
|
|
dc_command_wait_locked(dc);
|
|
|
|
decoder_unlock(dc);
|
2009-08-13 23:33:46 +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);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
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
|
|
|
|
2009-11-03 20:02:19 +01:00
|
|
|
dc->song = song;
|
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;
|
|
|
|
g_debug("mixramp_start = %s", mixramp_start ? mixramp_start : "NULL");
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
g_debug("mixramp_end = %s", mixramp_end ? mixramp_end : "NULL");
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
g_debug("mixramp_prev_end = %s", mixramp_prev_end ? mixramp_prev_end : "NULL");
|
|
|
|
}
|