forked from len0rd/rockbox
Oooops! Players need the set_chanconf() function too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2254 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
75d77155dc
commit
331fcf628a
1 changed files with 5 additions and 5 deletions
|
|
@ -182,11 +182,6 @@ static Menu bass_boost(void)
|
||||||
return MENU_OK;
|
return MENU_OK;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void set_chanconf(int val)
|
|
||||||
{
|
|
||||||
mpeg_sound_set(SOUND_CHANNELS, val);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void set_avc(int val)
|
static void set_avc(int val)
|
||||||
{
|
{
|
||||||
mpeg_sound_set(SOUND_AVC, val);
|
mpeg_sound_set(SOUND_AVC, val);
|
||||||
|
|
@ -200,6 +195,11 @@ static Menu avc(void)
|
||||||
}
|
}
|
||||||
#endif /* ARCHOS_RECORDER */
|
#endif /* ARCHOS_RECORDER */
|
||||||
|
|
||||||
|
static void set_chanconf(int val)
|
||||||
|
{
|
||||||
|
mpeg_sound_set(SOUND_CHANNELS, val);
|
||||||
|
}
|
||||||
|
|
||||||
static Menu chanconf(void)
|
static Menu chanconf(void)
|
||||||
{
|
{
|
||||||
char *names[] = {"Stereo", "Mono", "Mono Left", "Mono Right" };
|
char *names[] = {"Stereo", "Mono", "Mono Left", "Mono Right" };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue