2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 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
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_DECODER_INTERNAL_H
|
|
|
|
#define MPD_DECODER_INTERNAL_H
|
2008-08-26 08:27:04 +02:00
|
|
|
|
2009-03-06 00:42:01 +01:00
|
|
|
#include "decoder_command.h"
|
2009-01-07 18:53:36 +01:00
|
|
|
#include "pcm_convert.h"
|
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;
|
|
|
|
|
2008-10-21 21:59:43 +02:00
|
|
|
struct pcm_convert_state 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;
|
|
|
|
|
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;
|
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 *
|
2009-03-06 00:42:03 +01:00
|
|
|
decoder_get_chunk(struct decoder *decoder, struct input_stream *is);
|
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
|