2009-03-06 00:42:01 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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-11-13 19:10:43 +01:00
|
|
|
#include "pcm/PcmConvert.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-10-21 21:12:37 +02:00
|
|
|
Decoder::~Decoder()
|
2013-01-04 22:02:52 +01:00
|
|
|
{
|
|
|
|
/* caller must flush the chunk */
|
|
|
|
assert(chunk == nullptr);
|
|
|
|
|
2013-11-11 16:15:38 +01:00
|
|
|
if (convert != nullptr) {
|
|
|
|
convert->Close();
|
|
|
|
delete convert;
|
|
|
|
}
|
|
|
|
|
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-11-08 11:59:56 +01:00
|
|
|
need_chunks(DecoderControl &dc)
|
2009-03-06 00:42:01 +01:00
|
|
|
{
|
2013-11-08 11:59:56 +01:00
|
|
|
if (dc.command == DecoderCommand::NONE)
|
2013-10-19 18:48:38 +02:00
|
|
|
dc.Wait();
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2013-11-08 11:59:56 +01:00
|
|
|
return dc.command;
|
2009-03-06 00:42:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct music_chunk *
|
2013-11-13 19:13:47 +01:00
|
|
|
Decoder::GetChunk()
|
2009-03-06 00:42:01 +01:00
|
|
|
{
|
2013-09-27 12:11:37 +02:00
|
|
|
DecoderCommand cmd;
|
2009-03-06 00:42:03 +01:00
|
|
|
|
2013-11-13 19:13:47 +01:00
|
|
|
if (chunk != nullptr)
|
|
|
|
return chunk;
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2009-03-06 00:42:03 +01:00
|
|
|
do {
|
2013-11-13 19:13:47 +01:00
|
|
|
chunk = dc.buffer->Allocate();
|
|
|
|
if (chunk != nullptr) {
|
|
|
|
chunk->replay_gain_serial = replay_gain_serial;
|
|
|
|
if (replay_gain_serial != 0)
|
|
|
|
chunk->replay_gain_info = replay_gain_info;
|
|
|
|
|
|
|
|
return 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();
|
2013-11-08 11:59:56 +01:00
|
|
|
cmd = need_chunks(dc);
|
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
|
2013-11-13 19:13:47 +01:00
|
|
|
Decoder::FlushChunk()
|
2009-03-06 00:42:01 +01:00
|
|
|
{
|
2013-11-13 19:13:47 +01:00
|
|
|
assert(chunk != nullptr);
|
2009-03-06 00:42:01 +01:00
|
|
|
|
2013-11-13 19:13:47 +01:00
|
|
|
if (chunk->IsEmpty())
|
|
|
|
dc.buffer->Return(chunk);
|
2009-03-07 21:41:23 +01:00
|
|
|
else
|
2013-11-13 19:13:47 +01:00
|
|
|
dc.pipe->Push(chunk);
|
2009-03-07 21:41:23 +01:00
|
|
|
|
2013-11-13 19:13:47 +01:00
|
|
|
chunk = nullptr;
|
2013-11-06 23:12:04 +01:00
|
|
|
|
2013-11-06 23:18:55 +01:00
|
|
|
dc.Lock();
|
2013-11-06 23:10:05 +01:00
|
|
|
if (dc.client_is_waiting)
|
|
|
|
dc.client_cond.signal();
|
2013-11-06 23:18:55 +01:00
|
|
|
dc.Unlock();
|
2009-03-06 00:42:01 +01:00
|
|
|
}
|