2009-03-06 00:42:01 +01:00
|
|
|
/*
|
2013-01-04 08:41:16 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-06 00:42:01 +01:00
|
|
|
* 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.
|
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.
|
2009-03-06 00:42:01 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-04 08:41:16 +01:00
|
|
|
#include "DecoderInternal.hxx"
|
|
|
|
#include "DecoderControl.hxx"
|
2013-01-04 10:16:16 +01:00
|
|
|
#include "MusicPipe.hxx"
|
|
|
|
#include "MusicBuffer.hxx"
|
|
|
|
#include "MusicChunk.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2009-03-06 00:42:01 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2013-01-04 22:02:52 +01:00
|
|
|
decoder::~decoder()
|
|
|
|
{
|
|
|
|
/* caller must flush the chunk */
|
|
|
|
assert(chunk == nullptr);
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
delete song_tag;
|
|
|
|
delete stream_tag;
|
|
|
|
delete decoder_tag;
|
2013-01-04 22:02:52 +01:00
|
|
|
}
|
|
|
|
|
2009-03-06 00:42:01 +01:00
|
|
|
/**
|
|
|
|
* All chunks are full of decoded data; wait for the player to free
|
|
|
|
* one.
|
|
|
|
*/
|
2013-09-27 12:11:37 +02:00
|
|
|
static DecoderCommand
|
2013-10-19 18:48:38 +02:00
|
|
|
need_chunks(decoder_control &dc, bool do_wait)
|
2009-03-06 00:42:01 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
if (dc.command == DecoderCommand::STOP ||
|
|
|
|
dc.command == DecoderCommand::SEEK)
|
|
|
|
return dc.command;
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2011-09-14 09:37:52 +02:00
|
|
|
if (do_wait) {
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.Wait();
|
|
|
|
dc.client_cond.signal();
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
return dc.command;
|
2009-03-06 00:42:01 +01:00
|
|
|
}
|
|
|
|
|
2013-09-27 12:11:37 +02:00
|
|
|
return DecoderCommand::NONE;
|
2009-03-06 00:42:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct music_chunk *
|
2011-09-14 09:37:52 +02:00
|
|
|
decoder_get_chunk(struct decoder *decoder)
|
2009-03-06 00:42:01 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
decoder_control &dc = decoder->dc;
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand cmd;
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(decoder != nullptr);
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (decoder->chunk != nullptr)
|
2009-03-06 00:42:01 +01:00
|
|
|
return decoder->chunk;
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
do {
|
2013-10-19 18:48:38 +02:00
|
|
|
decoder->chunk = dc.buffer->Allocate();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (decoder->chunk != nullptr) {
|
2010-02-14 17:04:39 +01:00
|
|
|
decoder->chunk->replay_gain_serial =
|
|
|
|
decoder->replay_gain_serial;
|
|
|
|
if (decoder->replay_gain_serial != 0)
|
|
|
|
decoder->chunk->replay_gain_info =
|
|
|
|
decoder->replay_gain_info;
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
return decoder->chunk;
|
2010-02-14 17:04:39 +01:00
|
|
|
}
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.Lock();
|
2011-09-14 09:37:52 +02:00
|
|
|
cmd = need_chunks(dc, true);
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.Unlock();
|
2013-09-27 12:11:37 +02:00
|
|
|
} while (cmd == DecoderCommand::NONE);
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-03-06 00:42:01 +01:00
|
|
|
}
|
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
void
|
|
|
|
decoder_flush_chunk(struct decoder *decoder)
|
2009-03-06 00:42:01 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
decoder_control &dc = decoder->dc;
|
2009-10-31 19:22:56 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(decoder != nullptr);
|
|
|
|
assert(decoder->chunk != nullptr);
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
if (decoder->chunk->IsEmpty())
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.buffer->Return(decoder->chunk);
|
2009-03-07 21:41:23 +01:00
|
|
|
else
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.pipe->Push(decoder->chunk);
|
2009-03-07 21:41:23 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
decoder->chunk = nullptr;
|
2009-03-06 00:42:01 +01:00
|
|
|
}
|