diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-03-12 18:23:31 +0200 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-03-12 18:23:31 +0200 |
commit | 63e709d3100b009b196d082ee390f1de12d80f83 (patch) | |
tree | ea6103779639606f34ef7ef1f6b9ff638bb3f250 /binding/radio_output_gstreamer.c | |
parent | 6ebbc4b470f07c87843eb43c2a5ca55b387583a5 (diff) |
radio: s/pwaudiosink/pipewiresink/
This is the one and only pipewire sink now.
Bug-AGL: SPEC-3844
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
Change-Id: If7c69f9c944f92006bde1aa3b9745b7966501a65
Diffstat (limited to 'binding/radio_output_gstreamer.c')
-rw-r--r-- | binding/radio_output_gstreamer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binding/radio_output_gstreamer.c b/binding/radio_output_gstreamer.c index 5359deb..e098d2d 100644 --- a/binding/radio_output_gstreamer.c +++ b/binding/radio_output_gstreamer.c @@ -65,7 +65,7 @@ int radio_output_open() queue = gst_element_factory_make("queue", "queue"); convert = gst_element_factory_make("audioconvert", "convert"); resample = gst_element_factory_make("audioresample", "resample"); - sink = gst_element_factory_make("pwaudiosink", "sink"); + sink = gst_element_factory_make("pipewiresink", "sink"); if(!(pipeline && appsrc && queue && convert && resample && sink)) { fprintf(stderr, "pipeline element construction failed!\n"); } |