2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
#ifndef __OUTPUTS_H__
|
|
|
|
#define __OUTPUTS_H__
|
|
|
|
|
2016-05-05 12:49:27 -04:00
|
|
|
#include <time.h>
|
2019-02-08 14:36:21 -05:00
|
|
|
#include <event2/buffer.h>
|
|
|
|
#include "misc.h"
|
2016-05-05 12:49:27 -04:00
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
/* Outputs is a generic interface between the player and a media output method,
|
|
|
|
* like for instance AirPlay (raop) or ALSA. The purpose of the interface is to
|
|
|
|
* make it easier to add new outputs without messing too much with the player or
|
|
|
|
* existing output methods.
|
|
|
|
*
|
|
|
|
* An output method will have a general type, and it will be able to detect
|
|
|
|
* supported devices that are available for output. A device will be typically
|
|
|
|
* be something like an AirPlay speaker.
|
|
|
|
*
|
|
|
|
* When a device is started the output backend will typically create a session.
|
|
|
|
* This session is only passed around as an opaque object in this interface.
|
|
|
|
*
|
2016-04-04 10:58:07 -04:00
|
|
|
* Here is the sequence of commands from the player to the outputs, and the
|
|
|
|
* callback from the output once the command has been executed. Commands marked
|
|
|
|
* with * may make multiple callbacks if multiple sessions are affected.
|
|
|
|
*
|
|
|
|
* PLAYER OUTPUT PLAYER CB
|
|
|
|
* speaker_activate -> device_start -> device_activate_cb
|
|
|
|
* -> (if playback) -> playback_start -> device_streaming_cb* (or no cb)
|
|
|
|
* -> (else if playback not active) -> device_streaming_cb
|
|
|
|
* -> (fail) -> device_stop -> device_lost_cb
|
|
|
|
* speaker_activate -> device_probe -> device_probe_cb
|
|
|
|
* speaker_deactivate -> device_stop -> device_shutdown_cb
|
|
|
|
* volume_set -> device_volume_set -> device_command_cb
|
|
|
|
* -> -> device_streaming_cb
|
|
|
|
* (volume_setrel/abs_speaker is the same)
|
|
|
|
* playback_start_item -> device_start -> device_restart_cb
|
|
|
|
* -> (success) -> device_streaming_cb
|
|
|
|
* -> (fail) -> device_stop -> device_lost_cb
|
|
|
|
* playback_start_bh -> playback_start -> device_streaming_cb* (or no cb)
|
|
|
|
* playback_stop -> flush -> device_command_cb*
|
|
|
|
* -> -> device_streaming_cb*
|
|
|
|
* -> -> playback_stop -> device_streaming_cb*
|
|
|
|
* playback_pause -> flush -> device_command_cb*
|
|
|
|
* -> -> device_streaming_cb*
|
|
|
|
* -> -> playback_stop -> device_streaming_cb*
|
|
|
|
* playback_abort -> playback_stop -> device_streaming_cb* (or no cb)
|
|
|
|
* device_streaming_cb -> device_streaming_cb (re-add)
|
|
|
|
*
|
2016-01-23 19:14:07 -05:00
|
|
|
*/
|
|
|
|
|
2019-02-08 14:36:21 -05:00
|
|
|
// If an output requires a specific quality (like Airplay 1 devices often
|
|
|
|
// require 44100/16) then it should make a subscription request to the output
|
|
|
|
// module, which will then make sure to include this quality when it writes the
|
|
|
|
// audio. The below sets the maximum number of *different* subscriptions
|
|
|
|
// allowed. Note that multiple outputs requesting the *same* quality only counts
|
|
|
|
// as one.
|
|
|
|
#define OUTPUTS_MAX_QUALITY_SUBSCRIPTIONS 5
|
|
|
|
|
|
|
|
// Number of seconds the outputs should buffer before starting playback. Note
|
|
|
|
// this value cannot freely be changed because 1) some Airplay devices ignore
|
|
|
|
// the values we give and stick to 2 seconds, 2) those devices that can handle
|
|
|
|
// different values can only do so within a limited range (maybe max 3 secs)
|
|
|
|
#define OUTPUTS_BUFFER_DURATION 2
|
|
|
|
|
2016-01-24 16:19:15 -05:00
|
|
|
// Must be in sync with outputs[] in outputs.c
|
2016-01-23 19:14:07 -05:00
|
|
|
enum output_types
|
|
|
|
{
|
|
|
|
OUTPUT_TYPE_RAOP,
|
2016-04-04 10:58:07 -04:00
|
|
|
OUTPUT_TYPE_STREAMING,
|
2016-04-04 17:43:34 -04:00
|
|
|
OUTPUT_TYPE_DUMMY,
|
2016-10-25 15:23:09 -04:00
|
|
|
OUTPUT_TYPE_FIFO,
|
2017-01-06 03:44:18 -05:00
|
|
|
#ifdef HAVE_ALSA
|
2016-01-24 16:19:15 -05:00
|
|
|
OUTPUT_TYPE_ALSA,
|
2016-04-04 10:58:07 -04:00
|
|
|
#endif
|
2017-01-06 03:44:18 -05:00
|
|
|
#ifdef HAVE_LIBPULSE
|
2016-07-21 16:13:32 -04:00
|
|
|
OUTPUT_TYPE_PULSE,
|
|
|
|
#endif
|
2016-04-04 17:43:34 -04:00
|
|
|
#ifdef CHROMECAST
|
|
|
|
OUTPUT_TYPE_CAST,
|
|
|
|
#endif
|
2016-01-23 19:14:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Output session state */
|
|
|
|
enum output_device_state
|
|
|
|
{
|
2016-02-12 15:59:26 -05:00
|
|
|
// Device is stopped (no session)
|
2016-01-23 19:14:07 -05:00
|
|
|
OUTPUT_STATE_STOPPED = 0,
|
2016-02-12 15:59:26 -05:00
|
|
|
// Device is starting up
|
|
|
|
OUTPUT_STATE_STARTUP = 1,
|
|
|
|
// Session established (streaming ready and commands are possible)
|
|
|
|
OUTPUT_STATE_CONNECTED = 2,
|
|
|
|
// Media data is being sent
|
|
|
|
OUTPUT_STATE_STREAMING = 3,
|
2016-01-24 16:19:15 -05:00
|
|
|
// Session is failed, couldn't startup or error occurred
|
2016-01-23 19:14:07 -05:00
|
|
|
OUTPUT_STATE_FAILED = -1,
|
2016-01-24 16:19:15 -05:00
|
|
|
// Password issue: unknown password or bad password
|
2016-01-23 19:14:07 -05:00
|
|
|
OUTPUT_STATE_PASSWORD = -2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Linked list of device info used by the player for each device
|
|
|
|
*/
|
|
|
|
struct output_device
|
|
|
|
{
|
|
|
|
// Device id
|
|
|
|
uint64_t id;
|
|
|
|
|
|
|
|
// Name of the device, e.g. "Living Room"
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
// Type of the device, will be used to determine which output backend to call
|
|
|
|
enum output_types type;
|
|
|
|
|
|
|
|
// Type of output (string)
|
|
|
|
const char *type_name;
|
|
|
|
|
|
|
|
// Misc device flags
|
|
|
|
unsigned selected:1;
|
2019-02-13 10:56:17 -05:00
|
|
|
unsigned advertised:1;
|
2016-01-23 19:14:07 -05:00
|
|
|
unsigned has_password:1;
|
|
|
|
unsigned has_video:1;
|
2017-06-19 15:52:01 -04:00
|
|
|
unsigned requires_auth:1;
|
2018-09-19 17:03:33 -04:00
|
|
|
unsigned v6_disabled:1;
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2017-06-19 15:52:01 -04:00
|
|
|
// Credentials if relevant
|
2016-01-23 19:14:07 -05:00
|
|
|
const char *password;
|
2017-06-19 15:52:01 -04:00
|
|
|
char *auth_key;
|
2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
// Device volume
|
|
|
|
int volume;
|
|
|
|
int relvol;
|
|
|
|
|
2019-02-08 14:36:21 -05:00
|
|
|
// Quality of audio output
|
|
|
|
struct media_quality quality;
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
// Address
|
|
|
|
char *v4_address;
|
|
|
|
char *v6_address;
|
|
|
|
short v4_port;
|
|
|
|
short v6_port;
|
|
|
|
|
|
|
|
// Opaque pointers to device and session data
|
|
|
|
void *extra_device_info;
|
2019-02-10 17:20:12 -05:00
|
|
|
void *session;
|
2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
struct output_device *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Linked list of metadata prepared by each output backend
|
|
|
|
struct output_metadata
|
|
|
|
{
|
|
|
|
enum output_types type;
|
|
|
|
void *metadata;
|
2019-02-12 15:25:27 -05:00
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
struct output_metadata *next;
|
|
|
|
};
|
|
|
|
|
2019-02-08 14:36:21 -05:00
|
|
|
struct output_frame
|
|
|
|
{
|
|
|
|
struct media_quality quality;
|
|
|
|
struct evbuffer *evbuf;
|
|
|
|
uint8_t *buffer;
|
|
|
|
size_t bufsize;
|
|
|
|
int samples;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct output_buffer
|
|
|
|
{
|
|
|
|
uint32_t write_counter; // REMOVE ME? not used for anything
|
2019-02-10 17:20:12 -05:00
|
|
|
struct timespec pts;
|
2019-02-08 14:36:21 -05:00
|
|
|
struct output_frame frames[OUTPUTS_MAX_QUALITY_SUBSCRIPTIONS + 1];
|
|
|
|
} output_buffer;
|
|
|
|
|
2019-02-10 17:20:12 -05:00
|
|
|
typedef void (*output_status_cb)(struct output_device *device, enum output_device_state status);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
struct output_definition
|
|
|
|
{
|
|
|
|
// Name of the output
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
// Type of output
|
|
|
|
enum output_types type;
|
|
|
|
|
|
|
|
// Priority to give this output when autoselecting an output, 1 is highest
|
|
|
|
// 1 = highest priority, 0 = don't autoselect
|
|
|
|
int priority;
|
|
|
|
|
|
|
|
// Set to 1 if the output initialization failed
|
|
|
|
int disabled;
|
|
|
|
|
|
|
|
// Initialization function called during startup
|
|
|
|
// Output must call device_cb when an output device becomes available/unavailable
|
|
|
|
int (*init)(void);
|
|
|
|
|
|
|
|
// Deinitialization function called at shutdown
|
|
|
|
void (*deinit)(void);
|
|
|
|
|
|
|
|
// Prepare a playback session on device and call back
|
2019-02-12 15:25:27 -05:00
|
|
|
int (*device_start)(struct output_device *device, int callback_id);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2019-02-10 17:20:12 -05:00
|
|
|
// Close a session prepared by device_start and call back
|
2019-02-12 15:25:27 -05:00
|
|
|
int (*device_stop)(struct output_device *device, int callback_id);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2019-02-16 18:19:13 -05:00
|
|
|
// Flush device session and call back
|
|
|
|
int (*device_flush)(struct output_device *device, int callback_id);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
// Test the connection to a device and call back
|
2019-02-12 15:25:27 -05:00
|
|
|
int (*device_probe)(struct output_device *device, int callback_id);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
// Set the volume and call back
|
2019-02-12 15:25:27 -05:00
|
|
|
int (*device_volume_set)(struct output_device *device, int callback_id);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2018-05-26 19:42:39 -04:00
|
|
|
// Convert device internal representation of volume to our pct scale
|
|
|
|
int (*device_volume_to_pct)(struct output_device *device, const char *volume);
|
|
|
|
|
2019-02-08 14:36:21 -05:00
|
|
|
// Request a change of quality from the device
|
2019-02-12 15:25:27 -05:00
|
|
|
int (*device_quality_set)(struct output_device *device, struct media_quality *quality, int callback_id);
|
2019-02-08 14:36:21 -05:00
|
|
|
|
2019-02-10 17:20:12 -05:00
|
|
|
// Change the call back associated with a device
|
2019-02-12 15:25:27 -05:00
|
|
|
void (*device_cb_set)(struct output_device *device, int callback_id);
|
|
|
|
|
|
|
|
// Free the private device data
|
|
|
|
void (*device_free_extra)(struct output_device *device);
|
2019-02-10 17:20:12 -05:00
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
// Start/stop playback on devices that were started
|
|
|
|
void (*playback_stop)(void);
|
|
|
|
|
|
|
|
// Write stream data to the output devices
|
2019-02-10 17:20:12 -05:00
|
|
|
void (*write)(struct output_buffer *buffer);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2017-06-19 15:52:01 -04:00
|
|
|
// Authorize an output with a pin-code (probably coming from the filescanner)
|
|
|
|
void (*authorize)(const char *pin);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
// Metadata
|
|
|
|
void *(*metadata_prepare)(int id);
|
|
|
|
void (*metadata_send)(void *metadata, uint64_t rtptime, uint64_t offset, int startup);
|
|
|
|
void (*metadata_purge)(void);
|
|
|
|
void (*metadata_prune)(uint64_t rtptime);
|
|
|
|
};
|
|
|
|
|
2019-02-12 15:25:27 -05:00
|
|
|
// Our main list of devices, not for use by backend modules
|
|
|
|
struct output_device *output_device_list;
|
|
|
|
|
|
|
|
/* ------------------------------- General use ------------------------------ */
|
|
|
|
|
|
|
|
struct output_device *
|
|
|
|
outputs_device_get(uint64_t device_id);
|
|
|
|
|
|
|
|
/* ----------------------- Called by backend modules ------------------------ */
|
|
|
|
|
|
|
|
int
|
|
|
|
outputs_device_session_add(uint64_t device_id, void *session);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_device_session_remove(uint64_t device_id);
|
|
|
|
|
|
|
|
int
|
|
|
|
outputs_quality_subscribe(struct media_quality *quality);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_quality_unsubscribe(struct media_quality *quality);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_cb(int callback_id, uint64_t device_id, enum output_device_state);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_listener_notify(void);
|
|
|
|
|
|
|
|
/* ---------------------------- Called by player ---------------------------- */
|
|
|
|
|
2019-02-17 07:12:29 -05:00
|
|
|
// Ownership of *add is transferred, so don't address after calling. Instead you
|
|
|
|
// can address the return value (which is not the same if the device was already
|
|
|
|
// in the list.
|
|
|
|
struct output_device *
|
2019-02-12 17:43:54 -05:00
|
|
|
outputs_device_add(struct output_device *add, bool new_deselect, int default_volume);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_device_remove(struct output_device *remove);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
int
|
2019-02-10 17:20:12 -05:00
|
|
|
outputs_device_start(struct output_device *device, output_status_cb cb);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2019-02-09 19:54:52 -05:00
|
|
|
int
|
2019-02-10 17:20:12 -05:00
|
|
|
outputs_device_stop(struct output_device *device, output_status_cb cb);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2019-02-16 18:19:13 -05:00
|
|
|
int
|
|
|
|
outputs_device_flush(struct output_device *device, output_status_cb cb);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
int
|
|
|
|
outputs_device_probe(struct output_device *device, output_status_cb cb);
|
|
|
|
|
|
|
|
int
|
|
|
|
outputs_device_volume_set(struct output_device *device, output_status_cb cb);
|
|
|
|
|
2018-05-26 19:42:39 -04:00
|
|
|
int
|
|
|
|
outputs_device_volume_to_pct(struct output_device *device, const char *value);
|
|
|
|
|
2019-02-08 14:36:21 -05:00
|
|
|
int
|
2019-02-12 15:25:27 -05:00
|
|
|
outputs_device_quality_set(struct output_device *device, struct media_quality *quality, output_status_cb cb);
|
2019-02-08 14:36:21 -05:00
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
void
|
2019-02-12 15:25:27 -05:00
|
|
|
outputs_device_cb_set(struct output_device *device, output_status_cb cb);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_device_free(struct output_device *device);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
void
|
2019-02-10 17:20:12 -05:00
|
|
|
outputs_playback_stop(void);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
|
|
|
int
|
2019-02-10 17:20:12 -05:00
|
|
|
outputs_flush(output_status_cb cb);
|
2016-01-23 19:14:07 -05:00
|
|
|
|
2019-02-16 18:19:13 -05:00
|
|
|
void
|
|
|
|
outputs_write(void *buf, size_t bufsize, struct media_quality *quality, int nsamples, struct timespec *pts);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
struct output_metadata *
|
|
|
|
outputs_metadata_prepare(int id);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_metadata_send(struct output_metadata *omd, uint64_t rtptime, uint64_t offset, int startup);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_metadata_purge(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_metadata_prune(uint64_t rtptime);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_metadata_free(struct output_metadata *omd);
|
|
|
|
|
2017-06-19 15:52:01 -04:00
|
|
|
void
|
|
|
|
outputs_authorize(enum output_types type, const char *pin);
|
|
|
|
|
2016-04-04 15:54:37 -04:00
|
|
|
int
|
|
|
|
outputs_priority(struct output_device *device);
|
|
|
|
|
2016-01-23 19:14:07 -05:00
|
|
|
const char *
|
|
|
|
outputs_name(enum output_types type);
|
|
|
|
|
|
|
|
int
|
|
|
|
outputs_init(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
outputs_deinit(void);
|
|
|
|
|
|
|
|
#endif /* !__OUTPUTS_H__ */
|