X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=plugins%2Fradio%2Fradio-rtlsdr.c;h=e5a609e38f139544b9f8926530394fbed0e1613f;hb=3bce4a6a8648c91b6ddea478116b3b0679ef4648;hp=e90bda08f75b09582921c45f778e08123751d5d8;hpb=07fb99ec63d034983b768e8b8bd3d2b30ae37f6f;p=src%2Fapp-framework-binder.git diff --git a/plugins/radio/radio-rtlsdr.c b/plugins/radio/radio-rtlsdr.c index e90bda08..e5a609e3 100644 --- a/plugins/radio/radio-rtlsdr.c +++ b/plugins/radio/radio-rtlsdr.c @@ -19,6 +19,8 @@ #include "radio-api.h" #include "radio-rtlsdr.h" +static audioCtxHandleT *actx = NULL; + /* ------------- RADIO RTLSDR IMPLEMENTATION ---------------- */ /* --- PUBLIC FUNCTIONS --- */ @@ -46,6 +48,13 @@ PUBLIC unsigned char _radio_on (unsigned int num, radioCtxHandleT *ctx) { dev_ctx[num]->output = NULL; _radio_dev_init(dev_ctx[num], num); + actx = malloc (sizeof(audioCtxHandleT)); + actx->idx = -1; + actx->volume = 25; + actx->channels = 2; + actx->mute = 0; + _alsa_init ("default", actx); + return 1; } @@ -58,7 +67,11 @@ PUBLIC void _radio_off (unsigned int num) { _radio_dev_free(dev_ctx[num]); free(dev_ctx[num]); } + /* free(dev_ctx); */ + + _alsa_free ("default"); + free (actx); } PUBLIC void _radio_set_mode (unsigned int num, Mode mode) { @@ -398,8 +411,8 @@ STATIC void* _output_thread_fn (void *ctx) { while (dev_ctx->should_run) { pthread_wait(&output->ok, &output->ok_m); pthread_rwlock_rdlock(&output->lck); - //if (!dev_ctx->mute) - // mRadio->PlayAlsa((void*)&output->buf, output->buf_len); + if (!dev_ctx->mute) + _alsa_play(actx->idx, (void*)&output->buf, output->buf_len); pthread_rwlock_unlock(&output->lck); }