aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.com>2021-05-11 13:24:04 +0300
committerGeorge Kiagiadakis <george.kiagiadakis@collabora.com>2021-05-11 13:24:04 +0300
commit68946789c2f7b9bf8af2caa0bcc1866ebc7c8e21 (patch)
tree9d3458e65a587bbf0700eb5d0d2d6d6c845d7626
parent63e709d3100b009b196d082ee390f1de12d80f83 (diff)
This fixes the synchronization issues that prevent the radio from working nicely on the kingfisher Bug-AGL: SPEC-3844 Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com> Change-Id: I5132a135b8203a1f1ceb7cfe5f01d8676e786de4
-rw-r--r--binding/radio_impl_kingfisher.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/binding/radio_impl_kingfisher.c b/binding/radio_impl_kingfisher.c
index 5fc8a1e..8ecd5f1 100644
--- a/binding/radio_impl_kingfisher.c
+++ b/binding/radio_impl_kingfisher.c
@@ -219,7 +219,9 @@ static int kf_init(void)
// Use PipeWire output
rc = snprintf(gst_pipeline_str,
GST_PIPELINE_LEN,
- "alsasrc device=hw:radio ! queue ! audioconvert ! audioresample ! pipewiresink stream-properties=\"p,media.role=Multimedia\"");
+ "pipewiresrc stream-properties=\"p,node.target=alsa:pcm:radio:0:capture\" ! "
+ "audio/x-raw,format=F32LE,channels=2 ! "
+ "pipewiresink stream-properties=\"p,media.role=Multimedia\"");
if(rc >= GST_PIPELINE_LEN) {
AFB_API_ERROR(afbBindingV3root, "pipeline string too long");
return -1;