decode.h 1.87 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)
Warren Dukes's avatar
Warren Dukes committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * 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

22
#include "song.h"
23

24
#include "audio_format.h"
25
#include "notify.h"
Warren Dukes's avatar
Warren Dukes committed
26

27 28
#define DECODE_TYPE_FILE	0
#define DECODE_TYPE_URL		1
Warren Dukes's avatar
Warren Dukes committed
29

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

36 37 38 39 40 41 42
enum decoder_command {
	DECODE_COMMAND_NONE = 0,
	DECODE_COMMAND_START,
	DECODE_COMMAND_STOP,
	DECODE_COMMAND_SEEK
};

Warren Dukes's avatar
Warren Dukes committed
43
#define DECODE_ERROR_NOERROR	0
44 45
#define DECODE_ERROR_UNKTYPE	10
#define DECODE_ERROR_FILE	20
46

Warren Dukes's avatar
Warren Dukes committed
47
typedef struct _DecoderControl {
48 49
	Notify notify;

50
	volatile enum decoder_state state;
51
	volatile enum decoder_command command;
52
	volatile mpd_uint16 error;
53 54
	volatile mpd_sint8 seekError;
	volatile mpd_sint8 seekable;
55
	volatile double seekWhere;
Avuton Olrich's avatar
Avuton Olrich committed
56
	AudioFormat audioFormat;
57
	Song *current_song;
58
	Song *volatile next_song;
Avuton Olrich's avatar
Avuton Olrich committed
59
	volatile float totalTime;
Warren Dukes's avatar
Warren Dukes committed
60 61
} DecoderControl;

62
void decoderInit(void);
63

Max Kellermann's avatar
Max Kellermann committed
64 65 66 67 68 69 70 71 72 73
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
74
#endif