diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-05-11 13:24:04 +0300 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-05-25 15:54:25 +0300 |
commit | 2b3efff3744ee02218e9103c7367053d803b6a16 (patch) | |
tree | 3bb8e902aaad84b18c309b9e324b9fadf3e1af95 /binding/radio_impl_kingfisher.c | |
parent | f787959263698a71974d91843bee67c9958407fb (diff) |
radio: use pipewiresrc instead of alsasrc on kingfisherkoi_11.0.5koi_11.0.4koi_11.0.3koi_11.0.2koi/11.0.5koi/11.0.4koi/11.0.3koi/11.0.211.0.511.0.411.0.311.0.2koi
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
Diffstat (limited to 'binding/radio_impl_kingfisher.c')
-rw-r--r-- | binding/radio_impl_kingfisher.c | 4 |
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; |