mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-13 01:38:20 +00:00
[client] audio/pipewire: PW_KEY_TARGET_OBJECT only exists as of 0.3.44
This commit is contained in:
parent
b559d6b9bc
commit
86efc47505
@ -257,7 +257,13 @@ static void pipewire_playbackSetup(int channels, int sampleRate,
|
|||||||
|
|
||||||
const char * device = option_get_string("pipewire", "outDevice");
|
const char * device = option_get_string("pipewire", "outDevice");
|
||||||
if (device)
|
if (device)
|
||||||
|
{
|
||||||
|
#ifdef PW_KEY_TARGET_OBJECT
|
||||||
pw_properties_set(props, PW_KEY_TARGET_OBJECT, device);
|
pw_properties_set(props, PW_KEY_TARGET_OBJECT, device);
|
||||||
|
#else
|
||||||
|
pw_properties_set(props, PW_KEY_NODE_TARGET, device);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
pw.playback.stream = pw_stream_new_simple(
|
pw.playback.stream = pw_stream_new_simple(
|
||||||
pw.loop,
|
pw.loop,
|
||||||
@ -491,7 +497,13 @@ static void pipewire_recordStart(int channels, int sampleRate,
|
|||||||
|
|
||||||
const char * device = option_get_string("pipewire", "recDevice");
|
const char * device = option_get_string("pipewire", "recDevice");
|
||||||
if (device)
|
if (device)
|
||||||
|
{
|
||||||
|
#ifdef PW_KEY_TARGET_OBJECT
|
||||||
pw_properties_set(props, PW_KEY_TARGET_OBJECT, device);
|
pw_properties_set(props, PW_KEY_TARGET_OBJECT, device);
|
||||||
|
#else
|
||||||
|
pw_properties_set(props, PW_KEY_NODE_TARGET, device);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
pw_thread_loop_lock(pw.thread);
|
pw_thread_loop_lock(pw.thread);
|
||||||
pw.record.stream = pw_stream_new_simple(
|
pw.record.stream = pw_stream_new_simple(
|
||||||
|
Loading…
Reference in New Issue
Block a user