2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-04 08:41:16 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-08-26 08:27:04 +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:04 +02:00
|
|
|
*/
|
|
|
|
|
2013-01-04 08:41:16 +01:00
|
|
|
#ifndef MPD_DECODER_INTERNAL_HXX
|
|
|
|
#define MPD_DECODER_INTERNAL_HXX
|
2008-08-26 08:27:04 +02:00
|
|
|
|
2009-03-06 00:42:01 +01:00
|
|
|
#include "decoder_command.h"
|
2013-01-30 23:40:56 +01:00
|
|
|
#include "PcmConvert.hxx"
|
2010-02-14 17:04:39 +01:00
|
|
|
#include "replay_gain_info.h"
|
2008-08-26 08:27:04 +02:00
|
|
|
|
2009-03-06 00:42:01 +01:00
|
|
|
struct input_stream;
|
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
struct decoder {
|
2009-10-31 19:22:56 +01:00
|
|
|
struct decoder_control *dc;
|
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
PcmConvert conv_state;
|
2008-08-26 08:27:14 +02:00
|
|
|
|
2009-12-25 19:47:33 +01:00
|
|
|
/**
|
|
|
|
* The time stamp of the next data chunk, in seconds.
|
|
|
|
*/
|
|
|
|
double timestamp;
|
|
|
|
|
2011-09-21 23:17:34 +02:00
|
|
|
/**
|
|
|
|
* Is the initial seek (to the start position of the sub-song)
|
|
|
|
* pending, or has it been performed already?
|
|
|
|
*/
|
|
|
|
bool initial_seek_pending;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the initial seek currently running? During this time,
|
|
|
|
* the decoder command is SEEK. This flag is set by
|
|
|
|
* decoder_get_virtual_command(), when the virtual SEEK
|
|
|
|
* command is generated for the first time.
|
|
|
|
*/
|
|
|
|
bool initial_seek_running;
|
|
|
|
|
2011-09-21 22:59:11 +02:00
|
|
|
/**
|
|
|
|
* This flag is set by decoder_seek_where(), and checked by
|
|
|
|
* decoder_command_finished(). It is used to clean up after
|
|
|
|
* seeking.
|
|
|
|
*/
|
2008-10-08 11:03:39 +02:00
|
|
|
bool seeking;
|
2008-11-03 18:24:01 +01:00
|
|
|
|
2009-04-13 19:25:53 +02:00
|
|
|
/**
|
|
|
|
* The tag from the song object. This is only used for local
|
|
|
|
* files, because we expect the stream server to send us a new
|
|
|
|
* tag each time we play it.
|
|
|
|
*/
|
|
|
|
struct tag *song_tag;
|
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
/** the last tag received from the stream */
|
|
|
|
struct tag *stream_tag;
|
|
|
|
|
|
|
|
/** the last tag received from the decoder plugin */
|
|
|
|
struct tag *decoder_tag;
|
2009-03-06 00:42:01 +01:00
|
|
|
|
|
|
|
/** the chunk currently being written to */
|
|
|
|
struct music_chunk *chunk;
|
2010-01-03 22:44:23 +01:00
|
|
|
|
2010-02-14 17:04:39 +01:00
|
|
|
struct replay_gain_info replay_gain_info;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A positive serial number for checking if replay gain info
|
|
|
|
* has changed since the last check.
|
|
|
|
*/
|
|
|
|
unsigned replay_gain_serial;
|
2013-01-02 20:36:28 +01:00
|
|
|
|
2013-01-04 21:59:03 +01:00
|
|
|
decoder(decoder_control *_dc, bool _initial_seek_pending,
|
|
|
|
struct tag *_tag)
|
2013-01-02 20:36:28 +01:00
|
|
|
:dc(_dc),
|
2013-01-04 21:59:03 +01:00
|
|
|
timestamp(0),
|
2013-01-02 20:36:28 +01:00
|
|
|
initial_seek_pending(_initial_seek_pending),
|
2013-01-04 21:59:03 +01:00
|
|
|
initial_seek_running(false),
|
|
|
|
seeking(false),
|
|
|
|
song_tag(_tag), stream_tag(nullptr), decoder_tag(nullptr),
|
2013-01-04 22:01:13 +01:00
|
|
|
chunk(nullptr),
|
2013-01-04 22:02:52 +01:00
|
|
|
replay_gain_serial(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~decoder();
|
2008-08-26 08:27:04 +02:00
|
|
|
};
|
|
|
|
|
2009-03-06 00:42:01 +01:00
|
|
|
/**
|
|
|
|
* Returns the current chunk the decoder writes to, or allocates a new
|
|
|
|
* chunk if there is none.
|
2009-03-06 00:42:03 +01:00
|
|
|
*
|
|
|
|
* @return the chunk, or NULL if we have received a decoder command
|
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
|
|
|
|
|
|
|
/**
|
2009-03-06 00:42:03 +01:00
|
|
|
* Flushes the current chunk.
|
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
|
|
|
|
2008-08-26 08:27:04 +02:00
|
|
|
#endif
|