2002-05-26 17:03:52 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
|
*
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
|
* KIND, either express or implied.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2002-05-27 07:00:48 +00:00
|
|
|
|
#include "config.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdbool.h>
|
2002-08-20 19:37:00 +00:00
|
|
|
|
#include "kernel.h"
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#include "lcd.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
#include "menu.h"
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#include "button.h"
|
2004-01-05 20:42:51 +00:00
|
|
|
|
#include "mp3_playback.h"
|
2002-06-19 14:58:57 +00:00
|
|
|
|
#include "settings.h"
|
2002-08-13 09:15:21 +00:00
|
|
|
|
#include "status.h"
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#include "screens.h"
|
2002-08-20 19:37:00 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
#include "icons.h"
|
|
|
|
|
#endif
|
2002-09-18 14:08:05 +00:00
|
|
|
|
#include "lang.h"
|
2003-02-15 00:03:23 +00:00
|
|
|
|
#include "sprintf.h"
|
2002-05-26 17:03:52 +00:00
|
|
|
|
|
2002-06-28 12:40:32 +00:00
|
|
|
|
static char *fmt[] =
|
|
|
|
|
{
|
|
|
|
|
"", /* no decimals */
|
|
|
|
|
"%d.%d %s ", /* 1 decimal */
|
|
|
|
|
"%d.%02d %s " /* 2 decimals */
|
|
|
|
|
};
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool set_sound(char* string,
|
2002-06-28 11:48:53 +00:00
|
|
|
|
int* variable,
|
|
|
|
|
int setting)
|
|
|
|
|
{
|
|
|
|
|
bool done = false;
|
2002-08-20 20:30:32 +00:00
|
|
|
|
bool changed = true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
int min, max;
|
|
|
|
|
int val;
|
2002-06-28 12:40:32 +00:00
|
|
|
|
int numdec;
|
|
|
|
|
int integer;
|
|
|
|
|
int dec;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
char* unit;
|
|
|
|
|
char str[32];
|
|
|
|
|
|
|
|
|
|
unit = mpeg_sound_unit(setting);
|
2002-06-28 12:40:32 +00:00
|
|
|
|
numdec = mpeg_sound_numdecimals(setting);
|
2002-06-28 11:48:53 +00:00
|
|
|
|
min = mpeg_sound_min(setting);
|
|
|
|
|
max = mpeg_sound_max(setting);
|
|
|
|
|
|
2002-08-20 19:37:00 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
if(global_settings.statusbar)
|
|
|
|
|
lcd_setmargins(0, STATUSBAR_HEIGHT);
|
|
|
|
|
else
|
|
|
|
|
lcd_setmargins(0, 0);
|
|
|
|
|
#endif
|
2002-06-28 11:48:53 +00:00
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_puts_scroll(0,0,string);
|
|
|
|
|
|
|
|
|
|
while (!done) {
|
2002-08-20 19:37:00 +00:00
|
|
|
|
if (changed) {
|
|
|
|
|
val = mpeg_val2phys(setting, *variable);
|
|
|
|
|
if(numdec)
|
|
|
|
|
{
|
|
|
|
|
integer = val / (10 * numdec);
|
|
|
|
|
dec = val % (10 * numdec);
|
|
|
|
|
snprintf(str,sizeof str, fmt[numdec], integer, dec, unit);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
snprintf(str,sizeof str,"%d %s ", val, unit);
|
|
|
|
|
}
|
2002-06-28 12:40:32 +00:00
|
|
|
|
}
|
2002-06-28 11:48:53 +00:00
|
|
|
|
lcd_puts(0,1,str);
|
2003-04-23 11:26:25 +00:00
|
|
|
|
status_draw(true);
|
2002-08-20 19:37:00 +00:00
|
|
|
|
lcd_update();
|
2002-06-28 11:48:53 +00:00
|
|
|
|
|
2002-08-20 19:37:00 +00:00
|
|
|
|
changed = false;
|
|
|
|
|
switch( button_get_w_tmo(HZ/2) ) {
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
case BUTTON_UP:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_UP | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#else
|
|
|
|
|
case BUTTON_RIGHT:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_RIGHT | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
(*variable)++;
|
|
|
|
|
if(*variable > max )
|
|
|
|
|
*variable = max;
|
2002-08-20 19:37:00 +00:00
|
|
|
|
changed = true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
case BUTTON_DOWN:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_DOWN | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#else
|
|
|
|
|
case BUTTON_LEFT:
|
2002-07-27 22:45:29 +00:00
|
|
|
|
case BUTTON_LEFT | BUTTON_REPEAT:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
(*variable)--;
|
|
|
|
|
if(*variable < min )
|
|
|
|
|
*variable = min;
|
2002-08-20 19:37:00 +00:00
|
|
|
|
changed = true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
case BUTTON_LEFT:
|
|
|
|
|
#else
|
|
|
|
|
case BUTTON_STOP:
|
|
|
|
|
case BUTTON_MENU:
|
2003-08-28 06:21:03 +00:00
|
|
|
|
case BUTTON_PLAY:
|
2002-06-28 11:48:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
done = true;
|
|
|
|
|
break;
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
|
|
|
|
case SYS_USB_CONNECTED:
|
|
|
|
|
usb_screen();
|
|
|
|
|
return true;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
}
|
2002-08-20 19:37:00 +00:00
|
|
|
|
if (changed) {
|
|
|
|
|
mpeg_sound_set(setting, *variable);
|
2002-08-14 21:30:06 +00:00
|
|
|
|
#ifdef HAVE_MAS3507D
|
2002-08-20 19:37:00 +00:00
|
|
|
|
if(setting == SOUND_BALANCE)
|
|
|
|
|
mpeg_sound_set(SOUND_VOLUME, global_settings.volume);
|
2002-08-14 21:30:06 +00:00
|
|
|
|
#endif
|
2002-08-20 19:37:00 +00:00
|
|
|
|
}
|
2002-06-28 11:48:53 +00:00
|
|
|
|
}
|
|
|
|
|
lcd_stop_scroll();
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return false;
|
2002-06-28 11:48:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool volume(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_VOLUME), &global_settings.volume, SOUND_VOLUME);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool balance(void)
|
2002-08-14 21:30:06 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_BALANCE), &global_settings.balance,
|
|
|
|
|
SOUND_BALANCE);
|
2002-08-14 21:30:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool bass(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_BASS), &global_settings.bass, SOUND_BASS);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool treble(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_TREBLE), &global_settings.treble, SOUND_TREBLE);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-08 20:44:25 +00:00
|
|
|
|
#ifdef HAVE_MAS3587F
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool loudness(void)
|
2002-07-22 16:39:17 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_LOUDNESS), &global_settings.loudness,
|
|
|
|
|
SOUND_LOUDNESS);
|
2002-07-22 16:39:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool bass_boost(void)
|
2002-07-22 16:39:17 +00:00
|
|
|
|
{
|
2002-09-24 17:22:12 +00:00
|
|
|
|
return set_sound(str(LANG_BBOOST), &global_settings.bass_boost,
|
|
|
|
|
SOUND_SUPERBASS);
|
2002-07-22 16:39:17 +00:00
|
|
|
|
};
|
2002-07-25 15:55:22 +00:00
|
|
|
|
|
2002-09-10 05:31:12 +00:00
|
|
|
|
static void set_avc(int val)
|
|
|
|
|
{
|
|
|
|
|
mpeg_sound_set(SOUND_AVC, val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool avc(void)
|
2002-07-25 15:55:22 +00:00
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ STR(LANG_OFF) },
|
|
|
|
|
{ "2s", -1 },
|
|
|
|
|
{ "4s", -1 },
|
|
|
|
|
{ "8s", -1 }
|
|
|
|
|
};
|
2003-06-05 11:11:10 +00:00
|
|
|
|
return set_option(str(LANG_DECAY), &global_settings.avc, INT,
|
2002-09-24 17:22:12 +00:00
|
|
|
|
names, 4, set_avc);
|
2002-07-25 15:55:22 +00:00
|
|
|
|
}
|
2002-11-10 23:18:33 +00:00
|
|
|
|
|
|
|
|
|
static bool recsource(void)
|
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ STR(LANG_RECORDING_SRC_MIC) },
|
|
|
|
|
{ STR(LANG_RECORDING_SRC_LINE) },
|
|
|
|
|
{ STR(LANG_RECORDING_SRC_DIGITAL) }
|
|
|
|
|
};
|
2002-11-10 23:18:33 +00:00
|
|
|
|
return set_option(str(LANG_RECORDING_SOURCE),
|
2003-06-05 11:11:10 +00:00
|
|
|
|
&global_settings.rec_source, INT,
|
2002-11-10 23:18:33 +00:00
|
|
|
|
names, 3, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool recfrequency(void)
|
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ "44.1kHz", -1 },
|
|
|
|
|
{ "48kHz", -1 },
|
|
|
|
|
{ "32kHz", -1 },
|
|
|
|
|
{ "22.05kHz", -1 },
|
|
|
|
|
{ "24kHz", -1 },
|
|
|
|
|
{ "16kHz", -1 }
|
|
|
|
|
};
|
2002-11-10 23:18:33 +00:00
|
|
|
|
return set_option(str(LANG_RECORDING_FREQUENCY),
|
2003-06-05 11:11:10 +00:00
|
|
|
|
&global_settings.rec_frequency, INT,
|
2002-11-10 23:18:33 +00:00
|
|
|
|
names, 6, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool recchannels(void)
|
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ STR(LANG_CHANNEL_STEREO) },
|
|
|
|
|
{ STR(LANG_CHANNEL_MONO) }
|
|
|
|
|
};
|
2002-11-10 23:18:33 +00:00
|
|
|
|
return set_option(str(LANG_RECORDING_CHANNELS),
|
2003-06-05 11:11:10 +00:00
|
|
|
|
&global_settings.rec_channels, INT,
|
2002-11-10 23:18:33 +00:00
|
|
|
|
names, 2, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool recquality(void)
|
|
|
|
|
{
|
|
|
|
|
return set_int(str(LANG_RECORDING_QUALITY), "",
|
|
|
|
|
&global_settings.rec_quality,
|
|
|
|
|
NULL, 1, 0, 7 );
|
|
|
|
|
}
|
2003-04-20 22:00:30 +00:00
|
|
|
|
|
|
|
|
|
static bool receditable(void)
|
|
|
|
|
{
|
|
|
|
|
return set_bool(str(LANG_RECORDING_EDITABLE),
|
|
|
|
|
&global_settings.rec_editable);
|
|
|
|
|
}
|
2003-06-04 13:48:50 +00:00
|
|
|
|
|
|
|
|
|
static bool rectimesplit(void)
|
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ STR(LANG_OFF) },
|
|
|
|
|
{ "00:05" , -1 },
|
|
|
|
|
{ "00:10" , -1 },
|
|
|
|
|
{ "00:15" , -1 },
|
|
|
|
|
{ "00:30" , -1 },
|
|
|
|
|
{ "01:00" , -1 },
|
|
|
|
|
{ "02:00" , -1 },
|
|
|
|
|
{ "04:00" , -1 },
|
|
|
|
|
{ "06:00" , -1 },
|
|
|
|
|
{ "08:00" , -1 },
|
|
|
|
|
{ "10:00" , -1 },
|
|
|
|
|
{ "12:00" , -1 },
|
|
|
|
|
{ "18:00" , -1 },
|
|
|
|
|
{ "24:00" , -1 }
|
2003-06-10 19:24:51 +00:00
|
|
|
|
};
|
2003-06-04 13:48:50 +00:00
|
|
|
|
return set_option(str(LANG_RECORD_TIMESPLIT),
|
2003-06-05 11:11:10 +00:00
|
|
|
|
&global_settings.rec_timesplit, INT,
|
2003-06-10 19:24:51 +00:00
|
|
|
|
names, 14, NULL );
|
2003-06-04 13:48:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-12-31 03:13:29 +00:00
|
|
|
|
static bool recprerecord(void)
|
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ STR(LANG_OFF) },
|
|
|
|
|
{ "1s", -1 },
|
|
|
|
|
{ "2s", -1 },
|
|
|
|
|
{ "3s", -1 },
|
|
|
|
|
{ "4s", -1 },
|
|
|
|
|
{ "5s", -1 },
|
|
|
|
|
{ "6s", -1 },
|
|
|
|
|
{ "7s", -1 },
|
|
|
|
|
{ "8s", -1 },
|
|
|
|
|
{ "9s", -1 },
|
|
|
|
|
{ "10s", -1 },
|
|
|
|
|
{ "11s", -1 },
|
|
|
|
|
{ "12s", -1 },
|
|
|
|
|
{ "13s", -1 },
|
|
|
|
|
{ "14s", -1 },
|
|
|
|
|
{ "15s", -1 },
|
|
|
|
|
{ "16s", -1 },
|
|
|
|
|
{ "17s", -1 },
|
|
|
|
|
{ "18s", -1 },
|
|
|
|
|
{ "19s", -1 },
|
|
|
|
|
{ "10s", -1 },
|
|
|
|
|
{ "21s", -1 },
|
|
|
|
|
{ "22s", -1 },
|
|
|
|
|
{ "23s", -1 },
|
|
|
|
|
{ "24s", -1 },
|
|
|
|
|
{ "25s", -1 },
|
|
|
|
|
{ "26s", -1 },
|
|
|
|
|
{ "27s", -1 },
|
|
|
|
|
{ "28s", -1 },
|
|
|
|
|
{ "29s", -1 },
|
|
|
|
|
{ "30s", -1 }
|
2003-12-31 03:13:29 +00:00
|
|
|
|
};
|
|
|
|
|
return set_option(str(LANG_RECORD_PRERECORD_TIME),
|
|
|
|
|
&global_settings.rec_prerecord_time, INT,
|
|
|
|
|
names, 31, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-21 14:58:40 +00:00
|
|
|
|
static bool recdirectory(void)
|
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ rec_base_directory, -1 },
|
|
|
|
|
{ STR(LANG_RECORD_CURRENT_DIR) }
|
2004-01-21 14:58:40 +00:00
|
|
|
|
};
|
|
|
|
|
return set_option(str(LANG_RECORD_DIRECTORY),
|
|
|
|
|
&global_settings.rec_directory, INT,
|
|
|
|
|
names, 2, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-10 23:18:33 +00:00
|
|
|
|
#endif /* HAVE_MAS3587F */
|
2002-07-22 16:39:17 +00:00
|
|
|
|
|
2002-09-10 06:24:46 +00:00
|
|
|
|
static void set_chanconf(int val)
|
|
|
|
|
{
|
|
|
|
|
mpeg_sound_set(SOUND_CHANNELS, val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
static bool chanconf(void)
|
2002-09-09 15:13:33 +00:00
|
|
|
|
{
|
2004-03-15 08:27:51 +00:00
|
|
|
|
struct opt_items names[] = {
|
|
|
|
|
{ STR(LANG_CHANNEL_STEREO) },
|
2003-02-27 15:02:20 +00:00
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2004-03-15 08:27:51 +00:00
|
|
|
|
{ STR(LANG_CHANNEL_STEREO_NARROW_PLAYER) },
|
2003-02-27 15:02:20 +00:00
|
|
|
|
#else
|
2004-03-15 08:27:51 +00:00
|
|
|
|
{ STR(LANG_CHANNEL_STEREO_NARROW_RECORDER) },
|
2003-02-27 15:02:20 +00:00
|
|
|
|
#endif
|
2004-03-15 08:27:51 +00:00
|
|
|
|
{ STR(LANG_CHANNEL_MONO) },
|
|
|
|
|
{ STR(LANG_CHANNEL_LEFT) },
|
|
|
|
|
{ STR(LANG_CHANNEL_RIGHT) },
|
|
|
|
|
{ STR(LANG_CHANNEL_KARAOKE) },
|
|
|
|
|
{ STR(LANG_CHANNEL_STEREO_WIDE) }
|
2003-06-05 11:11:10 +00:00
|
|
|
|
};
|
|
|
|
|
return set_option(str(LANG_CHANNEL), &global_settings.channel_config, INT,
|
2003-02-27 15:02:20 +00:00
|
|
|
|
names, 7, set_chanconf );
|
2002-09-09 15:13:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool sound_menu(void)
|
2002-05-26 17:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
int m;
|
2002-09-24 17:22:12 +00:00
|
|
|
|
bool result;
|
2004-03-16 13:44:56 +00:00
|
|
|
|
struct menu_item items[] = {
|
2004-03-14 21:33:53 +00:00
|
|
|
|
{ STR(LANG_VOLUME), volume },
|
|
|
|
|
{ STR(LANG_BASS), bass },
|
|
|
|
|
{ STR(LANG_TREBLE), treble },
|
|
|
|
|
{ STR(LANG_BALANCE), balance },
|
|
|
|
|
{ STR(LANG_CHANNEL_MENU), chanconf },
|
2002-08-08 20:44:25 +00:00
|
|
|
|
#ifdef HAVE_MAS3587F
|
2004-03-14 21:33:53 +00:00
|
|
|
|
{ STR(LANG_LOUDNESS), loudness },
|
|
|
|
|
{ STR(LANG_BBOOST), bass_boost },
|
|
|
|
|
{ STR(LANG_AUTOVOL), avc }
|
2002-07-22 16:39:17 +00:00
|
|
|
|
#endif
|
2002-05-26 17:03:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-03-16 13:44:56 +00:00
|
|
|
|
m=menu_init( items, sizeof(items) / sizeof(*items), NULL,
|
|
|
|
|
NULL, NULL, NULL);
|
2002-08-23 12:32:52 +00:00
|
|
|
|
result = menu_run(m);
|
2002-05-26 17:03:52 +00:00
|
|
|
|
menu_exit(m);
|
2002-08-23 12:32:52 +00:00
|
|
|
|
|
|
|
|
|
return result;
|
2002-05-26 17:03:52 +00:00
|
|
|
|
}
|
2002-11-10 23:18:33 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_MAS3587F
|
2003-11-20 00:33:43 +00:00
|
|
|
|
bool recording_menu(bool no_source)
|
2002-11-10 23:18:33 +00:00
|
|
|
|
{
|
|
|
|
|
int m;
|
2003-11-20 00:33:43 +00:00
|
|
|
|
int i = 0;
|
2004-03-16 13:44:56 +00:00
|
|
|
|
struct menu_item items[8];
|
2002-11-10 23:18:33 +00:00
|
|
|
|
bool result;
|
2003-11-20 00:33:43 +00:00
|
|
|
|
|
2004-03-16 13:44:56 +00:00
|
|
|
|
items[i].desc = str(LANG_RECORDING_QUALITY);
|
|
|
|
|
items[i].voice_id = LANG_RECORDING_QUALITY;
|
|
|
|
|
items[i++].function = recquality;
|
|
|
|
|
items[i].desc = str(LANG_RECORDING_FREQUENCY);
|
|
|
|
|
items[i].voice_id = LANG_RECORDING_FREQUENCY;
|
|
|
|
|
items[i++].function = recfrequency;
|
2003-11-20 00:33:43 +00:00
|
|
|
|
if(!no_source) {
|
2004-03-16 13:44:56 +00:00
|
|
|
|
items[i].desc = str(LANG_RECORDING_SOURCE);
|
|
|
|
|
items[i].voice_id = LANG_RECORDING_SOURCE;
|
|
|
|
|
items[i++].function = recsource;
|
2003-11-20 00:33:43 +00:00
|
|
|
|
}
|
2004-03-16 13:44:56 +00:00
|
|
|
|
items[i].desc = str(LANG_RECORDING_CHANNELS);
|
|
|
|
|
items[i].voice_id = LANG_RECORDING_CHANNELS;
|
|
|
|
|
items[i++].function = recchannels;
|
|
|
|
|
items[i].desc = str(LANG_RECORDING_EDITABLE);
|
|
|
|
|
items[i].voice_id = LANG_RECORDING_EDITABLE;
|
|
|
|
|
items[i++].function = receditable;
|
|
|
|
|
items[i].desc = str(LANG_RECORD_TIMESPLIT);
|
|
|
|
|
items[i].voice_id = LANG_RECORD_TIMESPLIT;
|
|
|
|
|
items[i++].function = rectimesplit;
|
|
|
|
|
items[i].desc = str(LANG_RECORD_PRERECORD_TIME);
|
|
|
|
|
items[i].voice_id = LANG_RECORD_PRERECORD_TIME;
|
|
|
|
|
items[i++].function = recprerecord;
|
|
|
|
|
items[i].desc = str(LANG_RECORD_DIRECTORY);
|
|
|
|
|
items[i].voice_id = LANG_RECORD_DIRECTORY;
|
|
|
|
|
items[i++].function = recdirectory;
|
|
|
|
|
|
|
|
|
|
m=menu_init( items, i, NULL, NULL, NULL, NULL);
|
2002-11-10 23:18:33 +00:00
|
|
|
|
result = menu_run(m);
|
|
|
|
|
menu_exit(m);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
#endif
|