Wim Taymans
f0102fd490
pulse: move pulse protocol to module
2020-10-08 18:06:11 +02:00
Wim Taymans
17843ae7cb
pulse-bridge: fix reply of record latency
...
Makes bluejeans in firefox work
2020-10-08 18:06:11 +02:00
Wim Taymans
fead5c18d6
pulse-bridge: fix state of source
2020-10-08 18:06:11 +02:00
Wim Taymans
3194d5ca81
pulse-bridge: add introspection of dummy sink/source
2020-10-08 18:06:11 +02:00
Wim Taymans
6f6337e732
pulse-bridge: support record streams
2020-10-08 18:06:11 +02:00
Wim Taymans
7c1fbf5bee
pulse-bridge: rework messages
...
Make recycled message blocks for receiving and sending data.
Implement async flushing out the output queue.
2020-10-08 18:06:11 +02:00
Wim Taymans
4ad085ef96
pulse-bridge: work more on timings
...
Fixes sync in firefox
2020-10-08 18:06:11 +02:00
Wim Taymans
ab4def7e5f
pulse: respect flags to set volume/mute
2020-10-08 18:06:11 +02:00
Wim Taymans
a4874abc46
pulse: restore volume and muted
2020-10-08 18:06:11 +02:00
Wim Taymans
630889493c
pulse-bridge: Update client properties
2020-10-08 18:06:11 +02:00
Wim Taymans
949f923b80
pulse-bridge: implement timing and corking
2020-10-08 18:06:11 +02:00
Wim Taymans
a536c38fbe
pulse: use send to avoid SIGPIPE signals
2020-10-08 18:06:11 +02:00
Wim Taymans
90b52b9ff4
pulse-bridge: add more commands
2020-10-08 18:06:11 +02:00
Wim Taymans
9dad175959
pulse-bridge: implement stream volume
...
Implement some more things.
2020-10-08 18:06:11 +02:00
Wim Taymans
7655aa7066
pulse-bridge: implement enough to play flatpak Spotify
2020-10-08 18:06:11 +02:00
Wim Taymans
d180b8d927
beginnings of pulse protocol
2020-10-08 18:06:11 +02:00
Wim Taymans
5c048500cc
stream: normalize volumes when monitoring
2020-10-07 12:45:28 +02:00
Wim Taymans
932adc18f8
stream: clarify that timestamp is in nanoseconds
2020-10-07 12:00:53 +02:00
Wim Taymans
bcaf7cd722
adapter: remove redundant set_active call
2020-10-05 12:16:46 +02:00
Wim Taymans
b05597cf6b
stream: make sure stream is in the right state
...
An adapter stream is usually created in the active state so deactive
it before export when requested.
2020-10-05 12:16:42 +02:00
Wim Taymans
6f2534f5ab
core: improve debug
2020-10-02 16:23:08 +02:00
Wim Taymans
0da406d304
media-session: make sure we don't read invalid data
2020-10-01 11:32:40 +02:00
Wim Taymans
bc35221210
context: destroy clients first
...
Destroy clients before trying to remove nodes. If the clients are
still connected they might try to react to the removed nodes.
2020-09-30 12:01:46 +02:00
Wim Taymans
81ca70af9b
alsa-monitor: avoid crash in release
...
Only try to release the device when we have a proxy.
Fixes #310
2020-09-28 18:23:23 +02:00
Wim Taymans
79fbddb838
stream: handle out of buffers port
...
If the port was out of buffers and we can't recycle a buffer, return
-EPIPE.
2020-09-25 18:24:29 +02:00
Wim Taymans
d2d722efb3
node: add an ASYNC flag
...
The flag means that the process function might not complete
synchronously.
We can use this knowledge to improve the adapter. In sync mode we
can pull before scheduling the converter. In async mode we need to
schedule the follower after the converter to get the data ready for
the next iteration.
We can also improve the stream when it is operating async to schedule
a process call when a new buffer is ready to be filled.
This reduces a cycle latency from alsa and improves latency in
pulse.
2020-09-25 17:02:54 +02:00
Wim Taymans
9dc1c3b168
stream: improve the input process loop
...
Only try to reuse a buffer when the io area is not already in
the NEED_DATA state or else we might overwrite a previous buffer
reuse and run out of buffers.
We also always need more input.
2020-09-24 17:15:47 +02:00
Wim Taymans
61523d383a
tools: add pw-reserve to reverse and monitor a device
2020-09-23 10:24:06 +02:00
Wim Taymans
f4bf7bc7e6
media-session: don't emit busy when we are acquiring
2020-09-23 10:22:22 +02:00
Wim Taymans
3f844f7b09
media-session: make the same node name as PulseAudio
...
Fixes #299
2020-09-22 12:59:13 +02:00
Wim Taymans
a4e079e1cb
media-session: guard against invalid input
...
See #304
2020-09-22 12:39:39 +02:00
Wim Taymans
cf2c32f0a9
alsa: rework device reservation
...
Always try to first reserve the device name and then start the probing
so that we can be sure that the device is not in use.
2020-09-21 15:23:36 +02:00
Wim Taymans
2b8568e14f
reserve: don't call busy/available when we are the owner
...
Also ignore acquired from our other devices.
2020-09-21 14:35:32 +02:00
Wim Taymans
cc470c048b
reserve: improve debug
2020-09-21 14:35:08 +02:00
Arun Raghavan
2c8e2f3a36
reserve: Fix check for whether acquire succeeded or not
...
We only deem success if we successfully became the primary name owner.
2020-09-19 11:02:04 +00:00
Arun Raghavan
272624fe83
alsa-monitor: Don't ignore device reservation failure
...
We were ignoring the reservation status, which is incorrect as we might
not have succeeded in grabbing the device.
2020-09-19 11:02:04 +00:00
Arun Raghavan
2acfa0ee10
alsa-monitor: Lower our device reservation priority
...
For now, let's lower our priority in device reservation below that of
PulseAudio (which currently uses a priority of 0), so that it takes
priority while contending for the same device.
2020-09-19 11:02:04 +00:00
Wim Taymans
f777da9feb
stream: copy the position before doing the callback
...
So that the callback can look at the updated queued bytes
2020-09-18 17:55:31 +02:00
Wim Taymans
8ee07c3c66
policy-node: always boost default node priority
...
Make sure the default node as the highest priority.
Fixes a problem with default nodes not being selected when their
priority happens to be too low (bluetooth devices)
2020-09-17 12:35:33 +02:00
Wim Taymans
e9fd38512e
node: improve debug
2020-09-17 10:34:42 +02:00
Wim Taymans
51b6c2cbd7
context: handle the fallback node correctly
...
A passive node can still be the fallback node. It becomes non-passive
if there is a node assigned to it.
This makes the Dummy node work again in the case of jack clients
that always need to be scheduled.
2020-09-16 18:11:16 +02:00
Wim Taymans
854d019343
pipewire: improve get_prgname()
2020-09-16 12:19:33 +02:00
Wim Taymans
6e77791c8e
node: Use the work queue to cancel old operations
...
Keep track of the last state change and cancel the previous one
if it's still busy.
2020-09-16 10:36:47 +02:00
Wim Taymans
af1cf3d87a
work-queue: avoid invalid sequence numbers
2020-09-16 10:36:09 +02:00
Wim Taymans
5821f84c4b
work-queue: improve debug
2020-09-16 10:21:45 +02:00
Wim Taymans
e0ce311bc0
impl-node: only complete the last pending state
...
If we get a complete reply from an old state change, ignore it.
2020-09-15 20:33:30 +02:00
Wim Taymans
b5517cc2fe
thread-loop: add some more debug
2020-09-15 18:01:51 +02:00
Wim Taymans
eaa08e209f
protocol-native: remove mainloop hook only once
2020-09-15 18:00:08 +02:00
Wim Taymans
1a2e783a6f
protocol-native: keep client around while processing
...
When we process the messages of a client, keep the client around
because some callback might have disconnected and tried to free
us.
2020-09-15 13:54:50 +02:00
Wim Taymans
f07aa6a9fd
node: only warn for slow clients
...
Just use debug level for other clients and warning for the ones
that are still busy.
2020-09-15 08:19:23 +02:00