2008-08-26 08:27:09 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "player_thread.h"
|
2008-08-26 08:44:38 +02:00
|
|
|
#include "player_control.h"
|
2008-08-26 08:44:19 +02:00
|
|
|
#include "decoder_control.h"
|
2009-01-25 13:44:39 +01:00
|
|
|
#include "decoder_thread.h"
|
2009-02-10 18:51:49 +01:00
|
|
|
#include "output_all.h"
|
2009-01-07 18:05:38 +01:00
|
|
|
#include "pcm_volume.h"
|
2008-08-26 08:27:09 +02:00
|
|
|
#include "path.h"
|
2009-01-01 18:12:00 +01:00
|
|
|
#include "event_pipe.h"
|
2008-08-26 08:27:09 +02:00
|
|
|
#include "crossfade.h"
|
2008-10-08 10:49:11 +02:00
|
|
|
#include "song.h"
|
2009-02-15 18:33:31 +01:00
|
|
|
#include "tag.h"
|
2008-11-02 14:15:47 +01:00
|
|
|
#include "pipe.h"
|
2009-03-03 22:23:25 +01:00
|
|
|
#include "chunk.h"
|
2008-11-02 17:13:26 +01:00
|
|
|
#include "idle.h"
|
2009-01-02 11:20:41 +01:00
|
|
|
#include "main.h"
|
2009-03-06 00:42:03 +01:00
|
|
|
#include "buffer.h"
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2008-11-24 14:47:44 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-12-29 17:29:14 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "player_thread"
|
|
|
|
|
2008-08-26 08:27:09 +02:00
|
|
|
enum xfade_state {
|
|
|
|
XFADE_DISABLED = -1,
|
|
|
|
XFADE_UNKNOWN = 0,
|
|
|
|
XFADE_ENABLED = 1
|
|
|
|
};
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
struct player {
|
2009-03-06 00:42:03 +01:00
|
|
|
struct music_pipe *pipe;
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
/**
|
2008-10-12 01:21:35 +02:00
|
|
|
* are we waiting for buffered_before_play?
|
2008-10-12 00:02:23 +02:00
|
|
|
*/
|
2008-10-12 01:21:35 +02:00
|
|
|
bool buffering;
|
2008-10-12 00:02:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* true if the decoder is starting and did not provide data
|
|
|
|
* yet
|
|
|
|
*/
|
|
|
|
bool decoder_starting;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* is the player paused?
|
|
|
|
*/
|
|
|
|
bool paused;
|
|
|
|
|
2008-10-12 00:07:54 +02:00
|
|
|
/**
|
|
|
|
* is there a new song in pc.next_song?
|
|
|
|
*/
|
|
|
|
bool queued;
|
|
|
|
|
2008-11-02 17:10:26 +01:00
|
|
|
/**
|
|
|
|
* the song currently being played
|
|
|
|
*/
|
|
|
|
struct song *song;
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
/**
|
|
|
|
* is cross fading enabled?
|
|
|
|
*/
|
|
|
|
enum xfade_state xfade;
|
2009-03-07 23:11:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current audio format for the audio outputs.
|
|
|
|
*/
|
|
|
|
struct audio_format play_audio_format;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Coefficient for converting a PCM buffer size into a time
|
|
|
|
* span.
|
|
|
|
*/
|
|
|
|
double size_to_time;
|
2008-10-12 00:02:23 +02:00
|
|
|
};
|
|
|
|
|
2009-03-09 19:12:06 +01:00
|
|
|
static struct music_buffer *player_buffer;
|
|
|
|
|
2008-08-26 08:45:15 +02:00
|
|
|
static void player_command_finished(void)
|
|
|
|
{
|
|
|
|
assert(pc.command != PLAYER_COMMAND_NONE);
|
|
|
|
|
|
|
|
pc.command = PLAYER_COMMAND_NONE;
|
2009-01-02 11:20:41 +01:00
|
|
|
notify_signal(&main_notify);
|
2008-08-26 08:45:15 +02:00
|
|
|
}
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
static void
|
|
|
|
player_dc_stop(struct player *player)
|
|
|
|
{
|
|
|
|
dc_stop(&pc.notify);
|
|
|
|
|
|
|
|
if (dc.pipe != NULL) {
|
2009-03-09 19:12:06 +01:00
|
|
|
music_pipe_clear(dc.pipe, player_buffer);
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
if (dc.pipe != player->pipe)
|
|
|
|
music_pipe_free(dc.pipe);
|
|
|
|
|
|
|
|
dc.pipe = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
static void player_stop_decoder(void)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
2008-08-26 08:27:18 +02:00
|
|
|
dc_stop(&pc.notify);
|
2008-08-26 08:27:09 +02:00
|
|
|
pc.state = PLAYER_STATE_STOP;
|
2009-01-01 18:22:11 +01:00
|
|
|
event_pipe_emit(PIPE_EVENT_PLAYLIST);
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2009-01-21 16:31:15 +01:00
|
|
|
static bool
|
|
|
|
player_wait_for_decoder(struct player *player)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
2008-08-26 08:27:18 +02:00
|
|
|
dc_command_wait(&pc.notify);
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2008-11-08 15:48:00 +01:00
|
|
|
if (decoder_has_failed()) {
|
2008-08-26 08:27:11 +02:00
|
|
|
assert(dc.next_song == NULL || dc.next_song->url != NULL);
|
2008-08-26 08:27:09 +02:00
|
|
|
pc.errored_song = dc.next_song;
|
|
|
|
pc.error = PLAYER_ERROR_FILE;
|
2009-02-10 00:17:34 +01:00
|
|
|
pc.next_song = NULL;
|
2009-01-21 16:31:15 +01:00
|
|
|
return false;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
pc.total_time = pc.next_song->tag != NULL
|
2008-10-11 12:52:51 +02:00
|
|
|
? pc.next_song->tag->time : 0;
|
2008-11-03 21:49:29 +01:00
|
|
|
pc.bit_rate = 0;
|
2008-10-10 14:47:58 +02:00
|
|
|
audio_format_clear(&pc.audio_format);
|
2008-10-12 00:07:54 +02:00
|
|
|
|
2008-11-02 17:10:26 +01:00
|
|
|
player->song = pc.next_song;
|
2008-10-12 00:07:54 +02:00
|
|
|
pc.next_song = NULL;
|
2008-11-25 16:19:53 +01:00
|
|
|
pc.elapsed_time = 0;
|
2008-10-12 00:07:54 +02:00
|
|
|
player->queued = false;
|
2008-10-12 00:02:23 +02:00
|
|
|
player->decoder_starting = true;
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2009-01-03 20:49:51 +01:00
|
|
|
/* call syncPlaylistWithQueue() in the main thread */
|
|
|
|
event_pipe_emit(PIPE_EVENT_PLAYLIST);
|
|
|
|
|
2009-01-21 16:31:15 +01:00
|
|
|
return true;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2009-03-07 23:11:43 +01:00
|
|
|
static bool
|
|
|
|
player_check_decoder_startup(struct player *player)
|
|
|
|
{
|
|
|
|
assert(player->decoder_starting);
|
|
|
|
|
|
|
|
if (decoder_has_failed()) {
|
|
|
|
/* the decoder failed */
|
|
|
|
assert(dc.next_song == NULL || dc.next_song->url != NULL);
|
|
|
|
|
|
|
|
pc.errored_song = dc.next_song;
|
|
|
|
pc.error = PLAYER_ERROR_FILE;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} else if (!decoder_is_starting()) {
|
|
|
|
/* the decoder is ready and ok */
|
|
|
|
player->decoder_starting = false;
|
|
|
|
|
|
|
|
if (!audio_output_all_open(&dc.out_audio_format)) {
|
|
|
|
char *uri = song_get_uri(dc.next_song);
|
|
|
|
g_warning("problems opening audio device "
|
|
|
|
"while playing \"%s\"", uri);
|
|
|
|
g_free(uri);
|
|
|
|
|
|
|
|
assert(dc.next_song == NULL || dc.next_song->url != NULL);
|
|
|
|
pc.errored_song = dc.next_song;
|
|
|
|
pc.error = PLAYER_ERROR_AUDIO;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (player->paused)
|
|
|
|
audio_output_all_close();
|
|
|
|
|
|
|
|
pc.total_time = dc.total_time;
|
|
|
|
pc.audio_format = dc.in_audio_format;
|
|
|
|
player->play_audio_format = dc.out_audio_format;
|
|
|
|
player->size_to_time =
|
|
|
|
audioFormatSizeToTime(&dc.out_audio_format);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
/* the decoder is not yet ready; wait
|
|
|
|
some more */
|
|
|
|
notify_wait(&pc.notify);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
static bool player_seek_decoder(struct player *player)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
2008-08-26 08:27:18 +02:00
|
|
|
double where;
|
2008-10-30 08:38:54 +01:00
|
|
|
bool ret;
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2008-08-26 08:40:47 +02:00
|
|
|
if (decoder_current_song() != pc.next_song) {
|
2009-03-06 00:42:03 +01:00
|
|
|
player_dc_stop(player);
|
|
|
|
|
2009-03-09 19:12:06 +01:00
|
|
|
music_pipe_clear(player->pipe, player_buffer);
|
2009-03-06 00:42:03 +01:00
|
|
|
dc.pipe = player->pipe;
|
2008-08-26 08:27:18 +02:00
|
|
|
dc_start_async(pc.next_song);
|
2009-01-21 16:36:30 +01:00
|
|
|
|
|
|
|
ret = player_wait_for_decoder(player);
|
|
|
|
if (!ret)
|
|
|
|
return false;
|
2009-02-10 00:17:34 +01:00
|
|
|
} else {
|
|
|
|
pc.next_song = NULL;
|
|
|
|
player->queued = false;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
where = pc.seek_where;
|
|
|
|
if (where > pc.total_time)
|
|
|
|
where = pc.total_time - 0.1;
|
2008-08-26 08:27:18 +02:00
|
|
|
if (where < 0.0)
|
|
|
|
where = 0.0;
|
|
|
|
|
|
|
|
ret = dc_seek(&pc.notify, where);
|
2008-10-30 08:38:54 +01:00
|
|
|
if (ret)
|
2008-11-03 21:49:29 +01:00
|
|
|
pc.elapsed_time = where;
|
2008-08-26 08:27:09 +02:00
|
|
|
|
|
|
|
player_command_finished();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
static void player_process_command(struct player *player)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
|
|
|
switch (pc.command) {
|
|
|
|
case PLAYER_COMMAND_NONE:
|
|
|
|
case PLAYER_COMMAND_PLAY:
|
|
|
|
case PLAYER_COMMAND_STOP:
|
2008-08-26 08:27:16 +02:00
|
|
|
case PLAYER_COMMAND_EXIT:
|
2008-08-26 08:27:09 +02:00
|
|
|
case PLAYER_COMMAND_CLOSE_AUDIO:
|
|
|
|
break;
|
|
|
|
|
2008-10-12 00:07:54 +02:00
|
|
|
case PLAYER_COMMAND_QUEUE:
|
|
|
|
assert(pc.next_song != NULL);
|
2008-11-14 17:55:51 +01:00
|
|
|
assert(!player->queued);
|
2009-03-06 00:42:03 +01:00
|
|
|
assert(dc.pipe == NULL || dc.pipe == player->pipe);
|
2008-11-14 17:55:51 +01:00
|
|
|
|
2008-10-12 00:07:54 +02:00
|
|
|
player->queued = true;
|
2008-08-26 08:27:09 +02:00
|
|
|
player_command_finished();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLAYER_COMMAND_PAUSE:
|
2008-10-12 00:02:23 +02:00
|
|
|
player->paused = !player->paused;
|
|
|
|
if (player->paused) {
|
2009-02-10 18:51:51 +01:00
|
|
|
audio_output_all_pause();
|
2008-08-26 08:27:09 +02:00
|
|
|
pc.state = PLAYER_STATE_PAUSE;
|
|
|
|
} else {
|
2009-02-10 18:51:51 +01:00
|
|
|
if (audio_output_all_open(NULL)) {
|
2008-08-26 08:27:09 +02:00
|
|
|
pc.state = PLAYER_STATE_PLAY;
|
|
|
|
} else {
|
2008-08-26 08:27:11 +02:00
|
|
|
assert(dc.next_song == NULL || dc.next_song->url != NULL);
|
2008-08-26 08:27:09 +02:00
|
|
|
pc.errored_song = dc.next_song;
|
|
|
|
pc.error = PLAYER_ERROR_AUDIO;
|
2009-01-04 19:09:34 +01:00
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
player->paused = true;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
player_command_finished();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLAYER_COMMAND_SEEK:
|
2008-11-03 21:49:29 +01:00
|
|
|
if (player_seek_decoder(player)) {
|
2008-10-12 00:02:23 +02:00
|
|
|
player->xfade = XFADE_UNKNOWN;
|
2008-10-12 01:21:35 +02:00
|
|
|
|
|
|
|
/* abort buffering when the user has requested
|
|
|
|
a seek */
|
|
|
|
player->buffering = false;
|
2009-02-17 23:57:10 +01:00
|
|
|
|
|
|
|
audio_output_all_cancel();
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
break;
|
2008-10-12 00:07:54 +02:00
|
|
|
|
|
|
|
case PLAYER_COMMAND_CANCEL:
|
|
|
|
if (pc.next_song == NULL) {
|
|
|
|
/* the cancel request arrived too later, we're
|
|
|
|
already playing the queued song... stop
|
|
|
|
everything now */
|
|
|
|
pc.command = PLAYER_COMMAND_STOP;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
if (dc.pipe != NULL && dc.pipe != player->pipe) {
|
2008-10-12 00:07:54 +02:00
|
|
|
/* the decoder is already decoding the song -
|
|
|
|
stop it and reset the position */
|
2009-03-06 00:42:03 +01:00
|
|
|
player_dc_stop(player);
|
2008-10-12 00:07:54 +02:00
|
|
|
dc_stop(&pc.notify);
|
|
|
|
}
|
|
|
|
|
|
|
|
pc.next_song = NULL;
|
|
|
|
player->queued = false;
|
|
|
|
player_command_finished();
|
|
|
|
break;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-21 16:31:15 +01:00
|
|
|
static bool
|
2008-11-03 21:49:29 +01:00
|
|
|
play_chunk(struct song *song, struct music_chunk *chunk,
|
|
|
|
const struct audio_format *format, double sizeToTime)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
2009-03-02 09:42:16 +01:00
|
|
|
bool success;
|
|
|
|
|
2009-03-08 13:45:24 +01:00
|
|
|
assert(music_chunk_check_format(chunk, format));
|
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
pc.elapsed_time = chunk->times;
|
|
|
|
pc.bit_rate = chunk->bit_rate;
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2008-11-02 17:13:26 +01:00
|
|
|
if (chunk->tag != NULL) {
|
2009-02-10 18:51:51 +01:00
|
|
|
audio_output_all_tag(chunk->tag);
|
2008-11-02 17:07:31 +01:00
|
|
|
|
2008-11-02 17:13:26 +01:00
|
|
|
if (!song_is_file(song)) {
|
|
|
|
/* always update the tag of remote streams */
|
2008-11-11 20:46:55 +01:00
|
|
|
struct tag *old_tag = song->tag;
|
2008-11-02 17:13:26 +01:00
|
|
|
|
|
|
|
song->tag = tag_dup(chunk->tag);
|
|
|
|
|
2008-11-11 20:46:55 +01:00
|
|
|
if (old_tag != NULL)
|
|
|
|
tag_free(old_tag);
|
|
|
|
|
2009-01-03 20:49:51 +01:00
|
|
|
/* the main thread will update the playlist
|
|
|
|
version when he receives this event */
|
2009-01-20 22:49:19 +01:00
|
|
|
event_pipe_emit(PIPE_EVENT_TAG);
|
2009-01-03 20:49:51 +01:00
|
|
|
|
2008-11-02 17:13:26 +01:00
|
|
|
/* notify all clients that the tag of the
|
|
|
|
current song has changed */
|
|
|
|
idle_add(IDLE_PLAYER);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-02 20:14:55 +01:00
|
|
|
if (chunk->length == 0)
|
2009-01-21 16:31:15 +01:00
|
|
|
return true;
|
2008-11-02 20:14:55 +01:00
|
|
|
|
2009-03-02 09:42:16 +01:00
|
|
|
success = pcm_volume(chunk->data, chunk->length,
|
|
|
|
format, pc.software_volume);
|
|
|
|
if (!success) {
|
|
|
|
g_warning("pcm_volume() failed on %u:%u:%u",
|
|
|
|
format->sample_rate, format->bits, format->channels);
|
|
|
|
pc.errored_song = dc.current_song;
|
|
|
|
pc.error = PLAYER_ERROR_AUDIO;
|
|
|
|
return false;
|
|
|
|
}
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2009-02-10 18:51:51 +01:00
|
|
|
if (!audio_output_all_play(chunk->data, chunk->length)) {
|
2009-02-02 18:02:52 +01:00
|
|
|
pc.errored_song = dc.current_song;
|
|
|
|
pc.error = PLAYER_ERROR_AUDIO;
|
2009-01-21 16:31:15 +01:00
|
|
|
return false;
|
2009-02-02 18:02:52 +01:00
|
|
|
}
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
pc.total_play_time += sizeToTime * chunk->length;
|
2009-01-21 16:31:15 +01:00
|
|
|
return true;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:29:37 +02:00
|
|
|
static void do_play(void)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
2008-10-12 00:02:23 +02:00
|
|
|
struct player player = {
|
2008-10-12 01:21:35 +02:00
|
|
|
.buffering = true,
|
2008-10-12 00:02:23 +02:00
|
|
|
.decoder_starting = false,
|
|
|
|
.paused = false,
|
2008-10-12 00:07:54 +02:00
|
|
|
.queued = false,
|
2008-11-02 17:10:26 +01:00
|
|
|
.song = NULL,
|
2008-10-12 00:02:23 +02:00
|
|
|
.xfade = XFADE_UNKNOWN,
|
2009-03-07 23:11:43 +01:00
|
|
|
.size_to_time = 0.0,
|
2008-10-12 00:02:23 +02:00
|
|
|
};
|
2008-08-26 08:27:09 +02:00
|
|
|
unsigned int crossFadeChunks = 0;
|
2009-03-06 00:42:03 +01:00
|
|
|
/** has cross-fading begun? */
|
|
|
|
bool cross_fading = false;
|
2008-08-26 08:27:09 +02:00
|
|
|
static const char silence[CHUNK_SIZE];
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
player.pipe = music_pipe_new();
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2009-03-09 19:12:06 +01:00
|
|
|
dc.buffer = player_buffer;
|
2009-03-06 00:42:03 +01:00
|
|
|
dc.pipe = player.pipe;
|
2008-08-26 08:29:37 +02:00
|
|
|
dc_start(&pc.notify, pc.next_song);
|
2009-01-21 16:31:15 +01:00
|
|
|
if (!player_wait_for_decoder(&player)) {
|
2008-11-03 21:49:29 +01:00
|
|
|
player_stop_decoder();
|
2008-10-27 10:10:40 +01:00
|
|
|
player_command_finished();
|
2009-03-06 00:42:03 +01:00
|
|
|
music_pipe_free(player.pipe);
|
2009-03-09 19:12:06 +01:00
|
|
|
music_buffer_free(player_buffer);
|
2008-08-26 08:27:09 +02:00
|
|
|
return;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
pc.elapsed_time = 0;
|
2008-08-26 08:27:09 +02:00
|
|
|
pc.state = PLAYER_STATE_PLAY;
|
|
|
|
player_command_finished();
|
|
|
|
|
2009-01-21 16:31:15 +01:00
|
|
|
while (true) {
|
2008-11-03 21:49:29 +01:00
|
|
|
player_process_command(&player);
|
2008-08-26 08:27:16 +02:00
|
|
|
if (pc.command == PLAYER_COMMAND_STOP ||
|
2008-08-26 08:27:16 +02:00
|
|
|
pc.command == PLAYER_COMMAND_EXIT ||
|
2008-08-26 08:27:16 +02:00
|
|
|
pc.command == PLAYER_COMMAND_CLOSE_AUDIO) {
|
2009-02-10 18:51:51 +01:00
|
|
|
audio_output_all_cancel();
|
2008-08-26 08:27:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-10-12 01:21:35 +02:00
|
|
|
if (player.buffering) {
|
2009-03-06 00:42:03 +01:00
|
|
|
if (music_pipe_size(player.pipe) < pc.buffered_before_play &&
|
2008-10-29 18:35:10 +01:00
|
|
|
!decoder_is_idle()) {
|
2008-08-26 08:27:09 +02:00
|
|
|
/* not enough decoded buffer space yet */
|
|
|
|
notify_wait(&pc.notify);
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
/* buffering is complete */
|
2008-10-12 01:21:35 +02:00
|
|
|
player.buffering = false;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
if (player.decoder_starting) {
|
2009-03-07 23:11:43 +01:00
|
|
|
bool success;
|
2008-10-29 22:17:42 +01:00
|
|
|
|
2009-03-07 23:11:43 +01:00
|
|
|
success = player_check_decoder_startup(&player);
|
|
|
|
if (!success)
|
|
|
|
break;
|
|
|
|
continue;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2008-11-13 02:06:58 +01:00
|
|
|
#ifndef NDEBUG
|
2008-11-23 22:16:54 +01:00
|
|
|
/*
|
2008-11-13 02:06:58 +01:00
|
|
|
music_pipe_check_format(&play_audio_format,
|
|
|
|
player.next_song_chunk,
|
|
|
|
&dc.out_audio_format);
|
2008-11-23 22:16:54 +01:00
|
|
|
*/
|
2008-11-13 02:06:58 +01:00
|
|
|
#endif
|
|
|
|
|
2008-10-12 00:07:54 +02:00
|
|
|
if (decoder_is_idle() && player.queued) {
|
2008-08-26 08:27:09 +02:00
|
|
|
/* the decoder has finished the current song;
|
|
|
|
make it decode the next song */
|
2008-10-12 00:07:54 +02:00
|
|
|
assert(pc.next_song != NULL);
|
2009-03-06 00:42:03 +01:00
|
|
|
assert(dc.pipe == NULL || dc.pipe == player.pipe);
|
2008-10-12 00:07:54 +02:00
|
|
|
|
|
|
|
player.queued = false;
|
2009-03-06 00:42:03 +01:00
|
|
|
dc.pipe = music_pipe_new();
|
2008-08-26 08:27:18 +02:00
|
|
|
dc_start_async(pc.next_song);
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
if (dc.pipe != NULL && dc.pipe != player.pipe &&
|
2008-10-12 00:02:23 +02:00
|
|
|
player.xfade == XFADE_UNKNOWN &&
|
2008-08-26 08:40:47 +02:00
|
|
|
!decoder_is_starting()) {
|
2008-08-26 08:27:09 +02:00
|
|
|
/* enable cross fading in this song? if yes,
|
|
|
|
calculate how many chunks will be required
|
|
|
|
for it */
|
|
|
|
crossFadeChunks =
|
2008-11-03 21:49:29 +01:00
|
|
|
cross_fade_calc(pc.cross_fade_seconds, dc.total_time,
|
2008-11-02 16:55:43 +01:00
|
|
|
&dc.out_audio_format,
|
2009-03-07 23:11:43 +01:00
|
|
|
&player.play_audio_format,
|
2009-03-09 19:12:06 +01:00
|
|
|
music_buffer_size(player_buffer) -
|
2008-08-26 08:45:14 +02:00
|
|
|
pc.buffered_before_play);
|
2008-08-26 08:27:09 +02:00
|
|
|
if (crossFadeChunks > 0) {
|
2008-10-12 00:02:23 +02:00
|
|
|
player.xfade = XFADE_ENABLED;
|
2009-03-06 00:42:03 +01:00
|
|
|
cross_fading = false;
|
2008-08-26 08:27:09 +02:00
|
|
|
} else
|
|
|
|
/* cross fading is disabled or the
|
|
|
|
next song is too short */
|
2008-10-12 00:02:23 +02:00
|
|
|
player.xfade = XFADE_DISABLED;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
if (player.paused)
|
2008-08-26 08:27:09 +02:00
|
|
|
notify_wait(&pc.notify);
|
2009-03-06 00:42:03 +01:00
|
|
|
else if (music_pipe_size(player.pipe) > 0) {
|
|
|
|
struct music_chunk *chunk = NULL;
|
2008-08-26 08:27:09 +02:00
|
|
|
unsigned int fadePosition;
|
2009-03-06 00:42:03 +01:00
|
|
|
bool success;
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
if (player.xfade == XFADE_ENABLED &&
|
2009-03-06 00:42:03 +01:00
|
|
|
dc.pipe != NULL && dc.pipe != player.pipe &&
|
|
|
|
(fadePosition = music_pipe_size(player.pipe))
|
2008-08-26 08:27:09 +02:00
|
|
|
<= crossFadeChunks) {
|
|
|
|
/* perform cross fade */
|
2009-03-06 00:42:03 +01:00
|
|
|
struct music_chunk *other_chunk =
|
|
|
|
music_pipe_shift(dc.pipe);
|
|
|
|
|
|
|
|
if (!cross_fading) {
|
2008-08-26 08:27:09 +02:00
|
|
|
/* beginning of the cross fade
|
|
|
|
- adjust crossFadeChunks
|
|
|
|
which might be bigger than
|
|
|
|
the remaining number of
|
|
|
|
chunks in the old song */
|
|
|
|
crossFadeChunks = fadePosition;
|
2009-03-06 00:42:03 +01:00
|
|
|
cross_fading = true;
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
if (other_chunk != NULL) {
|
|
|
|
chunk = music_pipe_shift(player.pipe);
|
|
|
|
cross_fade_apply(chunk, other_chunk,
|
2008-11-02 16:55:43 +01:00
|
|
|
&dc.out_audio_format,
|
2008-08-26 08:27:09 +02:00
|
|
|
fadePosition,
|
|
|
|
crossFadeChunks);
|
2009-03-09 19:12:06 +01:00
|
|
|
music_buffer_return(player_buffer, other_chunk);
|
2008-08-26 08:27:09 +02:00
|
|
|
} else {
|
|
|
|
/* there are not enough
|
|
|
|
decoded chunks yet */
|
2008-08-26 08:40:47 +02:00
|
|
|
if (decoder_is_idle()) {
|
2008-08-26 08:27:09 +02:00
|
|
|
/* the decoder isn't
|
|
|
|
running, abort
|
|
|
|
cross fading */
|
2008-10-12 00:02:23 +02:00
|
|
|
player.xfade = XFADE_DISABLED;
|
2008-08-26 08:27:09 +02:00
|
|
|
} else {
|
|
|
|
/* wait for the
|
|
|
|
decoder */
|
2008-11-14 17:55:45 +01:00
|
|
|
notify_signal(&dc.notify);
|
2008-08-26 08:27:09 +02:00
|
|
|
notify_wait(&pc.notify);
|
2009-01-04 14:55:02 +01:00
|
|
|
|
2008-08-26 08:27:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
if (chunk == NULL)
|
|
|
|
chunk = music_pipe_shift(player.pipe);
|
|
|
|
|
2008-08-26 08:27:09 +02:00
|
|
|
/* play the current chunk */
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
success = play_chunk(player.song, chunk,
|
2009-03-07 23:11:43 +01:00
|
|
|
&player.play_audio_format,
|
|
|
|
player.size_to_time);
|
2009-03-09 19:12:06 +01:00
|
|
|
music_buffer_return(player_buffer, chunk);
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
if (!success)
|
2008-08-26 08:27:09 +02:00
|
|
|
break;
|
2008-10-10 16:47:57 +02:00
|
|
|
|
|
|
|
/* this formula should prevent that the
|
|
|
|
decoder gets woken up with each chunk; it
|
|
|
|
is more efficient to make it decode a
|
|
|
|
larger block at a time */
|
2009-03-06 00:42:03 +01:00
|
|
|
if (!decoder_is_idle() &&
|
|
|
|
music_pipe_size(dc.pipe) <= (pc.buffered_before_play +
|
2009-03-09 19:12:06 +01:00
|
|
|
music_buffer_size(player_buffer) * 3) / 4)
|
2008-10-10 16:47:57 +02:00
|
|
|
notify_signal(&dc.notify);
|
2009-03-06 00:42:03 +01:00
|
|
|
} else if (dc.pipe != NULL && dc.pipe != player.pipe) {
|
2008-08-26 08:27:09 +02:00
|
|
|
/* at the beginning of a new song */
|
|
|
|
|
2008-10-12 00:02:23 +02:00
|
|
|
player.xfade = XFADE_UNKNOWN;
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
music_pipe_free(player.pipe);
|
|
|
|
player.pipe = dc.pipe;
|
|
|
|
|
2009-01-21 16:31:15 +01:00
|
|
|
if (!player_wait_for_decoder(&player))
|
2009-01-21 16:44:32 +01:00
|
|
|
break;
|
2008-08-26 08:40:47 +02:00
|
|
|
} else if (decoder_is_idle()) {
|
2008-08-26 08:27:09 +02:00
|
|
|
break;
|
|
|
|
} else {
|
2008-10-23 20:54:52 +02:00
|
|
|
size_t frame_size =
|
2009-03-07 23:11:43 +01:00
|
|
|
audio_format_frame_size(&player.play_audio_format);
|
2008-10-23 20:54:52 +02:00
|
|
|
/* this formula ensures that we don't send
|
|
|
|
partial frames */
|
|
|
|
unsigned num_frames = CHUNK_SIZE / frame_size;
|
|
|
|
|
2008-08-26 08:27:09 +02:00
|
|
|
/*DEBUG("waiting for decoded audio, play silence\n");*/
|
2009-02-10 18:51:51 +01:00
|
|
|
if (!audio_output_all_play(silence, num_frames * frame_size))
|
2008-08-26 08:27:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-10 08:18:01 +01:00
|
|
|
if (player.queued) {
|
|
|
|
assert(pc.next_song != NULL);
|
|
|
|
pc.next_song = NULL;
|
|
|
|
}
|
|
|
|
|
2008-11-03 21:49:29 +01:00
|
|
|
player_stop_decoder();
|
2009-03-06 00:42:03 +01:00
|
|
|
|
|
|
|
if (dc.pipe != NULL && dc.pipe != player.pipe) {
|
2009-03-09 19:12:06 +01:00
|
|
|
music_pipe_clear(dc.pipe, player_buffer);
|
2009-03-06 00:42:03 +01:00
|
|
|
music_pipe_free(dc.pipe);
|
|
|
|
}
|
|
|
|
|
2009-03-09 19:12:06 +01:00
|
|
|
music_pipe_clear(player.pipe, player_buffer);
|
2009-03-06 00:42:03 +01:00
|
|
|
music_pipe_free(player.pipe);
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|
|
|
|
|
2008-12-28 22:09:38 +01:00
|
|
|
static gpointer player_task(G_GNUC_UNUSED gpointer arg)
|
2008-08-26 08:27:09 +02:00
|
|
|
{
|
2009-01-25 13:44:39 +01:00
|
|
|
decoder_thread_start();
|
|
|
|
|
2009-03-09 19:12:06 +01:00
|
|
|
player_buffer = music_buffer_new(pc.buffer_chunks);
|
|
|
|
|
2008-08-26 08:27:09 +02:00
|
|
|
while (1) {
|
|
|
|
switch (pc.command) {
|
|
|
|
case PLAYER_COMMAND_PLAY:
|
2008-10-12 00:07:54 +02:00
|
|
|
case PLAYER_COMMAND_QUEUE:
|
2009-02-10 08:18:28 +01:00
|
|
|
assert(pc.next_song != NULL);
|
|
|
|
|
2008-08-26 08:29:37 +02:00
|
|
|
do_play();
|
2008-08-26 08:27:09 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PLAYER_COMMAND_STOP:
|
|
|
|
case PLAYER_COMMAND_SEEK:
|
|
|
|
case PLAYER_COMMAND_PAUSE:
|
2009-02-10 00:17:34 +01:00
|
|
|
pc.next_song = NULL;
|
2008-08-26 08:27:09 +02:00
|
|
|
player_command_finished();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLAYER_COMMAND_CLOSE_AUDIO:
|
2009-02-10 18:51:51 +01:00
|
|
|
audio_output_all_close();
|
2008-08-26 08:27:09 +02:00
|
|
|
player_command_finished();
|
|
|
|
break;
|
|
|
|
|
2008-08-26 08:27:16 +02:00
|
|
|
case PLAYER_COMMAND_EXIT:
|
2009-01-25 13:44:27 +01:00
|
|
|
dc_quit();
|
2009-02-10 18:51:51 +01:00
|
|
|
audio_output_all_close();
|
2009-03-09 19:12:06 +01:00
|
|
|
music_buffer_free(player_buffer);
|
2008-08-26 08:27:16 +02:00
|
|
|
player_command_finished();
|
2008-12-28 22:09:38 +01:00
|
|
|
g_thread_exit(NULL);
|
2008-08-26 08:27:16 +02:00
|
|
|
break;
|
|
|
|
|
2008-10-12 00:07:54 +02:00
|
|
|
case PLAYER_COMMAND_CANCEL:
|
|
|
|
pc.next_song = NULL;
|
2008-08-26 08:27:09 +02:00
|
|
|
player_command_finished();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLAYER_COMMAND_NONE:
|
|
|
|
notify_wait(&pc.notify);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void player_create(void)
|
|
|
|
{
|
2009-01-04 19:51:54 +01:00
|
|
|
GError *e = NULL;
|
2008-08-26 08:27:09 +02:00
|
|
|
|
2009-01-25 13:44:33 +01:00
|
|
|
assert(pc.thread == NULL);
|
|
|
|
|
|
|
|
pc.thread = g_thread_create(player_task, NULL, true, &e);
|
|
|
|
if (pc.thread == NULL)
|
2008-12-29 17:29:14 +01:00
|
|
|
g_error("Failed to spawn player task: %s", e->message);
|
2008-08-26 08:27:09 +02:00
|
|
|
}
|