mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
rk27xx: implement radio support
Change-Id: I59d3905e9b2a3df8aa235e424c7a6e0eff6d73e9 Reviewed-on: http://gerrit.rockbox.org/427 Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com> Tested-by: Marcin Bukat <marcin.bukat@gmail.com>
This commit is contained in:
parent
f49e750531
commit
a924df8d6d
7 changed files with 136 additions and 4 deletions
52
firmware/target/arm/rk27xx/audio-rk27xx.c
Normal file
52
firmware/target/arm/rk27xx/audio-rk27xx.c
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2013 by Amaury Pouly
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
* KIND, either express or implied.
|
||||
*
|
||||
****************************************************************************/
|
||||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "audiohw.h"
|
||||
#include "audio.h"
|
||||
|
||||
static int input_source = AUDIO_SRC_PLAYBACK;
|
||||
static unsigned input_flags = 0;
|
||||
static int output_source = AUDIO_SRC_PLAYBACK;
|
||||
|
||||
static void select_audio_path(void)
|
||||
{
|
||||
if(input_source == AUDIO_SRC_PLAYBACK)
|
||||
audiohw_set_monitor(false);
|
||||
else
|
||||
audiohw_set_monitor(true);
|
||||
}
|
||||
|
||||
void audio_input_mux(int source, unsigned flags)
|
||||
{
|
||||
(void) source;
|
||||
(void) flags;
|
||||
input_source = source;
|
||||
input_flags = flags;
|
||||
select_audio_path();
|
||||
}
|
||||
|
||||
void audio_set_output_source(int source)
|
||||
{
|
||||
(void) source;
|
||||
output_source = source;
|
||||
select_audio_path();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue