summaryrefslogtreecommitdiffstats
path: root/audio/out
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-06-18 22:36:28 +0200
committersfan5 <sfan5@live.de>2023-06-21 17:33:31 +0200
commit594458838ecf2229797e10266915e0f33c95d4fd (patch)
treec5e50d7da992d85880afa5d4265bcdbe37ffbfd5 /audio/out
parent71c80826f1e213012a92a786f5190abcf9e34ae9 (diff)
downloadmpv-594458838ecf2229797e10266915e0f33c95d4fd.tar.bz2
mpv-594458838ecf2229797e10266915e0f33c95d4fd.tar.xz
ao_pipewire: bump dependency to 0.3.48
Now that Debian 12 is release bump the minium required version to what is provided in Ubuntu Jammy (22.04). The same as has been done for the wayland dependencies. Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
Diffstat (limited to 'audio/out')
-rw-r--r--audio/out/ao_pipewire.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/audio/out/ao_pipewire.c b/audio/out/ao_pipewire.c
index 0c2b311771..a7cbc866d0 100644
--- a/audio/out/ao_pipewire.c
+++ b/audio/out/ao_pipewire.c
@@ -35,18 +35,6 @@
#include "internal.h"
#include "osdep/timer.h"
-// Added in Pipewire 0.3.33
-// remove the fallback when we require a newer version
-#ifndef PW_KEY_NODE_RATE
-#define PW_KEY_NODE_RATE "node.rate"
-#endif
-
-// Added in Pipewire 0.3.44
-// remove the fallback when we require a newer version
-#ifndef PW_KEY_TARGET_OBJECT
-#define PW_KEY_TARGET_OBJECT "target.object"
-#endif
-
#if !PW_CHECK_VERSION(0, 3, 50)
static inline int pw_stream_get_time_n(struct pw_stream *stream, struct pw_time *time, size_t size) {
return pw_stream_get_time(stream, time);