From 68946789c2f7b9bf8af2caa0bcc1866ebc7c8e21 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Tue, 11 May 2021 13:24:04 +0300 Subject: radio: use pipewiresrc instead of alsasrc on kingfisher This fixes the synchronization issues that prevent the radio from working nicely on the kingfisher Bug-AGL: SPEC-3844 Signed-off-by: George Kiagiadakis Change-Id: I5132a135b8203a1f1ceb7cfe5f01d8676e786de4 --- binding/radio_impl_kingfisher.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- cgit 1.2.3-korg