decoder_control.h 2.26 KB
Newer Older
Warren Dukes's avatar
Warren Dukes committed
1
/* the Music Player Daemon (MPD)
2
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
3
 * Copyright (C) 2008 Max Kellermann <max@duempel.org>
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * 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
 */

#ifndef DECODE_H
#define DECODE_H

23
#include "decoder_api.h"
24
#include "song.h"
25

26
#include "audio_format.h"
27
#include "notify.h"
Warren Dukes's avatar
Warren Dukes committed
28

29 30
#define DECODE_TYPE_FILE	0
#define DECODE_TYPE_URL		1
Warren Dukes's avatar
Warren Dukes committed
31

32 33 34 35 36
enum decoder_state {
	DECODE_STATE_STOP = 0,
	DECODE_STATE_START,
	DECODE_STATE_DECODE
};
Warren Dukes's avatar
Warren Dukes committed
37 38

#define DECODE_ERROR_NOERROR	0
39 40
#define DECODE_ERROR_UNKTYPE	10
#define DECODE_ERROR_FILE	20
41

42
struct decoder_control {
43 44
	Notify notify;

45
	volatile enum decoder_state state;
46
	volatile enum decoder_command command;
47
	volatile mpd_uint16 error;
48 49
	volatile mpd_sint8 seekError;
	volatile mpd_sint8 seekable;
50
	volatile double seekWhere;
Avuton Olrich's avatar
Avuton Olrich committed
51
	AudioFormat audioFormat;
52
	Song *current_song;
53
	Song *volatile next_song;
Avuton Olrich's avatar
Avuton Olrich committed
54
	volatile float totalTime;
55 56 57
};

extern struct decoder_control dc;
Warren Dukes's avatar
Warren Dukes committed
58

59 60
void dc_init(void);

61
static inline int decoder_is_idle(void)
62
{
63 64
	return dc.state == DECODE_STATE_STOP &&
		dc.command != DECODE_COMMAND_START;
65 66
}

67
static inline int decoder_is_starting(void)
68
{
69 70
	return dc.command == DECODE_COMMAND_START ||
		dc.state == DECODE_STATE_START;
71 72
}

73
static inline Song *decoder_current_song(void)
74
{
75 76
	if (dc.state == DECODE_STATE_STOP ||
	    dc.error != DECODE_ERROR_NOERROR)
77 78
		return NULL;

79
	return dc.current_song;
80 81
}

Max Kellermann's avatar
Max Kellermann committed
82 83 84 85 86 87 88 89 90 91
void dc_command_wait(Notify *notify);

void dc_start(Notify *notify, Song *song);

void dc_start_async(Song *song);

void dc_stop(Notify *notify);

int dc_seek(Notify *notify, double where);

Warren Dukes's avatar
Warren Dukes committed
92
#endif