diff options
author | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2011-02-28 13:23:23 +0530 |
---|---|---|
committer | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2011-05-02 11:54:43 +0530 |
commit | 0ac2cfce6d1a3d7ab5af6aca659e46625c32d3c4 (patch) | |
tree | 584ac3a49636412d2ff3c53608050c4042b6af6f /PROTOCOL | |
parent | 47e0f91aa2ca6eb3ea8b7be8aa03cd03a28c3fbe (diff) |
core: Add extended stream API to support compressed formats
This is the beginning of work to support compressed formats natively in
PulseAudio. This adds a pa_stream_new_extended() that takes a format
structure, sends it to the server (=> protocol extension) and has the
server negotiate with the appropropriate sink to figure out what format
it should use.
This is work in progress, and works only with PCM streams. Actual
compressed format support in some sink needs to be implemented, and
extensive testing is required.
More details on how this is supposed to work is available at:
http://pulseaudio.org/wiki/PassthroughSupport
Diffstat (limited to 'PROTOCOL')
-rw-r--r-- | PROTOCOL | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -213,3 +213,18 @@ Two new flags at the end of sink input introspection data: bool has_volume bool volume_writable + +## v21, implemented by >= 1.0 + +Changes for format negotiation in the extended API. + +New fields PA_COMMAND_CREATE_PLAYBACK_STREAM: + + uint8_t n_formats + format_info format1 + ... + format_info formatn + +One new field in reply from PA_COMMAND_CREATE_PLAYBACK_STREAM: + + format_info format |