gui/audio_setup.cpp: add 'heavy' srs algo on apollo

Origin commit data
------------------
Commit: 34a87975a0
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-05-15 (Wed, 15 May 2013)
This commit is contained in:
[CST] Focus
2013-05-15 09:29:29 +04:00
parent db22e7e291
commit 53ba73f37a
4 changed files with 11 additions and 1 deletions

View File

@@ -87,11 +87,18 @@ const CMenuOptionChooser::keyval AUDIOMENU_ANALOGOUT_OPTIONS[AUDIOMENU_ANALOGOUT
{ 2, LOCALE_AUDIOMENU_MONORIGHT }
};
#ifdef BOXMODEL_APOLLO
#define AUDIOMENU_SRS_OPTION_COUNT 3
#else
#define AUDIOMENU_SRS_OPTION_COUNT 2
#endif
const CMenuOptionChooser::keyval AUDIOMENU_SRS_OPTIONS[AUDIOMENU_SRS_OPTION_COUNT] =
{
{ 0 , LOCALE_AUDIO_SRS_ALGO_LIGHT },
{ 1 , LOCALE_AUDIO_SRS_ALGO_NORMAL }
{ 1 , LOCALE_AUDIO_SRS_ALGO_NORMAL },
#ifdef BOXMODEL_APOLLO
{ 2 , LOCALE_AUDIO_SRS_ALGO_HEAVY }
#endif
};
#define AUDIOMENU_AVSYNC_OPTION_COUNT 3