mpd/src/DecoderInternal.cxx

107 lines
2.4 KiB
C++
Raw Normal View History

/*
2013-01-04 08:41:16 +01:00
* Copyright (C) 2003-2013 The Music Player Daemon Project
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#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"
#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
}
/**
* All chunks are full of decoded data; wait for the player to free
* one.
*/
static DecoderCommand
2013-10-19 18:48:38 +02:00
need_chunks(decoder_control &dc, bool do_wait)
{
2013-10-19 18:48:38 +02:00
if (dc.command == DecoderCommand::STOP ||
dc.command == DecoderCommand::SEEK)
return dc.command;
if (do_wait) {
2013-10-19 18:48:38 +02:00
dc.Wait();
dc.client_cond.signal();
2013-10-19 18:48:38 +02:00
return dc.command;
}
return DecoderCommand::NONE;
}
struct music_chunk *
decoder_get_chunk(struct decoder *decoder)
{
2013-10-19 18:48:38 +02:00
decoder_control &dc = decoder->dc;
DecoderCommand cmd;
2013-10-19 18:19:03 +02:00
assert(decoder != nullptr);
2013-10-19 18:19:03 +02:00
if (decoder->chunk != nullptr)
return decoder->chunk;
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) {
decoder->chunk->replay_gain_serial =
decoder->replay_gain_serial;
if (decoder->replay_gain_serial != 0)
decoder->chunk->replay_gain_info =
decoder->replay_gain_info;
return decoder->chunk;
}
2013-10-19 18:48:38 +02:00
dc.Lock();
cmd = need_chunks(dc, true);
2013-10-19 18:48:38 +02:00
dc.Unlock();
} while (cmd == DecoderCommand::NONE);
2013-10-19 18:19:03 +02:00
return nullptr;
}
void
decoder_flush_chunk(struct decoder *decoder)
{
2013-10-19 18:48:38 +02:00
decoder_control &dc = decoder->dc;
2013-10-19 18:19:03 +02:00
assert(decoder != nullptr);
assert(decoder->chunk != nullptr);
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);
else
2013-10-19 18:48:38 +02:00
dc.pipe->Push(decoder->chunk);
2013-10-19 18:19:03 +02:00
decoder->chunk = nullptr;
}