2010-04-04 06:43:15 -04:00
|
|
|
|
|
|
|
#ifndef __PLAYER_H__
|
|
|
|
#define __PLAYER_H__
|
|
|
|
|
2018-02-07 16:18:09 -05:00
|
|
|
#include <stdbool.h>
|
2010-04-04 06:43:15 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-05-01 04:54:58 -04:00
|
|
|
#include "db.h"
|
2023-05-05 19:00:22 -04:00
|
|
|
#include "misc.h" // for struct media_quality
|
2015-05-01 04:54:58 -04:00
|
|
|
|
2019-01-11 13:32:50 -05:00
|
|
|
// Maximum number of previously played songs that are remembered
|
2014-04-19 11:18:20 -04:00
|
|
|
#define MAX_HISTORY_COUNT 20
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
enum play_status {
|
|
|
|
PLAY_STOPPED = 2,
|
|
|
|
PLAY_PAUSED = 3,
|
|
|
|
PLAY_PLAYING = 4,
|
|
|
|
};
|
|
|
|
|
2016-11-08 15:27:38 -05:00
|
|
|
enum repeat_mode {
|
|
|
|
REPEAT_OFF = 0,
|
|
|
|
REPEAT_SONG = 1,
|
|
|
|
REPEAT_ALL = 2,
|
|
|
|
};
|
|
|
|
|
2019-09-22 03:18:53 -04:00
|
|
|
enum player_seek_mode {
|
|
|
|
PLAYER_SEEK_POSITION = 1,
|
|
|
|
PLAYER_SEEK_RELATIVE = 2,
|
|
|
|
};
|
|
|
|
|
2023-05-08 14:46:16 -04:00
|
|
|
enum player_format {
|
|
|
|
PLAYER_FORMAT_MP3,
|
|
|
|
};
|
|
|
|
|
2019-01-22 11:47:15 -05:00
|
|
|
struct player_speaker_info {
|
2018-02-07 16:18:09 -05:00
|
|
|
uint64_t id;
|
2020-01-02 11:48:40 -05:00
|
|
|
uint32_t active_remote;
|
2019-01-21 03:34:37 -05:00
|
|
|
char name[255];
|
|
|
|
char output_type[50];
|
2018-02-07 16:18:09 -05:00
|
|
|
int relvol;
|
|
|
|
int absvol;
|
2011-03-05 04:29:05 -05:00
|
|
|
|
2018-02-07 16:18:09 -05:00
|
|
|
bool selected;
|
|
|
|
bool has_password;
|
|
|
|
bool requires_auth;
|
|
|
|
bool needs_auth_key;
|
|
|
|
|
2020-04-10 14:40:23 -04:00
|
|
|
bool prevent_playback;
|
|
|
|
bool busy;
|
|
|
|
|
2018-02-07 16:18:09 -05:00
|
|
|
bool has_video;
|
2011-03-05 04:25:44 -05:00
|
|
|
};
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
struct player_status {
|
|
|
|
enum play_status status;
|
|
|
|
enum repeat_mode repeat;
|
|
|
|
char shuffle;
|
2016-10-23 04:16:04 -04:00
|
|
|
char consume;
|
2010-04-04 06:43:15 -04:00
|
|
|
|
|
|
|
int volume;
|
|
|
|
|
2014-12-21 14:41:44 -05:00
|
|
|
/* Playlist id */
|
2010-07-31 06:30:51 -04:00
|
|
|
uint32_t plid;
|
2015-09-19 02:23:41 -04:00
|
|
|
/* Id of the playing file/item in the files database */
|
2010-04-04 06:43:15 -04:00
|
|
|
uint32_t id;
|
2015-09-19 02:23:41 -04:00
|
|
|
/* Item-Id of the playing file/item in the queue */
|
2015-10-03 03:01:26 -04:00
|
|
|
uint32_t item_id;
|
2015-02-14 16:36:52 -05:00
|
|
|
/* Elapsed time in ms of playing item */
|
2010-04-04 06:43:15 -04:00
|
|
|
uint32_t pos_ms;
|
2015-02-14 16:36:52 -05:00
|
|
|
/* Length in ms of playing item */
|
|
|
|
uint32_t len_ms;
|
2010-04-04 06:43:15 -04:00
|
|
|
};
|
|
|
|
|
2019-01-22 11:47:15 -05:00
|
|
|
typedef void (*spk_enum_cb)(struct player_speaker_info *spk, void *arg);
|
2010-04-04 06:43:15 -04:00
|
|
|
|
2014-04-19 11:18:20 -04:00
|
|
|
struct player_history
|
|
|
|
{
|
|
|
|
/* Buffer index of the oldest remembered song */
|
|
|
|
unsigned int start_index;
|
|
|
|
|
|
|
|
/* Count of song ids in the buffer */
|
|
|
|
unsigned int count;
|
|
|
|
|
2021-04-09 14:21:20 -04:00
|
|
|
/* Circular buffer of song ids previously played */
|
2014-05-03 13:44:26 -04:00
|
|
|
uint32_t id[MAX_HISTORY_COUNT];
|
2015-10-03 03:01:26 -04:00
|
|
|
uint32_t item_id[MAX_HISTORY_COUNT];
|
2014-04-19 11:18:20 -04:00
|
|
|
};
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
|
|
|
player_get_status(struct player_status *status);
|
|
|
|
|
|
|
|
int
|
2019-02-16 13:34:36 -05:00
|
|
|
player_playing_now(uint32_t *id);
|
2010-04-04 06:43:15 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
player_speaker_enumerate(spk_enum_cb cb, void *arg);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_speaker_set(uint64_t *ids);
|
|
|
|
|
2019-01-21 03:34:37 -05:00
|
|
|
int
|
2020-01-03 13:38:52 -05:00
|
|
|
player_speaker_get_byid(struct player_speaker_info *spk, uint64_t id);
|
2019-01-21 03:34:37 -05:00
|
|
|
|
2020-01-02 11:48:40 -05:00
|
|
|
int
|
|
|
|
player_speaker_get_byactiveremote(struct player_speaker_info *spk, uint32_t active_remote);
|
|
|
|
|
2018-02-07 17:05:23 -05:00
|
|
|
int
|
|
|
|
player_speaker_enable(uint64_t id);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_speaker_disable(uint64_t id);
|
|
|
|
|
2020-04-10 14:40:23 -04:00
|
|
|
int
|
|
|
|
player_speaker_prevent_playback_set(uint64_t id, bool prevent_playback);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_speaker_busy_set(uint64_t id, bool busy);
|
|
|
|
|
2020-05-01 14:11:45 -04:00
|
|
|
void
|
|
|
|
player_speaker_resurrect(void *arg);
|
|
|
|
|
2020-05-26 16:45:38 -04:00
|
|
|
int
|
|
|
|
player_speaker_authorize(uint64_t id, const char *pin);
|
|
|
|
|
2023-05-05 19:00:22 -04:00
|
|
|
int
|
2023-05-08 14:46:16 -04:00
|
|
|
player_streaming_register(int *audio_fd, int *metadata_fd, enum player_format format, struct media_quality quality);
|
2023-05-05 19:00:22 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
player_streaming_deregister(int id);
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
2017-01-15 17:23:36 -05:00
|
|
|
player_playback_start(void);
|
2010-04-04 06:43:15 -04:00
|
|
|
|
2014-12-21 14:41:44 -05:00
|
|
|
int
|
2016-11-08 15:27:38 -05:00
|
|
|
player_playback_start_byitem(struct db_queue_item *queue_item);
|
2014-12-21 14:41:44 -05:00
|
|
|
|
2017-02-08 16:25:20 -05:00
|
|
|
int
|
|
|
|
player_playback_start_byid(uint32_t id);
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
|
|
|
player_playback_stop(void);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_playback_pause(void);
|
|
|
|
|
2021-03-07 08:02:23 -05:00
|
|
|
int
|
|
|
|
player_playback_flush(void);
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
2019-09-22 03:18:53 -04:00
|
|
|
player_playback_seek(int seek_ms, enum player_seek_mode seek_mode);
|
2019-09-01 02:50:32 -04:00
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
|
|
|
player_playback_next(void);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_playback_prev(void);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_volume_set(int vol);
|
|
|
|
|
2010-11-19 16:51:46 -05:00
|
|
|
int
|
|
|
|
player_volume_setrel_speaker(uint64_t id, int relvol);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_volume_setabs_speaker(uint64_t id, int vol);
|
|
|
|
|
2018-05-26 19:42:39 -04:00
|
|
|
int
|
2021-05-25 17:39:11 -04:00
|
|
|
player_volume_setraw_speaker(uint64_t id, const char *volstr);
|
2018-05-26 19:42:39 -04:00
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
|
|
|
player_repeat_set(enum repeat_mode mode);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_shuffle_set(int enable);
|
|
|
|
|
2016-10-23 04:16:04 -04:00
|
|
|
int
|
|
|
|
player_consume_set(int enable);
|
|
|
|
|
2014-05-17 08:06:50 -04:00
|
|
|
void
|
2015-08-08 12:02:49 -04:00
|
|
|
player_queue_clear_history(void);
|
2014-05-17 08:06:50 -04:00
|
|
|
|
2010-07-31 06:30:51 -04:00
|
|
|
void
|
|
|
|
player_queue_plid(uint32_t plid);
|
|
|
|
|
2017-07-06 16:13:04 -04:00
|
|
|
struct player_history *
|
|
|
|
player_history_get(void);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
int
|
|
|
|
player_device_add(void *device);
|
|
|
|
|
|
|
|
int
|
|
|
|
player_device_remove(void *device);
|
2015-08-08 12:02:49 -04:00
|
|
|
|
2017-06-19 15:52:01 -04:00
|
|
|
void
|
|
|
|
player_raop_verification_kickoff(char **arglist);
|
|
|
|
|
2019-02-12 15:25:27 -05:00
|
|
|
const char *
|
|
|
|
player_pmap(void *p);
|
|
|
|
|
2010-04-04 06:43:15 -04:00
|
|
|
int
|
|
|
|
player_init(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
player_deinit(void);
|
|
|
|
|
|
|
|
#endif /* !__PLAYER_H__ */
|