2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2008-08-26 08:44:19 +02:00
|
|
|
* Copyright (C) 2008 Max Kellermann <max@duempel.org>
|
2004-02-24 00:41:20 +01:00
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_DECODER_CONTROL_H
|
|
|
|
#define MPD_DECODER_CONTROL_H
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-08-26 08:41:05 +02:00
|
|
|
#include "decoder_api.h"
|
2004-03-18 04:29:25 +01:00
|
|
|
|
2008-08-26 08:27:06 +02:00
|
|
|
#include "audio_format.h"
|
2008-04-12 06:14:32 +02:00
|
|
|
#include "notify.h"
|
2004-03-22 03:44:22 +01:00
|
|
|
|
2004-05-18 15:13:55 +02:00
|
|
|
#define DECODE_TYPE_FILE 0
|
|
|
|
#define DECODE_TYPE_URL 1
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-06-02 00:25:00 +02:00
|
|
|
enum decoder_state {
|
|
|
|
DECODE_STATE_STOP = 0,
|
|
|
|
DECODE_STATE_START,
|
|
|
|
DECODE_STATE_DECODE
|
|
|
|
};
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#define DECODE_ERROR_NOERROR 0
|
2004-05-18 15:19:30 +02:00
|
|
|
#define DECODE_ERROR_UNKTYPE 10
|
|
|
|
#define DECODE_ERROR_FILE 20
|
2004-05-18 15:13:55 +02:00
|
|
|
|
2008-08-26 08:40:47 +02:00
|
|
|
struct decoder_control {
|
2008-10-08 10:49:16 +02:00
|
|
|
struct notify notify;
|
2008-04-12 06:14:32 +02:00
|
|
|
|
2008-06-02 00:25:00 +02:00
|
|
|
volatile enum decoder_state state;
|
2008-08-26 08:27:04 +02:00
|
|
|
volatile enum decoder_command command;
|
2008-09-29 15:49:29 +02:00
|
|
|
volatile uint16_t error;
|
2008-10-30 08:38:54 +01:00
|
|
|
bool seekError;
|
|
|
|
bool seekable;
|
2004-05-10 14:35:18 +02:00
|
|
|
volatile double seekWhere;
|
2008-09-07 19:19:55 +02:00
|
|
|
struct audio_format audioFormat;
|
2008-10-08 10:49:11 +02:00
|
|
|
struct song *current_song;
|
|
|
|
struct song *volatile next_song;
|
2006-07-20 18:02:40 +02:00
|
|
|
volatile float totalTime;
|
2008-08-26 08:40:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct decoder_control dc;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-08-26 08:45:14 +02:00
|
|
|
void dc_init(void);
|
|
|
|
|
2008-09-24 07:14:11 +02:00
|
|
|
void dc_deinit(void);
|
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
static inline bool decoder_is_idle(void)
|
2008-08-26 08:29:35 +02:00
|
|
|
{
|
2008-08-26 08:40:47 +02:00
|
|
|
return dc.state == DECODE_STATE_STOP &&
|
|
|
|
dc.command != DECODE_COMMAND_START;
|
2008-08-26 08:29:35 +02:00
|
|
|
}
|
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
static inline bool decoder_is_starting(void)
|
2008-08-26 08:29:35 +02:00
|
|
|
{
|
2008-08-26 08:40:47 +02:00
|
|
|
return dc.command == DECODE_COMMAND_START ||
|
|
|
|
dc.state == DECODE_STATE_START;
|
2008-08-26 08:29:35 +02:00
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
static inline struct song *
|
|
|
|
decoder_current_song(void)
|
2008-08-26 08:29:35 +02:00
|
|
|
{
|
2008-08-26 08:40:47 +02:00
|
|
|
if (dc.state == DECODE_STATE_STOP ||
|
|
|
|
dc.error != DECODE_ERROR_NOERROR)
|
2008-08-26 08:29:35 +02:00
|
|
|
return NULL;
|
|
|
|
|
2008-08-26 08:40:47 +02:00
|
|
|
return dc.current_song;
|
2008-08-26 08:29:35 +02:00
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:16 +02:00
|
|
|
void
|
|
|
|
dc_command_wait(struct notify *notify);
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
void
|
2008-10-08 10:49:16 +02:00
|
|
|
dc_start(struct notify *notify, struct song *song);
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
void
|
|
|
|
dc_start_async(struct song *song);
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2008-10-08 10:49:16 +02:00
|
|
|
void
|
|
|
|
dc_stop(struct notify *notify);
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
bool
|
2008-10-08 10:49:16 +02:00
|
|
|
dc_seek(struct notify *notify, double where);
|
2008-08-26 08:27:18 +02:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|