2002-11-10 16:42:31 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
2003-09-20 18:02:05 +00:00
|
|
|
#include <stdlib.h>
|
2002-11-10 16:42:31 +00:00
|
|
|
|
|
|
|
#include "system.h"
|
2006-08-28 22:38:41 +00:00
|
|
|
#include "power.h"
|
2002-11-10 16:42:31 +00:00
|
|
|
#include "lcd.h"
|
2004-06-22 10:52:39 +00:00
|
|
|
#include "led.h"
|
2002-11-10 16:42:31 +00:00
|
|
|
#include "mpeg.h"
|
2005-04-04 12:06:29 +00:00
|
|
|
#include "audio.h"
|
2005-11-12 04:00:56 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2006-11-06 18:07:30 +00:00
|
|
|
#include "thread.h"
|
2006-08-28 22:38:41 +00:00
|
|
|
#include "playback.h"
|
2006-11-06 18:07:30 +00:00
|
|
|
#include "enc_config.h"
|
2006-11-13 23:21:54 +00:00
|
|
|
#if defined(HAVE_SPDIF_IN) || defined(HAVE_SPDIF_OUT)
|
|
|
|
#include "spdif.h"
|
2005-11-12 04:00:56 +00:00
|
|
|
#endif
|
2006-11-13 23:21:54 +00:00
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
2006-08-28 22:38:41 +00:00
|
|
|
#include "recording.h"
|
2004-01-05 20:42:51 +00:00
|
|
|
#include "mp3_playback.h"
|
2002-11-19 21:07:44 +00:00
|
|
|
#include "mas.h"
|
2002-11-10 16:42:31 +00:00
|
|
|
#include "button.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "lang.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "icons.h"
|
2006-03-25 13:35:31 +00:00
|
|
|
#include "icon.h"
|
2002-11-10 16:42:31 +00:00
|
|
|
#include "screens.h"
|
|
|
|
#include "peakmeter.h"
|
2005-11-20 01:02:14 +00:00
|
|
|
#include "statusbar.h"
|
2002-11-10 16:42:31 +00:00
|
|
|
#include "menu.h"
|
2002-11-10 23:18:33 +00:00
|
|
|
#include "sound_menu.h"
|
2002-11-20 00:02:52 +00:00
|
|
|
#include "timefuncs.h"
|
|
|
|
#include "debug.h"
|
2003-03-10 12:19:49 +00:00
|
|
|
#include "misc.h"
|
2004-01-21 14:58:40 +00:00
|
|
|
#include "tree.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "errno.h"
|
2004-03-19 22:15:53 +00:00
|
|
|
#include "talk.h"
|
2004-10-17 10:00:46 +00:00
|
|
|
#include "atoi.h"
|
2005-04-01 13:41:03 +00:00
|
|
|
#include "sound.h"
|
2005-04-04 09:12:12 +00:00
|
|
|
#include "ata.h"
|
2005-11-16 15:12:15 +00:00
|
|
|
#include "splash.h"
|
2006-03-25 13:35:31 +00:00
|
|
|
#include "screen_access.h"
|
2006-08-20 21:33:40 +00:00
|
|
|
#include "action.h"
|
2006-08-28 22:38:41 +00:00
|
|
|
#include "radio.h"
|
2004-09-29 19:51:41 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2007-07-11 05:41:23 +00:00
|
|
|
/* This array holds the record timer interval lengths, in seconds */
|
|
|
|
static const unsigned long rec_timer_seconds[] =
|
|
|
|
{
|
|
|
|
0, /* 0 means OFF */
|
|
|
|
5*60, /* 00:05 */
|
|
|
|
10*60, /* 00:10 */
|
|
|
|
15*60, /* 00:15 */
|
|
|
|
30*60, /* 00:30 */
|
|
|
|
60*60, /* 01:00 */
|
|
|
|
74*60, /* 74:00 */
|
|
|
|
80*60, /* 80:00 */
|
|
|
|
2*60*60, /* 02:00 */
|
|
|
|
4*60*60, /* 04:00 */
|
|
|
|
6*60*60, /* 06:00 */
|
|
|
|
8*60*60, /* 08:00 */
|
|
|
|
10L*60*60, /* 10:00 */
|
|
|
|
12L*60*60, /* 12:00 */
|
|
|
|
18L*60*60, /* 18:00 */
|
|
|
|
24L*60*60 /* 24:00 */
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned int rec_timesplit_seconds(void)
|
|
|
|
{
|
|
|
|
return rec_timer_seconds[global_settings.rec_timesplit];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This array holds the record size interval lengths, in bytes */
|
|
|
|
static const unsigned long rec_size_bytes[] =
|
|
|
|
{
|
|
|
|
0, /* 0 means OFF */
|
|
|
|
5*1024*1024, /* 5MB */
|
|
|
|
10*1024*1024, /* 10MB */
|
|
|
|
15*1024*1024, /* 15MB */
|
|
|
|
32*1024*1024, /* 32MB */
|
|
|
|
64*1024*1024, /* 64MB */
|
|
|
|
75*1024*1024, /* 75MB */
|
|
|
|
100*1024*1024, /* 100MB */
|
|
|
|
128*1024*1024, /* 128MB */
|
|
|
|
256*1024*1024, /* 256MB */
|
|
|
|
512*1024*1024, /* 512MB */
|
|
|
|
650*1024*1024, /* 650MB */
|
|
|
|
700*1024*1024, /* 700MB */
|
|
|
|
1024*1024*1024, /* 1GB */
|
|
|
|
1536*1024*1024, /* 1.5GB */
|
|
|
|
1792*1024*1024, /* 1.75GB */
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned long rec_sizesplit_bytes(void)
|
|
|
|
{
|
|
|
|
return rec_size_bytes[global_settings.rec_sizesplit];
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Time strings used for the trigger durations.
|
|
|
|
* Keep synchronous to trigger_times in settings_apply_trigger
|
|
|
|
*/
|
2007-10-10 01:41:48 +00:00
|
|
|
const struct opt_items trig_durations[TRIG_DURATION_COUNT] =
|
2007-07-11 05:41:23 +00:00
|
|
|
{
|
2007-10-10 01:41:48 +00:00
|
|
|
#define TS(x) { (unsigned char *)(#x "s"), TALK_ID(x, UNIT_SEC) }
|
|
|
|
#define TM(x) { (unsigned char *)(#x "min"), TALK_ID(x, UNIT_MIN) }
|
|
|
|
TS(0), TS(1), TS(2), TS(5),
|
|
|
|
TS(10), TS(15), TS(20), TS(25), TS(30),
|
|
|
|
TM(1), TM(2), TM(5), TM(10)
|
|
|
|
#undef TS
|
|
|
|
#undef TM
|
2007-07-11 05:41:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void settings_apply_trigger(void)
|
|
|
|
{
|
|
|
|
/* Keep synchronous to trig_durations and trig_durations_conf*/
|
|
|
|
static const long trigger_times[TRIG_DURATION_COUNT] = {
|
|
|
|
0, HZ, 2*HZ, 5*HZ,
|
|
|
|
10*HZ, 15*HZ, 20*HZ, 25*HZ, 30*HZ,
|
|
|
|
60*HZ, 2*60*HZ, 5*60*HZ, 10*60*HZ
|
|
|
|
};
|
2004-09-29 19:51:41 +00:00
|
|
|
|
2007-07-11 05:41:23 +00:00
|
|
|
peak_meter_define_trigger(
|
|
|
|
global_settings.rec_start_thres,
|
|
|
|
trigger_times[global_settings.rec_start_duration],
|
|
|
|
MIN(trigger_times[global_settings.rec_start_duration] / 2, 2*HZ),
|
|
|
|
global_settings.rec_stop_thres,
|
|
|
|
trigger_times[global_settings.rec_stop_postrec],
|
|
|
|
trigger_times[global_settings.rec_stop_gap]
|
|
|
|
);
|
|
|
|
}
|
2007-06-22 09:34:57 +00:00
|
|
|
/* recording screen status flags */
|
|
|
|
enum rec_status_flags
|
|
|
|
{
|
|
|
|
RCSTAT_IN_RECSCREEN = 0x00000001,
|
|
|
|
RCSTAT_BEEN_IN_USB_MODE = 0x00000002,
|
|
|
|
RCSTAT_CREATED_DIRECTORY = 0x00000004,
|
|
|
|
RCSTAT_HAVE_RECORDED = 0x00000008,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int rec_status = 0;
|
|
|
|
|
2007-09-22 09:05:06 +00:00
|
|
|
bool in_recording_screen(void)
|
2007-02-08 10:36:49 +00:00
|
|
|
{
|
2007-06-22 09:34:57 +00:00
|
|
|
return (rec_status & RCSTAT_IN_RECSCREEN) != 0;
|
2007-02-08 10:36:49 +00:00
|
|
|
}
|
|
|
|
|
2006-04-22 23:51:06 +00:00
|
|
|
#define PM_HEIGHT ((LCD_HEIGHT >= 72) ? 2 : 1)
|
2006-03-25 13:35:31 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
2006-12-25 14:01:47 +00:00
|
|
|
static bool f2_rec_screen(void);
|
|
|
|
static bool f3_rec_screen(void);
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-06-30 21:24:20 +00:00
|
|
|
#define MAX_FILE_SIZE 0x7F800000 /* 2 GB - 4 MB */
|
2005-06-04 12:14:46 +00:00
|
|
|
|
2007-11-25 21:47:16 +00:00
|
|
|
#ifndef HAVE_REMOTE_LCD
|
|
|
|
static const int screen_update = NB_SCREENS;
|
|
|
|
#else
|
2006-12-25 14:01:47 +00:00
|
|
|
static int screen_update = NB_SCREENS;
|
|
|
|
static bool remote_display_on = true;
|
2007-02-06 20:30:58 +00:00
|
|
|
#endif
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
/** File name creation **/
|
2007-06-22 09:34:57 +00:00
|
|
|
#if CONFIG_RTC == 0
|
2006-11-06 18:07:30 +00:00
|
|
|
/* current file number to assist in creating unique numbered filenames
|
|
|
|
without actually having to create the file on disk */
|
|
|
|
static int file_number = -1;
|
2007-06-22 09:34:57 +00:00
|
|
|
#endif /* CONFIG_RTC */
|
|
|
|
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2006-11-06 18:07:30 +00:00
|
|
|
|
|
|
|
#define REC_FILE_ENDING(rec_format) \
|
|
|
|
(audio_formats[rec_format_afmt[rec_format]].ext_list)
|
|
|
|
|
|
|
|
#else /* CONFIG_CODEC != SWCODEC */
|
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
/* default record file extension for HWCODEC */
|
2006-11-06 18:07:30 +00:00
|
|
|
#define REC_FILE_ENDING(rec_format) \
|
|
|
|
(audio_formats[AFMT_MPA_L3].ext_list)
|
2006-08-28 22:38:41 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
|
|
|
|
|
|
|
/* path for current file */
|
|
|
|
static char path_buffer[MAX_PATH];
|
|
|
|
|
|
|
|
/** Automatic Gain Control (AGC) **/
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
/* Timing counters:
|
|
|
|
* peak_time is incremented every 0.2s, every 2nd run of record screen loop.
|
|
|
|
* hist_time is incremented every 0.5s, display update.
|
|
|
|
* peak_time is the counter of the peak hold read and agc process,
|
|
|
|
* overflow every 13 years 8-)
|
|
|
|
*/
|
|
|
|
static long peak_time = 0;
|
|
|
|
static long hist_time = 0;
|
|
|
|
|
|
|
|
static short peak_valid_mem[4];
|
|
|
|
#define BAL_MEM_SIZE 24
|
|
|
|
static short balance_mem[BAL_MEM_SIZE];
|
|
|
|
|
|
|
|
/* Automatic Gain Control */
|
|
|
|
#define AGC_MODE_SIZE 5
|
2006-10-01 10:04:40 +00:00
|
|
|
#define AGC_SAFETY_MODE 0
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
static const char* agc_preset_str[] =
|
2006-08-16 23:26:55 +00:00
|
|
|
{ "Off", "S", "L", "D", "M", "V" };
|
|
|
|
/* "Off",
|
|
|
|
"Safety (clip)",
|
|
|
|
"Live (slow)",
|
|
|
|
"DJ-Set (slow)",
|
|
|
|
"Medium",
|
|
|
|
"Voice (fast)" */
|
|
|
|
#define AGC_CLIP 32766
|
|
|
|
#define AGC_PEAK 29883 /* fast gain reduction threshold -0.8dB */
|
|
|
|
#define AGC_HIGH 27254 /* accelerated gain reduction threshold -1.6dB */
|
|
|
|
#define AGC_IMG 823 /* threshold for balance control -32dB */
|
|
|
|
/* autogain high level thresholds (-3dB, -7dB, -4dB, -5dB, -5dB) */
|
2006-12-25 14:01:47 +00:00
|
|
|
static const short agc_th_hi[AGC_MODE_SIZE] =
|
2006-08-16 23:26:55 +00:00
|
|
|
{ 23197, 14637, 21156, 18428, 18426 };
|
|
|
|
/* autogain low level thresholds (-14dB, -11dB, -6dB, -7dB, -8dB) */
|
2006-12-25 14:01:47 +00:00
|
|
|
static const short agc_th_lo[AGC_MODE_SIZE] =
|
2006-08-16 23:26:55 +00:00
|
|
|
{ 6538, 9235, 16422, 14636, 13045 };
|
|
|
|
/* autogain threshold times [1/5s] or [200ms] */
|
2006-12-25 14:01:47 +00:00
|
|
|
static const short agc_tdrop[AGC_MODE_SIZE] =
|
2006-08-16 23:26:55 +00:00
|
|
|
{ 900, 225, 150, 60, 8 };
|
2006-12-25 14:01:47 +00:00
|
|
|
static const short agc_trise[AGC_MODE_SIZE] =
|
2006-08-16 23:26:55 +00:00
|
|
|
{ 9000, 750, 400, 150, 20 };
|
2006-12-25 14:01:47 +00:00
|
|
|
static const short agc_tbal[AGC_MODE_SIZE] =
|
2006-08-16 23:26:55 +00:00
|
|
|
{ 4500, 500, 300, 100, 15 };
|
|
|
|
/* AGC operation */
|
|
|
|
static bool agc_enable = true;
|
|
|
|
static short agc_preset;
|
|
|
|
/* AGC levels */
|
|
|
|
static int agc_left = 0;
|
|
|
|
static int agc_right = 0;
|
|
|
|
/* AGC time since high target volume was exceeded */
|
|
|
|
static short agc_droptime = 0;
|
|
|
|
/* AGC time since volume fallen below low target */
|
|
|
|
static short agc_risetime = 0;
|
|
|
|
/* AGC balance time exceeding +/- 0.7dB */
|
|
|
|
static short agc_baltime = 0;
|
|
|
|
/* AGC maximum gain */
|
|
|
|
static short agc_maxgain;
|
|
|
|
#endif /* HAVE_AGC */
|
|
|
|
|
2002-11-10 16:42:31 +00:00
|
|
|
static void set_gain(void)
|
|
|
|
{
|
2006-08-28 22:38:41 +00:00
|
|
|
if(global_settings.rec_source == AUDIO_SRC_MIC)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2006-02-08 13:08:55 +00:00
|
|
|
audio_set_recording_gain(global_settings.rec_mic_gain,
|
|
|
|
0, AUDIO_GAIN_MIC);
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
/* AUDIO_SRC_LINEIN, AUDIO_SRC_FMRADIO, AUDIO_SRC_SPDIF */
|
2005-11-12 04:00:56 +00:00
|
|
|
audio_set_recording_gain(global_settings.rec_left_gain,
|
2006-02-08 13:08:55 +00:00
|
|
|
global_settings.rec_right_gain,
|
|
|
|
AUDIO_GAIN_LINEIN);
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
/* Read peak meter values & calculate balance.
|
|
|
|
* Returns validity of peak values.
|
|
|
|
* Used for automatic gain control and history diagram.
|
|
|
|
*/
|
2006-12-25 14:01:47 +00:00
|
|
|
static bool read_peak_levels(int *peak_l, int *peak_r, int *balance)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
peak_meter_get_peakhold(peak_l, peak_r);
|
|
|
|
peak_valid_mem[peak_time % 3] = *peak_l;
|
|
|
|
if (((peak_valid_mem[0] == peak_valid_mem[1]) &&
|
|
|
|
(peak_valid_mem[1] == peak_valid_mem[2])) &&
|
|
|
|
((*peak_l < 32767)
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|| ata_disk_is_active()
|
|
|
|
#endif
|
|
|
|
))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (*peak_r > *peak_l)
|
2006-09-13 18:21:03 +00:00
|
|
|
balance_mem[peak_time % BAL_MEM_SIZE] = (*peak_l ?
|
|
|
|
MIN((10000 * *peak_r) / *peak_l - 10000, 15118) : 15118);
|
2006-08-16 23:26:55 +00:00
|
|
|
else
|
2006-09-13 18:21:03 +00:00
|
|
|
balance_mem[peak_time % BAL_MEM_SIZE] = (*peak_r ?
|
|
|
|
MAX(10000 - (10000 * *peak_l) / *peak_r, -15118) : -15118);
|
2006-08-16 23:26:55 +00:00
|
|
|
*balance = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < BAL_MEM_SIZE; i++)
|
|
|
|
*balance += balance_mem[i];
|
|
|
|
*balance = *balance / BAL_MEM_SIZE;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* AGC helper function to check if maximum gain is reached */
|
2006-12-25 14:01:47 +00:00
|
|
|
static bool agc_gain_is_max(bool left, bool right)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
/* range -128...+108 [0.5dB] */
|
|
|
|
short gain_current_l;
|
|
|
|
short gain_current_r;
|
|
|
|
|
|
|
|
if (agc_preset == 0)
|
|
|
|
return false;
|
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
switch (global_settings.rec_source)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
HAVE_LINE_REC_(case AUDIO_SRC_LINEIN:)
|
|
|
|
HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO:)
|
2006-08-16 23:26:55 +00:00
|
|
|
gain_current_l = global_settings.rec_left_gain;
|
|
|
|
gain_current_r = global_settings.rec_right_gain;
|
2006-08-28 22:38:41 +00:00
|
|
|
break;
|
2007-05-20 20:26:36 +00:00
|
|
|
case AUDIO_SRC_MIC:
|
2006-08-28 22:38:41 +00:00
|
|
|
default:
|
2006-08-16 23:26:55 +00:00
|
|
|
gain_current_l = global_settings.rec_mic_gain;
|
|
|
|
gain_current_r = global_settings.rec_mic_gain;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ((left && (gain_current_l >= agc_maxgain)) ||
|
|
|
|
(right && (gain_current_r >= agc_maxgain)));
|
|
|
|
}
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
static void change_recording_gain(bool increment, bool left, bool right)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
int factor = (increment ? 1 : -1);
|
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
switch (global_settings.rec_source)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
HAVE_LINE_REC_(case AUDIO_SRC_LINEIN:)
|
|
|
|
HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO:)
|
|
|
|
if (left) global_settings.rec_left_gain += factor;
|
2006-08-16 23:26:55 +00:00
|
|
|
if (right) global_settings.rec_right_gain += factor;
|
2006-08-28 22:38:41 +00:00
|
|
|
break;
|
2007-05-20 20:26:36 +00:00
|
|
|
case AUDIO_SRC_MIC:
|
2006-08-16 23:26:55 +00:00
|
|
|
global_settings.rec_mic_gain += factor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle automatic gain control (AGC).
|
|
|
|
* Change recording gain if peak_x levels are above or below
|
|
|
|
* target volume for specified timeouts.
|
|
|
|
*/
|
2006-12-25 14:01:47 +00:00
|
|
|
static void auto_gain_control(int *peak_l, int *peak_r, int *balance)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
int agc_mono;
|
|
|
|
short agc_mode;
|
|
|
|
bool increment;
|
|
|
|
|
|
|
|
if (*peak_l > agc_left)
|
|
|
|
agc_left = *peak_l;
|
|
|
|
else
|
|
|
|
agc_left -= (agc_left - *peak_l + 3) >> 2;
|
|
|
|
if (*peak_r > agc_right)
|
|
|
|
agc_right = *peak_r;
|
|
|
|
else
|
|
|
|
agc_right -= (agc_right - *peak_r + 3) >> 2;
|
|
|
|
agc_mono = (agc_left + agc_right) / 2;
|
|
|
|
|
|
|
|
agc_mode = abs(agc_preset) - 1;
|
|
|
|
if (agc_mode < 0) {
|
|
|
|
agc_enable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-10-01 10:04:40 +00:00
|
|
|
if (agc_mode != AGC_SAFETY_MODE) {
|
|
|
|
/* Automatic balance control - only if not in safety mode */
|
|
|
|
if ((agc_left > AGC_IMG) && (agc_right > AGC_IMG))
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
2006-10-01 10:04:40 +00:00
|
|
|
if (*balance < -556)
|
|
|
|
{
|
|
|
|
if (*balance > -900)
|
|
|
|
agc_baltime -= !(peak_time % 4); /* 0.47 - 0.75dB */
|
|
|
|
else if (*balance > -4125)
|
|
|
|
agc_baltime--; /* 0.75 - 3.00dB */
|
|
|
|
else if (*balance > -7579)
|
|
|
|
agc_baltime -= 2; /* 3.00 - 4.90dB */
|
|
|
|
else
|
|
|
|
agc_baltime -= !(peak_time % 8); /* 4.90 - inf dB */
|
|
|
|
if (agc_baltime > 0)
|
|
|
|
agc_baltime -= (peak_time % 2);
|
|
|
|
}
|
|
|
|
else if (*balance > 556)
|
|
|
|
{
|
|
|
|
if (*balance < 900)
|
|
|
|
agc_baltime += !(peak_time % 4);
|
|
|
|
else if (*balance < 4125)
|
|
|
|
agc_baltime++;
|
|
|
|
else if (*balance < 7579)
|
|
|
|
agc_baltime += 2;
|
|
|
|
else
|
|
|
|
agc_baltime += !(peak_time % 8);
|
|
|
|
if (agc_baltime < 0)
|
|
|
|
agc_baltime += (peak_time % 2);
|
|
|
|
}
|
2006-08-16 23:26:55 +00:00
|
|
|
|
2006-10-01 10:04:40 +00:00
|
|
|
if ((*balance * agc_baltime) < 0)
|
|
|
|
{
|
|
|
|
if (*balance < 0)
|
|
|
|
agc_baltime -= peak_time % 2;
|
|
|
|
else
|
|
|
|
agc_baltime += peak_time % 2;
|
|
|
|
}
|
2006-08-16 23:26:55 +00:00
|
|
|
|
2006-10-01 10:04:40 +00:00
|
|
|
increment = ((agc_risetime / 2) > agc_droptime);
|
|
|
|
|
|
|
|
if (agc_baltime < -agc_tbal[agc_mode])
|
|
|
|
{
|
|
|
|
if (!increment || !agc_gain_is_max(!increment, increment)) {
|
|
|
|
change_recording_gain(increment, !increment, increment);
|
|
|
|
set_gain();
|
|
|
|
}
|
|
|
|
agc_baltime = 0;
|
|
|
|
}
|
|
|
|
else if (agc_baltime > +agc_tbal[agc_mode])
|
|
|
|
{
|
|
|
|
if (!increment || !agc_gain_is_max(increment, !increment)) {
|
|
|
|
change_recording_gain(increment, increment, !increment);
|
|
|
|
set_gain();
|
|
|
|
}
|
|
|
|
agc_baltime = 0;
|
2006-08-16 23:26:55 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-01 10:04:40 +00:00
|
|
|
else if (!(hist_time % 4))
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
2006-10-01 10:04:40 +00:00
|
|
|
if (agc_baltime < 0)
|
|
|
|
agc_baltime++;
|
|
|
|
else
|
|
|
|
agc_baltime--;
|
2006-08-16 23:26:55 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-01 10:04:40 +00:00
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
/* Automatic gain control */
|
|
|
|
if ((agc_left > agc_th_hi[agc_mode]) || (agc_right > agc_th_hi[agc_mode]))
|
|
|
|
{
|
|
|
|
if ((agc_left > AGC_CLIP) || (agc_right > AGC_CLIP))
|
|
|
|
agc_droptime += agc_tdrop[agc_mode] /
|
|
|
|
(global_settings.rec_agc_cliptime + 1);
|
|
|
|
if (agc_left > AGC_HIGH) {
|
|
|
|
agc_droptime++;
|
|
|
|
agc_risetime=0;
|
|
|
|
if (agc_left > AGC_PEAK)
|
|
|
|
agc_droptime += 2;
|
|
|
|
}
|
|
|
|
if (agc_right > AGC_HIGH) {
|
|
|
|
agc_droptime++;
|
|
|
|
agc_risetime=0;
|
|
|
|
if (agc_right > AGC_PEAK)
|
|
|
|
agc_droptime += 2;
|
|
|
|
}
|
|
|
|
if (agc_mono > agc_th_hi[agc_mode])
|
|
|
|
agc_droptime++;
|
|
|
|
else
|
|
|
|
agc_droptime += !(peak_time % 2);
|
|
|
|
|
|
|
|
if (agc_droptime >= agc_tdrop[agc_mode])
|
|
|
|
{
|
|
|
|
change_recording_gain(false, true, true);
|
|
|
|
agc_droptime = 0;
|
|
|
|
agc_risetime = 0;
|
|
|
|
set_gain();
|
|
|
|
}
|
|
|
|
agc_risetime = MAX(agc_risetime - 1, 0);
|
|
|
|
}
|
|
|
|
else if (agc_mono < agc_th_lo[agc_mode])
|
|
|
|
{
|
|
|
|
if (agc_mono < (agc_th_lo[agc_mode] / 8))
|
|
|
|
agc_risetime += !(peak_time % 5);
|
|
|
|
else if (agc_mono < (agc_th_lo[agc_mode] / 2))
|
|
|
|
agc_risetime += 2;
|
|
|
|
else
|
|
|
|
agc_risetime++;
|
|
|
|
|
|
|
|
if (agc_risetime >= agc_trise[agc_mode]) {
|
2006-10-01 10:04:40 +00:00
|
|
|
if ((agc_mode != AGC_SAFETY_MODE) &&
|
|
|
|
(!agc_gain_is_max(true, true))) {
|
2006-08-16 23:26:55 +00:00
|
|
|
change_recording_gain(true, true, true);
|
|
|
|
set_gain();
|
|
|
|
}
|
|
|
|
agc_risetime = 0;
|
|
|
|
agc_droptime = 0;
|
|
|
|
}
|
|
|
|
agc_droptime = MAX(agc_droptime - 1, 0);
|
|
|
|
}
|
|
|
|
else if (!(peak_time % 6)) /* on target level every 1.2 sec */
|
|
|
|
{
|
|
|
|
agc_risetime = MAX(agc_risetime - 1, 0);
|
|
|
|
agc_droptime = MAX(agc_droptime - 1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_AGC */
|
|
|
|
|
2004-08-01 23:34:44 +00:00
|
|
|
static const char* const fmtstr[] =
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2006-02-08 13:08:55 +00:00
|
|
|
"%c%d %s", /* no decimals */
|
|
|
|
"%c%d.%d %s ", /* 1 decimal */
|
|
|
|
"%c%d.%02d %s " /* 2 decimals */
|
2002-11-10 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
static char *fmt_gain(int snd, int val, char *str, int len)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2006-02-08 13:08:55 +00:00
|
|
|
int i, d, numdec;
|
2004-07-20 22:13:24 +00:00
|
|
|
const char *unit;
|
2006-05-14 23:34:24 +00:00
|
|
|
char sign = ' ';
|
2006-02-08 13:08:55 +00:00
|
|
|
|
|
|
|
val = sound_val2phys(snd, val);
|
|
|
|
if(val < 0)
|
|
|
|
{
|
|
|
|
sign = '-';
|
2006-05-14 23:34:24 +00:00
|
|
|
val = -val;
|
2006-02-08 13:08:55 +00:00
|
|
|
}
|
2005-04-01 13:41:03 +00:00
|
|
|
numdec = sound_numdecimals(snd);
|
|
|
|
unit = sound_unit(snd);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2005-11-13 15:16:27 +00:00
|
|
|
if(numdec)
|
|
|
|
{
|
2006-02-08 13:08:55 +00:00
|
|
|
i = val / (10*numdec);
|
|
|
|
d = val % (10*numdec);
|
|
|
|
snprintf(str, len, fmtstr[numdec], sign, i, d, unit);
|
2005-11-13 15:16:27 +00:00
|
|
|
}
|
|
|
|
else
|
2006-02-08 13:08:55 +00:00
|
|
|
snprintf(str, len, fmtstr[numdec], sign, val, unit);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2002-12-18 14:57:45 +00:00
|
|
|
static int cursor;
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
static void adjust_cursor(void)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2005-11-13 15:16:27 +00:00
|
|
|
int max_cursor;
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2005-11-13 15:16:27 +00:00
|
|
|
if(cursor < 0)
|
2002-11-10 16:42:31 +00:00
|
|
|
cursor = 0;
|
2005-11-13 15:16:27 +00:00
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
switch(global_settings.rec_source)
|
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
case REC_SRC_MIC:
|
2006-08-16 23:26:55 +00:00
|
|
|
if(cursor == 2)
|
|
|
|
cursor = 4;
|
|
|
|
else if(cursor == 3)
|
|
|
|
cursor = 1;
|
2007-05-20 20:26:36 +00:00
|
|
|
HAVE_LINE_REC_(case AUDIO_SRC_LINEIN:)
|
|
|
|
HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO:)
|
2006-08-16 23:26:55 +00:00
|
|
|
max_cursor = 5;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
max_cursor = 0;
|
|
|
|
break;
|
|
|
|
}
|
2007-05-20 20:26:36 +00:00
|
|
|
#else /* !HAVE_AGC */
|
2005-11-13 15:16:27 +00:00
|
|
|
switch(global_settings.rec_source)
|
|
|
|
{
|
2006-08-28 22:38:41 +00:00
|
|
|
case AUDIO_SRC_MIC:
|
2005-11-13 15:16:27 +00:00
|
|
|
max_cursor = 1;
|
|
|
|
break;
|
2007-05-20 20:26:36 +00:00
|
|
|
HAVE_LINE_REC_(case AUDIO_SRC_LINEIN:)
|
|
|
|
HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO:)
|
2005-11-13 15:16:27 +00:00
|
|
|
max_cursor = 3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
max_cursor = 0;
|
|
|
|
break;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
2006-08-16 23:26:55 +00:00
|
|
|
#endif /* HAVE_AGC */
|
2006-02-08 13:08:55 +00:00
|
|
|
|
2005-11-13 15:16:27 +00:00
|
|
|
if(cursor > max_cursor)
|
|
|
|
cursor = max_cursor;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 22:42:52 +00:00
|
|
|
static bool check_dir(const char *folder)
|
2007-07-10 07:41:37 +00:00
|
|
|
{
|
2007-11-21 22:42:52 +00:00
|
|
|
if (strcmp(folder, "/") && !dir_exists(folder))
|
2007-07-10 07:41:37 +00:00
|
|
|
{
|
|
|
|
int rc = mkdir(folder);
|
|
|
|
if(rc < 0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-08-02 18:45:38 +00:00
|
|
|
/* the list below must match enum audio_sources in audio.h */
|
|
|
|
static const char* const prestr[] =
|
|
|
|
{
|
2007-08-03 18:55:00 +00:00
|
|
|
HAVE_MIC_IN_([AUDIO_SRC_MIC] = "R_MIC_",)
|
|
|
|
HAVE_LINE_REC_([AUDIO_SRC_LINEIN] = "R_LINE_",)
|
|
|
|
HAVE_SPDIF_IN_([AUDIO_SRC_SPDIF] = "R_SPDIF_",)
|
|
|
|
HAVE_FMRADIO_REC_([AUDIO_SRC_FMRADIO] = "R_FM_",)
|
2007-08-02 18:45:38 +00:00
|
|
|
};
|
|
|
|
|
2004-01-21 14:58:40 +00:00
|
|
|
char *rec_create_filename(char *buffer)
|
2002-11-20 00:02:52 +00:00
|
|
|
{
|
2006-11-06 18:07:30 +00:00
|
|
|
char ext[16];
|
2007-08-02 18:45:38 +00:00
|
|
|
const char *pref = "R_";
|
2007-08-02 10:40:47 +00:00
|
|
|
|
2007-07-10 07:41:37 +00:00
|
|
|
strcpy(buffer,global_settings.rec_directory);
|
|
|
|
if (!check_dir(buffer))
|
|
|
|
return NULL;
|
2007-08-01 22:04:28 +00:00
|
|
|
|
2007-08-02 18:45:38 +00:00
|
|
|
if((global_settings.rec_source > AUDIO_SRC_PLAYBACK) &&
|
|
|
|
(global_settings.rec_source < AUDIO_NUM_SOURCES))
|
2007-08-01 22:04:28 +00:00
|
|
|
{
|
2007-08-02 18:45:38 +00:00
|
|
|
pref = prestr[global_settings.rec_source];
|
2007-08-01 22:04:28 +00:00
|
|
|
}
|
2007-07-10 07:41:37 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
snprintf(ext, sizeof(ext), ".%s",
|
|
|
|
REC_FILE_ENDING(global_settings.rec_format));
|
2006-09-27 21:36:50 +00:00
|
|
|
|
2007-06-22 09:34:57 +00:00
|
|
|
#if CONFIG_RTC == 0
|
2007-08-01 22:04:28 +00:00
|
|
|
return create_numbered_filename(buffer, buffer, pref, ext, 4,
|
2007-06-22 09:34:57 +00:00
|
|
|
&file_number);
|
|
|
|
#else
|
2006-11-06 18:07:30 +00:00
|
|
|
/* We'll wait at least up to the start of the next second so no duplicate
|
|
|
|
names are created */
|
2007-08-01 22:04:28 +00:00
|
|
|
return create_datetime_filename(buffer, buffer, pref, ext, true);
|
2004-10-17 10:00:46 +00:00
|
|
|
#endif
|
2002-11-20 00:02:52 +00:00
|
|
|
}
|
|
|
|
|
2007-06-22 09:34:57 +00:00
|
|
|
#if CONFIG_RTC == 0
|
|
|
|
/* Hit disk to get a starting filename for the type */
|
2007-09-22 09:05:06 +00:00
|
|
|
static void rec_init_filename(void)
|
2007-06-22 09:34:57 +00:00
|
|
|
{
|
|
|
|
file_number = -1;
|
|
|
|
rec_create_filename(path_buffer);
|
|
|
|
file_number--;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-06-04 12:34:29 +00:00
|
|
|
int rec_create_directory(void)
|
|
|
|
{
|
2007-07-10 07:41:37 +00:00
|
|
|
return check_dir(global_settings.rec_directory)?1:0;
|
2004-06-04 12:34:29 +00:00
|
|
|
}
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
void rec_init_recording_options(struct audio_recording_options *options)
|
|
|
|
{
|
|
|
|
options->rec_source = global_settings.rec_source;
|
|
|
|
options->rec_frequency = global_settings.rec_frequency;
|
|
|
|
options->rec_channels = global_settings.rec_channels;
|
|
|
|
options->rec_prerecord_time = global_settings.rec_prerecord_time;
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
options->rec_source_flags = 0;
|
|
|
|
options->enc_config.rec_format = global_settings.rec_format;
|
|
|
|
global_to_encoder_config(&options->enc_config);
|
|
|
|
#else
|
|
|
|
options->rec_quality = global_settings.rec_quality;
|
|
|
|
options->rec_editable = global_settings.rec_editable;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-06-08 23:42:04 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC && !defined (SIMULATOR)
|
|
|
|
void rec_set_source(int source, unsigned flags)
|
|
|
|
{
|
|
|
|
/* Set audio input source, power up/down devices */
|
|
|
|
audio_set_input_source(source, flags);
|
|
|
|
|
|
|
|
/* Set peakmeters for recording or reset to playback */
|
|
|
|
peak_meter_playback((flags & SRCF_RECORDING) == 0);
|
|
|
|
peak_meter_enabled = true;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC && !defined (SIMULATOR) */
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
void rec_set_recording_options(struct audio_recording_options *options)
|
2006-08-28 22:38:41 +00:00
|
|
|
{
|
|
|
|
#if CONFIG_CODEC != SWCODEC
|
|
|
|
if (global_settings.rec_prerecord_time)
|
2007-10-19 15:43:43 +00:00
|
|
|
{
|
2006-08-28 22:38:41 +00:00
|
|
|
talk_buffer_steal(); /* will use the mp3 buffer */
|
2007-10-19 15:43:43 +00:00
|
|
|
}
|
|
|
|
#else /* == SWCODEC */
|
2006-11-06 18:07:30 +00:00
|
|
|
rec_set_source(options->rec_source,
|
|
|
|
options->rec_source_flags | SRCF_RECORDING);
|
2006-11-13 23:21:54 +00:00
|
|
|
#endif /* CONFIG_CODEC != SWCODEC */
|
2006-08-28 22:38:41 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
audio_set_recording_options(options);
|
2006-08-28 22:38:41 +00:00
|
|
|
}
|
|
|
|
|
2007-08-25 15:53:54 +00:00
|
|
|
void rec_command(enum recording_command cmd)
|
2006-08-28 22:38:41 +00:00
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
switch(cmd)
|
|
|
|
{
|
|
|
|
case RECORDING_CMD_STOP:
|
|
|
|
pm_activate_clipcount(false);
|
|
|
|
audio_stop_recording();
|
|
|
|
break;
|
|
|
|
case RECORDING_CMD_START:
|
|
|
|
/* steal mp3 buffer, create unique filename and start recording */
|
|
|
|
pm_reset_clipcount();
|
|
|
|
pm_activate_clipcount(true);
|
2006-11-06 18:07:30 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2007-08-25 15:53:54 +00:00
|
|
|
talk_buffer_steal(); /* we use the mp3 buffer */
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif
|
2007-08-25 15:53:54 +00:00
|
|
|
audio_record(rec_create_filename(path_buffer));
|
|
|
|
break;
|
|
|
|
case RECORDING_CMD_START_NEWFILE:
|
|
|
|
/* create unique filename and start recording*/
|
|
|
|
pm_reset_clipcount();
|
|
|
|
pm_activate_clipcount(true); /* just to be sure */
|
|
|
|
audio_new_file(rec_create_filename(path_buffer));
|
|
|
|
break;
|
|
|
|
case RECORDING_CMD_PAUSE:
|
|
|
|
pm_activate_clipcount(false);
|
|
|
|
audio_pause_recording();
|
|
|
|
break;
|
|
|
|
case RECORDING_CMD_RESUME:
|
|
|
|
pm_activate_clipcount(true);
|
|
|
|
audio_resume_recording();
|
|
|
|
break;
|
|
|
|
}
|
2006-08-28 22:38:41 +00:00
|
|
|
}
|
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
/* used in trigger_listerner and recording_screen */
|
|
|
|
static unsigned int last_seconds = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback function so that the peak meter code can send an event
|
|
|
|
* to this application. This function can be passed to
|
|
|
|
* peak_meter_set_trigger_listener in order to activate the trigger.
|
|
|
|
*/
|
|
|
|
static void trigger_listener(int trigger_status)
|
|
|
|
{
|
|
|
|
switch (trigger_status)
|
|
|
|
{
|
|
|
|
case TRIG_GO:
|
2007-06-22 09:34:57 +00:00
|
|
|
if(!(audio_status() & AUDIO_STATUS_RECORD))
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_HAVE_RECORDED;
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START);
|
2007-06-22 09:34:57 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2006-08-28 22:38:41 +00:00
|
|
|
/* give control to mpeg thread so that it can start
|
|
|
|
recording */
|
2006-04-30 22:28:45 +00:00
|
|
|
yield(); yield(); yield();
|
2007-06-22 09:34:57 +00:00
|
|
|
#endif
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if we're already recording this is a retrigger */
|
|
|
|
else
|
|
|
|
{
|
2006-11-09 12:27:56 +00:00
|
|
|
if((audio_status() & AUDIO_STATUS_PAUSE) &&
|
|
|
|
(global_settings.rec_trigger_type == 1))
|
2007-08-25 15:53:54 +00:00
|
|
|
{
|
|
|
|
rec_command(RECORDING_CMD_RESUME);
|
|
|
|
}
|
2006-11-09 12:27:56 +00:00
|
|
|
/* New file on trig start*/
|
|
|
|
else if (global_settings.rec_trigger_type != 2)
|
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START_NEWFILE);
|
2006-11-09 12:27:56 +00:00
|
|
|
/* tell recording_screen to reset the time */
|
|
|
|
last_seconds = 0;
|
|
|
|
}
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* A _change_ to TRIG_READY means the current recording has stopped */
|
|
|
|
case TRIG_READY:
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_status() & AUDIO_STATUS_RECORD)
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2006-11-09 12:27:56 +00:00
|
|
|
switch(global_settings.rec_trigger_type)
|
|
|
|
{
|
|
|
|
case 0: /* Stop */
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_STOP);
|
2006-11-09 12:27:56 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: /* Pause */
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_PAUSE);
|
2006-11-09 12:27:56 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: /* New file on trig stop*/
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START_NEWFILE);
|
2006-11-09 12:27:56 +00:00
|
|
|
/* tell recording_screen to reset the time */
|
|
|
|
last_seconds = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
if (global_settings.rec_trigger_mode != TRIG_MODE_REARM)
|
|
|
|
{
|
|
|
|
peak_meter_set_trigger_listener(NULL);
|
|
|
|
peak_meter_trigger(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-07 01:59:29 +00:00
|
|
|
bool recording_start_automatic = false;
|
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
bool recording_screen(bool no_source)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2005-02-16 11:04:35 +00:00
|
|
|
long button;
|
2002-11-10 16:42:31 +00:00
|
|
|
bool done = false;
|
|
|
|
char buf[32];
|
|
|
|
char buf2[32];
|
|
|
|
int w, h;
|
|
|
|
int update_countdown = 1;
|
2007-04-15 22:16:28 +00:00
|
|
|
unsigned int seconds;
|
2002-11-19 21:07:44 +00:00
|
|
|
int hours, minutes;
|
2006-07-20 22:44:10 +00:00
|
|
|
char filename[13];
|
2005-04-04 12:06:29 +00:00
|
|
|
int last_audio_stat = -1;
|
2005-11-12 04:00:56 +00:00
|
|
|
int audio_stat;
|
2006-12-10 14:21:31 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
int warning_counter = 0;
|
|
|
|
#define WARNING_PERIOD 7
|
|
|
|
#endif
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_FMRADIO_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
/* Radio is left on if:
|
|
|
|
* 1) Is was on at the start and the initial source is FM Radio
|
|
|
|
* 2) 1) and the source was never changed to something else
|
|
|
|
*/
|
|
|
|
int radio_status = (global_settings.rec_source != AUDIO_SRC_FMRADIO) ?
|
|
|
|
FMRADIO_OFF : get_radio_status();
|
|
|
|
#endif
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL)
|
2005-06-04 10:19:45 +00:00
|
|
|
bool led_state = false;
|
|
|
|
int led_countdown = 2;
|
2005-05-01 20:10:39 +00:00
|
|
|
#endif
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
bool peak_read = false;
|
|
|
|
bool peak_valid = false;
|
|
|
|
int peak_l, peak_r;
|
|
|
|
int balance = 0;
|
|
|
|
bool display_agc[NB_SCREENS];
|
|
|
|
#endif
|
|
|
|
int line[NB_SCREENS];
|
2006-03-25 13:35:31 +00:00
|
|
|
int i;
|
2006-07-20 22:44:10 +00:00
|
|
|
int filename_offset[NB_SCREENS];
|
|
|
|
int pm_y[NB_SCREENS];
|
2006-11-09 12:27:56 +00:00
|
|
|
int trig_xpos[NB_SCREENS];
|
|
|
|
int trig_ypos[NB_SCREENS];
|
|
|
|
int trig_width[NB_SCREENS];
|
2007-08-25 15:53:54 +00:00
|
|
|
/* pm_x = offset pm to put clipcount in front.
|
|
|
|
Use lcd_getstringsize() when not using SYSFONT */
|
|
|
|
int pm_x = global_settings.peak_meter_clipcounter ? 30 : 0;
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-09-09 14:53:30 +00:00
|
|
|
static const unsigned char *byte_units[] = {
|
2005-01-31 00:39:20 +00:00
|
|
|
ID2P(LANG_BYTE),
|
|
|
|
ID2P(LANG_KILOBYTE),
|
|
|
|
ID2P(LANG_MEGABYTE),
|
|
|
|
ID2P(LANG_GIGABYTE)
|
|
|
|
};
|
|
|
|
|
2007-09-27 15:42:55 +00:00
|
|
|
int style = STYLE_INVERT;
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
if (global_settings.cursor_style == 2) {
|
|
|
|
style |= STYLE_COLORBAR;
|
|
|
|
}
|
|
|
|
else if (global_settings.cursor_style == 3) {
|
2007-09-28 13:49:43 +00:00
|
|
|
style |= STYLE_GRADIENT | 1;
|
2007-09-27 15:42:55 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
struct audio_recording_options rec_options;
|
2007-07-10 07:41:37 +00:00
|
|
|
if (check_dir(global_settings.rec_directory) == false)
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
gui_syncsplash(0, "%s %s",
|
|
|
|
str(LANG_REC_DIR_NOT_WRITABLE),
|
|
|
|
str(LANG_OFF_ABORT));
|
|
|
|
} while (action_userabort(HZ) == false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status = RCSTAT_IN_RECSCREEN;
|
2002-11-10 16:42:31 +00:00
|
|
|
cursor = 0;
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL) && !defined(SIMULATOR)
|
2005-04-04 09:12:12 +00:00
|
|
|
ata_set_led_enabled(false);
|
|
|
|
#endif
|
2006-04-30 23:51:24 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-06-11 08:28:38 +00:00
|
|
|
/* recording_menu gets messed up: so prevent manus talking */
|
2007-10-19 15:31:42 +00:00
|
|
|
talk_disable(true);
|
2006-11-06 18:07:30 +00:00
|
|
|
/* audio_init_recording stops anything playing when it takes the audio
|
|
|
|
buffer */
|
2006-08-28 22:38:41 +00:00
|
|
|
#else
|
|
|
|
/* Yes, we use the D/A for monitoring */
|
|
|
|
peak_meter_enabled = true;
|
|
|
|
peak_meter_playback(true);
|
|
|
|
#endif
|
|
|
|
|
2006-09-20 09:59:39 +00:00
|
|
|
audio_init_recording(0);
|
2005-11-06 23:12:11 +00:00
|
|
|
sound_set_volume(global_settings.volume);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
peak_meter_get_peakhold(&peak_l, &peak_r);
|
|
|
|
#endif
|
2005-11-12 04:00:56 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
rec_init_recording_options(&rec_options);
|
|
|
|
rec_set_recording_options(&rec_options);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2002-11-13 08:27:18 +00:00
|
|
|
set_gain();
|
2007-06-22 09:34:57 +00:00
|
|
|
|
|
|
|
if(rec_create_directory() > 0)
|
|
|
|
rec_status |= RCSTAT_CREATED_DIRECTORY;
|
|
|
|
|
|
|
|
#if CONFIG_RTC == 0
|
|
|
|
/* Create new filename for recording start */
|
|
|
|
rec_init_filename();
|
|
|
|
#endif
|
|
|
|
|
2007-08-25 15:53:54 +00:00
|
|
|
pm_reset_clipcount();
|
|
|
|
pm_activate_clipcount(false);
|
2005-04-04 09:12:12 +00:00
|
|
|
settings_apply_trigger();
|
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
2006-11-25 20:11:59 +00:00
|
|
|
agc_preset_str[0] = str(LANG_SYSFONT_OFF);
|
|
|
|
agc_preset_str[1] = str(LANG_SYSFONT_AGC_SAFETY);
|
|
|
|
agc_preset_str[2] = str(LANG_SYSFONT_AGC_LIVE);
|
|
|
|
agc_preset_str[3] = str(LANG_SYSFONT_AGC_DJSET);
|
|
|
|
agc_preset_str[4] = str(LANG_SYSFONT_AGC_MEDIUM);
|
|
|
|
agc_preset_str[5] = str(LANG_SYSFONT_AGC_VOICE);
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC) {
|
2006-08-16 23:26:55 +00:00
|
|
|
agc_preset = global_settings.rec_agc_preset_mic;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_mic;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
agc_preset = global_settings.rec_agc_preset_line;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_line;
|
|
|
|
}
|
2007-05-20 20:26:36 +00:00
|
|
|
#endif /* HAVE_AGC */
|
2006-08-16 23:26:55 +00:00
|
|
|
|
2006-03-25 13:35:31 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].setfont(FONT_SYSFIXED);
|
|
|
|
screens[i].getstringsize("M", &w, &h);
|
2007-09-27 15:42:55 +00:00
|
|
|
screens[i].setmargins(global_settings.cursor_style ? 0 : w, 8);
|
2006-07-20 22:44:10 +00:00
|
|
|
filename_offset[i] = ((screens[i].height >= 80) ? 1 : 0);
|
|
|
|
pm_y[i] = 8 + h * (2 + filename_offset[i]);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2007-06-22 09:34:57 +00:00
|
|
|
|
2007-02-06 20:30:58 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-07-31 12:55:27 +00:00
|
|
|
if (!remote_display_on)
|
|
|
|
{
|
|
|
|
screens[1].clear_display();
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), str(LANG_REMOTE_LCD_ON));
|
2006-07-31 13:12:40 +00:00
|
|
|
screens[1].puts((screens[1].width/w - strlen(buf))/2 + 1,
|
2006-07-31 12:55:27 +00:00
|
|
|
screens[1].height/(h*2) + 1, buf);
|
|
|
|
screens[1].update();
|
2007-03-16 21:56:08 +00:00
|
|
|
gui_syncsplash(0, str(LANG_REMOTE_LCD_OFF));
|
2006-07-31 12:55:27 +00:00
|
|
|
}
|
2007-02-06 20:30:58 +00:00
|
|
|
#endif
|
2004-06-22 10:52:39 +00:00
|
|
|
|
2002-11-10 16:42:31 +00:00
|
|
|
while(!done)
|
|
|
|
{
|
2005-11-12 04:00:56 +00:00
|
|
|
audio_stat = audio_status();
|
|
|
|
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL)
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2004-06-22 10:52:39 +00:00
|
|
|
/*
|
|
|
|
* Flash the LED while waiting to record. Turn it on while
|
|
|
|
* recording.
|
|
|
|
*/
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_stat & AUDIO_STATUS_RECORD)
|
2004-06-22 10:52:39 +00:00
|
|
|
{
|
2005-04-04 12:06:29 +00:00
|
|
|
if (audio_stat & AUDIO_STATUS_PAUSE)
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
if (--led_countdown <= 0)
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
led_state = !led_state;
|
|
|
|
led(led_state);
|
|
|
|
led_countdown = 2;
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2004-06-22 10:52:39 +00:00
|
|
|
{
|
2005-04-04 09:12:12 +00:00
|
|
|
/* trigger is on in status TRIG_READY (no check needed) */
|
|
|
|
led(true);
|
2004-06-22 10:52:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-04-04 09:12:12 +00:00
|
|
|
int trigStat = peak_meter_trigger_status();
|
2005-06-04 10:19:45 +00:00
|
|
|
/*
|
|
|
|
* other trigger stati than trig_off and trig_steady
|
|
|
|
* already imply that we are recording.
|
|
|
|
*/
|
2005-04-04 09:12:12 +00:00
|
|
|
if (trigStat == TRIG_STEADY)
|
2004-06-22 10:52:39 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
if (--led_countdown <= 0)
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
led_state = !led_state;
|
|
|
|
led(led_state);
|
|
|
|
led_countdown = 2;
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* trigger is on in status TRIG_READY (no check needed) */
|
|
|
|
led(false);
|
2004-06-22 10:52:39 +00:00
|
|
|
}
|
|
|
|
}
|
2005-06-04 23:15:52 +00:00
|
|
|
#endif /* CONFIG_LED */
|
2004-06-22 10:52:39 +00:00
|
|
|
|
2005-06-04 10:19:45 +00:00
|
|
|
/* Wait for a button a while (HZ/10) drawing the peak meter */
|
2007-08-25 15:53:54 +00:00
|
|
|
button = peak_meter_draw_get_btn(pm_x, pm_y, h * PM_HEIGHT, screen_update);
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2005-04-04 12:06:29 +00:00
|
|
|
if (last_audio_stat != audio_stat)
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2007-06-22 09:34:57 +00:00
|
|
|
if (audio_stat & AUDIO_STATUS_RECORD)
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_HAVE_RECORDED;
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
2005-04-04 12:06:29 +00:00
|
|
|
last_audio_stat = audio_stat;
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 01:59:29 +00:00
|
|
|
|
|
|
|
if (recording_start_automatic)
|
|
|
|
{
|
|
|
|
/* simulate a button press */
|
|
|
|
button = ACTION_REC_PAUSE;
|
|
|
|
recording_start_automatic = false;
|
|
|
|
}
|
|
|
|
|
2002-11-10 16:42:31 +00:00
|
|
|
switch(button)
|
|
|
|
{
|
2007-02-06 20:30:58 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_REC_LCD:
|
2006-07-31 12:55:27 +00:00
|
|
|
if (remote_display_on)
|
|
|
|
{
|
|
|
|
remote_display_on = false;
|
|
|
|
screen_update = 1;
|
|
|
|
screens[1].clear_display();
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), str(LANG_REMOTE_LCD_ON));
|
2006-07-31 13:12:40 +00:00
|
|
|
screens[1].puts((screens[1].width/w - strlen(buf))/2 + 1,
|
2006-07-31 12:55:27 +00:00
|
|
|
screens[1].height/(h*2) + 1, buf);
|
|
|
|
screens[1].update();
|
2007-03-16 21:56:08 +00:00
|
|
|
gui_syncsplash(0, str(LANG_REMOTE_LCD_OFF));
|
2006-07-31 12:55:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
remote_display_on = true;
|
|
|
|
screen_update = NB_SCREENS;
|
|
|
|
}
|
|
|
|
break;
|
2007-02-06 20:30:58 +00:00
|
|
|
#endif
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_STD_CANCEL:
|
2005-06-04 10:19:45 +00:00
|
|
|
/* turn off the trigger */
|
|
|
|
peak_meter_trigger(false);
|
|
|
|
peak_meter_set_trigger_listener(NULL);
|
|
|
|
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_stat & AUDIO_STATUS_RECORD)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_STOP);
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-12-02 01:04:03 +00:00
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2006-08-28 22:38:41 +00:00
|
|
|
peak_meter_playback(true);
|
2002-11-10 16:42:31 +00:00
|
|
|
peak_meter_enabled = false;
|
2006-09-18 12:41:12 +00:00
|
|
|
#endif
|
2002-11-10 16:42:31 +00:00
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
update_countdown = 1; /* Update immediately */
|
|
|
|
break;
|
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_REC_PAUSE:
|
|
|
|
case ACTION_REC_NEWFILE:
|
2002-11-11 08:16:18 +00:00
|
|
|
/* Only act if the mpeg is stopped */
|
2005-04-04 12:06:29 +00:00
|
|
|
if(!(audio_stat & AUDIO_STATUS_RECORD))
|
2007-04-15 22:16:28 +00:00
|
|
|
{
|
2005-04-04 09:12:12 +00:00
|
|
|
/* is this manual or triggered recording? */
|
|
|
|
if ((global_settings.rec_trigger_mode == TRIG_MODE_OFF) ||
|
|
|
|
(peak_meter_trigger_status() != TRIG_OFF))
|
2005-05-26 20:02:12 +00:00
|
|
|
{
|
2005-04-04 09:12:12 +00:00
|
|
|
/* manual recording */
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_HAVE_RECORDED;
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START);
|
2005-05-26 20:02:12 +00:00
|
|
|
last_seconds = 0;
|
2007-06-11 08:28:38 +00:00
|
|
|
if (global_settings.talk_menu)
|
|
|
|
{
|
|
|
|
/* no voice possible here, but a beep */
|
2005-05-26 20:02:12 +00:00
|
|
|
audio_beep(HZ/2); /* longer beep on start */
|
|
|
|
}
|
2004-12-24 08:42:45 +00:00
|
|
|
}
|
2005-04-04 09:12:12 +00:00
|
|
|
/* this is triggered recording */
|
2005-05-26 20:02:12 +00:00
|
|
|
else
|
|
|
|
{
|
2005-04-04 09:12:12 +00:00
|
|
|
/* we don't start recording now, but enable the
|
|
|
|
trigger and let the callback function
|
|
|
|
trigger_listener control when the recording starts */
|
|
|
|
peak_meter_trigger(true);
|
|
|
|
peak_meter_set_trigger_listener(&trigger_listener);
|
|
|
|
}
|
|
|
|
}
|
2003-11-02 11:24:38 +00:00
|
|
|
else
|
|
|
|
{
|
2006-07-20 22:44:10 +00:00
|
|
|
/*if new file button pressed, start new file */
|
2006-08-20 21:33:40 +00:00
|
|
|
if (button == ACTION_REC_NEWFILE)
|
2004-06-03 12:10:40 +00:00
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START_NEWFILE);
|
2006-07-20 22:44:10 +00:00
|
|
|
last_seconds = 0;
|
2004-06-03 12:10:40 +00:00
|
|
|
}
|
|
|
|
else
|
2006-07-20 22:44:10 +00:00
|
|
|
/* if pause button pressed, pause or resume */
|
2004-06-03 12:10:40 +00:00
|
|
|
{
|
2006-07-20 22:44:10 +00:00
|
|
|
if(audio_stat & AUDIO_STATUS_PAUSE)
|
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_RESUME);
|
2007-06-11 08:28:38 +00:00
|
|
|
if (global_settings.talk_menu)
|
|
|
|
{
|
|
|
|
/* no voice possible here, but a beep */
|
2006-07-20 22:44:10 +00:00
|
|
|
audio_beep(HZ/4); /* short beep on resume */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_PAUSE);
|
2006-07-20 22:44:10 +00:00
|
|
|
}
|
2004-06-03 12:10:40 +00:00
|
|
|
}
|
2003-11-02 11:24:38 +00:00
|
|
|
}
|
2005-06-04 10:19:45 +00:00
|
|
|
update_countdown = 1; /* Update immediately */
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_STD_PREV:
|
2002-11-10 16:42:31 +00:00
|
|
|
cursor--;
|
|
|
|
adjust_cursor();
|
|
|
|
update_countdown = 1; /* Update immediately */
|
|
|
|
break;
|
2004-09-19 21:58:37 +00:00
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_STD_NEXT:
|
2002-11-10 16:42:31 +00:00
|
|
|
cursor++;
|
|
|
|
adjust_cursor();
|
|
|
|
update_countdown = 1; /* Update immediately */
|
|
|
|
break;
|
2006-02-08 13:08:55 +00:00
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_SETTINGS_INC:
|
2007-11-26 11:51:39 +00:00
|
|
|
case ACTION_SETTINGS_INCREPEAT:
|
2002-11-10 16:42:31 +00:00
|
|
|
switch(cursor)
|
|
|
|
{
|
|
|
|
case 0:
|
2007-05-30 17:57:32 +00:00
|
|
|
global_settings.volume++;
|
|
|
|
setvol();
|
2005-11-13 15:16:27 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2006-08-28 22:38:41 +00:00
|
|
|
if(global_settings.rec_source == AUDIO_SRC_MIC)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
if(global_settings.rec_mic_gain <
|
2005-04-01 13:41:03 +00:00
|
|
|
sound_max(SOUND_MIC_GAIN))
|
2005-06-04 10:19:45 +00:00
|
|
|
global_settings.rec_mic_gain++;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-08 13:08:55 +00:00
|
|
|
if(global_settings.rec_left_gain <
|
|
|
|
sound_max(SOUND_LEFT_GAIN))
|
|
|
|
global_settings.rec_left_gain++;
|
|
|
|
if(global_settings.rec_right_gain <
|
|
|
|
sound_max(SOUND_RIGHT_GAIN))
|
|
|
|
global_settings.rec_right_gain++;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
break;
|
2005-11-13 15:16:27 +00:00
|
|
|
case 2:
|
2005-06-04 10:19:45 +00:00
|
|
|
if(global_settings.rec_left_gain <
|
2005-04-01 13:41:03 +00:00
|
|
|
sound_max(SOUND_LEFT_GAIN))
|
2005-06-04 10:19:45 +00:00
|
|
|
global_settings.rec_left_gain++;
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
2005-11-13 15:16:27 +00:00
|
|
|
case 3:
|
2005-06-04 10:19:45 +00:00
|
|
|
if(global_settings.rec_right_gain <
|
2005-04-01 13:41:03 +00:00
|
|
|
sound_max(SOUND_RIGHT_GAIN))
|
2005-06-04 10:19:45 +00:00
|
|
|
global_settings.rec_right_gain++;
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
case 4:
|
|
|
|
agc_preset = MIN(agc_preset + 1, AGC_MODE_SIZE);
|
|
|
|
agc_enable = (agc_preset != 0);
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC) {
|
2006-08-16 23:26:55 +00:00
|
|
|
global_settings.rec_agc_preset_mic = agc_preset;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_mic;
|
|
|
|
} else {
|
|
|
|
global_settings.rec_agc_preset_line = agc_preset;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_line;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 5:
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
agc_maxgain = MIN(agc_maxgain + 1,
|
|
|
|
sound_max(SOUND_MIC_GAIN));
|
|
|
|
global_settings.rec_agc_maxgain_mic = agc_maxgain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
agc_maxgain = MIN(agc_maxgain + 1,
|
|
|
|
sound_max(SOUND_LEFT_GAIN));
|
|
|
|
global_settings.rec_agc_maxgain_line = agc_maxgain;
|
|
|
|
}
|
|
|
|
break;
|
2007-05-20 20:26:36 +00:00
|
|
|
#endif /* HAVE_AGC */
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
set_gain();
|
|
|
|
update_countdown = 1; /* Update immediately */
|
|
|
|
break;
|
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_SETTINGS_DEC:
|
2007-11-26 11:51:39 +00:00
|
|
|
case ACTION_SETTINGS_DECREPEAT:
|
2002-11-10 16:42:31 +00:00
|
|
|
switch(cursor)
|
|
|
|
{
|
|
|
|
case 0:
|
2007-05-30 17:57:32 +00:00
|
|
|
global_settings.volume--;
|
|
|
|
setvol();
|
2005-11-13 15:16:27 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2006-08-28 22:38:41 +00:00
|
|
|
if(global_settings.rec_source == AUDIO_SRC_MIC)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
if(global_settings.rec_mic_gain >
|
2005-04-01 13:41:03 +00:00
|
|
|
sound_min(SOUND_MIC_GAIN))
|
2005-06-04 10:19:45 +00:00
|
|
|
global_settings.rec_mic_gain--;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-08 13:08:55 +00:00
|
|
|
if(global_settings.rec_left_gain >
|
|
|
|
sound_min(SOUND_LEFT_GAIN))
|
|
|
|
global_settings.rec_left_gain--;
|
|
|
|
if(global_settings.rec_right_gain >
|
|
|
|
sound_min(SOUND_RIGHT_GAIN))
|
|
|
|
global_settings.rec_right_gain--;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
break;
|
2005-11-13 15:16:27 +00:00
|
|
|
case 2:
|
2005-06-04 10:19:45 +00:00
|
|
|
if(global_settings.rec_left_gain >
|
2005-04-01 13:41:03 +00:00
|
|
|
sound_min(SOUND_LEFT_GAIN))
|
2005-06-04 10:19:45 +00:00
|
|
|
global_settings.rec_left_gain--;
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
2005-11-13 15:16:27 +00:00
|
|
|
case 3:
|
2005-06-04 10:19:45 +00:00
|
|
|
if(global_settings.rec_right_gain >
|
|
|
|
sound_min(SOUND_RIGHT_GAIN))
|
|
|
|
global_settings.rec_right_gain--;
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
case 4:
|
|
|
|
agc_preset = MAX(agc_preset - 1, 0);
|
|
|
|
agc_enable = (agc_preset != 0);
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC) {
|
2006-08-16 23:26:55 +00:00
|
|
|
global_settings.rec_agc_preset_mic = agc_preset;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_mic;
|
|
|
|
} else {
|
|
|
|
global_settings.rec_agc_preset_line = agc_preset;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_line;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 5:
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
agc_maxgain = MAX(agc_maxgain - 1,
|
|
|
|
sound_min(SOUND_MIC_GAIN));
|
|
|
|
global_settings.rec_agc_maxgain_mic = agc_maxgain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
agc_maxgain = MAX(agc_maxgain - 1,
|
|
|
|
sound_min(SOUND_LEFT_GAIN));
|
|
|
|
global_settings.rec_agc_maxgain_line = agc_maxgain;
|
|
|
|
}
|
|
|
|
break;
|
2007-05-20 20:26:36 +00:00
|
|
|
#endif /* HAVE_AGC */
|
2005-11-13 15:16:27 +00:00
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
set_gain();
|
|
|
|
update_countdown = 1; /* Update immediately */
|
|
|
|
break;
|
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_STD_MENU:
|
2007-06-22 09:34:57 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
if(!(audio_stat & AUDIO_STATUS_RECORD))
|
|
|
|
#else
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_stat != AUDIO_STATUS_RECORD)
|
2007-06-22 09:34:57 +00:00
|
|
|
#endif
|
2004-10-24 22:30:55 +00:00
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_FMRADIO_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
const int prev_rec_source = global_settings.rec_source;
|
|
|
|
#endif
|
2007-04-15 22:16:28 +00:00
|
|
|
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL)
|
2005-04-04 09:12:12 +00:00
|
|
|
/* led is restored at begin of loop / end of function */
|
|
|
|
led(false);
|
2005-05-01 20:10:39 +00:00
|
|
|
#endif
|
2006-08-28 22:38:41 +00:00
|
|
|
if (recording_menu(no_source))
|
2005-04-04 09:12:12 +00:00
|
|
|
{
|
2006-08-28 22:38:41 +00:00
|
|
|
done = true;
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_BEEN_IN_USB_MODE;
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_FMRADIO_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
radio_status = FMRADIO_OFF;
|
|
|
|
#endif
|
2005-04-04 09:12:12 +00:00
|
|
|
}
|
2006-08-28 22:38:41 +00:00
|
|
|
else
|
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_FMRADIO_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
/* If input changes away from FM Radio, radio will
|
|
|
|
remain off when recording screen closes. */
|
|
|
|
if (global_settings.rec_source != prev_rec_source
|
|
|
|
&& prev_rec_source == AUDIO_SRC_FMRADIO)
|
|
|
|
radio_status = FMRADIO_OFF;
|
|
|
|
#endif
|
2004-10-24 22:30:55 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
/* reinit after submenu exit */
|
|
|
|
audio_close_recording();
|
2006-11-06 18:07:30 +00:00
|
|
|
audio_init_recording(0);
|
2006-04-30 22:28:45 +00:00
|
|
|
#endif
|
2007-06-22 09:34:57 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
rec_init_recording_options(&rec_options);
|
|
|
|
rec_set_recording_options(&rec_options);
|
2006-08-28 22:38:41 +00:00
|
|
|
|
2006-09-27 21:28:47 +00:00
|
|
|
if(rec_create_directory() > 0)
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_CREATED_DIRECTORY;
|
|
|
|
|
|
|
|
#if CONFIG_CODEC == SWCODEC && CONFIG_RTC == 0
|
|
|
|
/* If format changed, a new number is required */
|
|
|
|
rec_init_filename();
|
|
|
|
#endif
|
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC) {
|
|
|
|
agc_preset = global_settings.rec_agc_preset_mic;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_mic;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
agc_preset = global_settings.rec_agc_preset_line;
|
|
|
|
agc_maxgain = global_settings.rec_agc_maxgain_line;
|
|
|
|
}
|
2006-08-16 23:26:55 +00:00
|
|
|
#endif
|
2005-11-13 15:16:27 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
adjust_cursor();
|
|
|
|
set_gain();
|
|
|
|
update_countdown = 1; /* Update immediately */
|
2003-12-20 22:15:45 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].setfont(FONT_SYSFIXED);
|
|
|
|
screens[i].setmargins(
|
2007-09-27 15:42:55 +00:00
|
|
|
global_settings.cursor_style ? 0 : w, 8);
|
2006-08-28 22:38:41 +00:00
|
|
|
}
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2004-10-24 22:30:55 +00:00
|
|
|
}
|
2002-11-10 23:18:33 +00:00
|
|
|
break;
|
2006-08-28 22:38:41 +00:00
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
case ACTION_REC_F2:
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_stat != AUDIO_STATUS_RECORD)
|
2003-04-20 22:00:30 +00:00
|
|
|
{
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL)
|
2005-04-04 09:12:12 +00:00
|
|
|
/* led is restored at begin of loop / end of function */
|
|
|
|
led(false);
|
2005-05-01 20:10:39 +00:00
|
|
|
#endif
|
2003-04-20 22:00:30 +00:00
|
|
|
if (f2_rec_screen())
|
2003-11-20 00:33:43 +00:00
|
|
|
{
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_HAVE_RECORDED;
|
2003-11-20 00:33:43 +00:00
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
update_countdown = 1; /* Update immediately */
|
2003-04-20 22:00:30 +00:00
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
case ACTION_REC_F3:
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_stat & AUDIO_STATUS_RECORD)
|
2003-04-20 22:00:30 +00:00
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START_NEWFILE);
|
2004-06-03 12:10:40 +00:00
|
|
|
last_seconds = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL)
|
2007-06-22 09:34:57 +00:00
|
|
|
/* led is restored at begin of loop / end of function */
|
|
|
|
led(false);
|
2005-05-01 20:10:39 +00:00
|
|
|
#endif
|
2007-06-22 09:34:57 +00:00
|
|
|
if (f3_rec_screen())
|
|
|
|
{
|
|
|
|
rec_status |= RCSTAT_HAVE_RECORDED;
|
|
|
|
done = true;
|
2003-11-20 00:33:43 +00:00
|
|
|
}
|
2007-06-22 09:34:57 +00:00
|
|
|
else
|
|
|
|
update_countdown = 1; /* Update immediately */
|
2003-04-20 22:00:30 +00:00
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
2006-08-28 22:38:41 +00:00
|
|
|
#endif /* CONFIG_KEYPAD == RECORDER_PAD */
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2003-11-20 00:33:43 +00:00
|
|
|
case SYS_USB_CONNECTED:
|
|
|
|
/* Only accept USB connection when not recording */
|
2007-06-22 09:34:57 +00:00
|
|
|
if(!(audio_stat & AUDIO_STATUS_RECORD))
|
2003-11-20 00:33:43 +00:00
|
|
|
{
|
2004-07-26 16:06:59 +00:00
|
|
|
default_event_handler(SYS_USB_CONNECTED);
|
2003-11-20 00:33:43 +00:00
|
|
|
done = true;
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status |= RCSTAT_BEEN_IN_USB_MODE;
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_FMRADIO_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
radio_status = FMRADIO_OFF;
|
|
|
|
#endif
|
2003-11-20 00:33:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2004-07-26 16:06:59 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
default_event_handler(button);
|
|
|
|
break;
|
2006-12-10 14:21:31 +00:00
|
|
|
} /* end switch */
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
peak_read = !peak_read;
|
|
|
|
if (peak_read) { /* every 2nd run of loop */
|
|
|
|
peak_time++;
|
|
|
|
peak_valid = read_peak_levels(&peak_l, &peak_r, &balance);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle AGC every 200ms when enabled and peak data is valid */
|
|
|
|
if (peak_read && agc_enable && peak_valid)
|
|
|
|
auto_gain_control(&peak_l, &peak_r, &balance);
|
|
|
|
#endif
|
|
|
|
|
2006-03-25 13:35:31 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
screens[i].setfont(FONT_SYSFIXED);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2005-11-12 04:00:56 +00:00
|
|
|
seconds = audio_recorded_time() / HZ;
|
|
|
|
|
2005-06-04 10:19:45 +00:00
|
|
|
update_countdown--;
|
|
|
|
if(update_countdown == 0 || seconds > last_seconds)
|
|
|
|
{
|
|
|
|
unsigned int dseconds, dhours, dminutes;
|
2006-07-22 17:23:05 +00:00
|
|
|
unsigned long num_recorded_bytes, dsize, dmb;
|
2005-06-04 10:19:45 +00:00
|
|
|
int pos = 0;
|
2003-04-24 12:57:15 +00:00
|
|
|
|
2005-06-04 10:19:45 +00:00
|
|
|
update_countdown = 5;
|
|
|
|
last_seconds = seconds;
|
2002-11-19 21:07:44 +00:00
|
|
|
|
2006-07-22 17:23:05 +00:00
|
|
|
dseconds = rec_timesplit_seconds();
|
|
|
|
dsize = rec_sizesplit_bytes();
|
|
|
|
num_recorded_bytes = audio_num_recorded_bytes();
|
|
|
|
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-03-25 13:35:31 +00:00
|
|
|
screens[i].clear_display();
|
2002-11-19 21:07:44 +00:00
|
|
|
|
2006-12-10 14:21:31 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
if ((audio_stat & AUDIO_STATUS_WARNING)
|
|
|
|
&& (warning_counter++ % WARNING_PERIOD) < WARNING_PERIOD/2)
|
|
|
|
{
|
|
|
|
/* Switch back and forth displaying warning on first available
|
|
|
|
line to ensure visibility - the motion should also help
|
|
|
|
draw attention */
|
|
|
|
/* Don't use language string unless agreed upon to make this
|
|
|
|
method permanent - could do something in the statusbar */
|
|
|
|
snprintf(buf, sizeof(buf), "Warning: %08X",
|
|
|
|
pcm_rec_get_warnings());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
2006-07-22 17:23:05 +00:00
|
|
|
if ((global_settings.rec_sizesplit) && (global_settings.rec_split_method))
|
|
|
|
{
|
|
|
|
dmb = dsize/1024/1024;
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s %dMB",
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_SPLIT_SIZE), dmb);
|
2006-07-22 17:23:05 +00:00
|
|
|
}
|
2007-04-15 22:16:28 +00:00
|
|
|
else
|
2006-07-22 17:23:05 +00:00
|
|
|
{
|
|
|
|
hours = seconds / 3600;
|
|
|
|
minutes = (seconds - (hours * 3600)) / 60;
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s %02d:%02d:%02d",
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_TIME),
|
2006-07-22 17:23:05 +00:00
|
|
|
hours, minutes, seconds%60);
|
|
|
|
}
|
|
|
|
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-03-25 13:35:31 +00:00
|
|
|
screens[i].puts(0, 0, buf);
|
2003-06-04 13:48:50 +00:00
|
|
|
|
2005-06-04 10:19:45 +00:00
|
|
|
if(audio_stat & AUDIO_STATUS_PRERECORD)
|
|
|
|
{
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s...", str(LANG_SYSFONT_RECORD_PRERECORD));
|
2005-06-04 10:19:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Display the split interval if the record timesplit
|
|
|
|
is active */
|
2006-07-22 17:23:05 +00:00
|
|
|
if ((global_settings.rec_timesplit) && !(global_settings.rec_split_method))
|
2003-11-20 00:33:43 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
/* Display the record timesplit interval rather
|
|
|
|
than the file size if the record timer is
|
|
|
|
active */
|
|
|
|
dhours = dseconds / 3600;
|
|
|
|
dminutes = (dseconds - (dhours * 3600)) / 60;
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s %02d:%02d",
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORD_TIMESPLIT_REC),
|
2005-06-04 10:19:45 +00:00
|
|
|
dhours, dminutes);
|
2003-06-04 13:48:50 +00:00
|
|
|
}
|
2007-04-15 22:16:28 +00:00
|
|
|
else
|
2003-12-31 03:13:29 +00:00
|
|
|
{
|
2005-06-04 10:19:45 +00:00
|
|
|
output_dyn_value(buf2, sizeof buf2,
|
2005-06-04 12:14:46 +00:00
|
|
|
num_recorded_bytes,
|
2005-06-04 10:19:45 +00:00
|
|
|
byte_units, true);
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s %s",
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_SIZE), buf2);
|
2003-12-31 03:13:29 +00:00
|
|
|
}
|
2005-06-04 10:19:45 +00:00
|
|
|
}
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-03-25 13:35:31 +00:00
|
|
|
screens[i].puts(0, 1, buf);
|
2003-02-14 02:48:12 +00:00
|
|
|
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
{
|
|
|
|
if (filename_offset[i] > 0)
|
|
|
|
{
|
2006-12-10 14:21:31 +00:00
|
|
|
*filename = '\0';
|
2006-07-20 22:44:10 +00:00
|
|
|
if (audio_stat & AUDIO_STATUS_RECORD)
|
|
|
|
{
|
|
|
|
strncpy(filename, path_buffer +
|
|
|
|
strlen(path_buffer) - 12, 13);
|
|
|
|
filename[12]='\0';
|
|
|
|
}
|
|
|
|
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s %s",
|
|
|
|
str(LANG_SYSFONT_RECORDING_FILENAME), filename);
|
2006-12-10 14:21:31 +00:00
|
|
|
screens[i].puts(0, 2, buf);
|
2006-07-20 22:44:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-11 17:57:31 +00:00
|
|
|
/* We will do file splitting regardless, either at the end of
|
|
|
|
a split interval, or when the filesize approaches the 2GB
|
|
|
|
FAT file size (compatibility) limit. */
|
2006-07-22 17:23:05 +00:00
|
|
|
if ((audio_stat && !(global_settings.rec_split_method)
|
|
|
|
&& global_settings.rec_timesplit && (seconds >= dseconds))
|
|
|
|
|| (audio_stat && global_settings.rec_split_method
|
|
|
|
&& global_settings.rec_sizesplit && (num_recorded_bytes >= dsize))
|
|
|
|
|| (num_recorded_bytes >= MAX_FILE_SIZE))
|
2005-06-04 10:19:45 +00:00
|
|
|
{
|
2006-07-22 17:23:05 +00:00
|
|
|
if (!(global_settings.rec_split_type)
|
|
|
|
|| (num_recorded_bytes >= MAX_FILE_SIZE))
|
|
|
|
{
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_START_NEWFILE);
|
2006-07-22 17:23:05 +00:00
|
|
|
last_seconds = 0;
|
|
|
|
}
|
2007-04-15 22:16:28 +00:00
|
|
|
else
|
2006-07-22 17:23:05 +00:00
|
|
|
{
|
|
|
|
peak_meter_trigger(false);
|
|
|
|
peak_meter_set_trigger_listener(NULL);
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_STOP);
|
2006-07-22 17:23:05 +00:00
|
|
|
}
|
2005-06-04 10:19:45 +00:00
|
|
|
update_countdown = 1;
|
|
|
|
}
|
2003-11-20 00:33:43 +00:00
|
|
|
|
2007-08-25 15:53:54 +00:00
|
|
|
/* draw the clipcounter just in front of the peakmeter */
|
|
|
|
if(global_settings.peak_meter_clipcounter)
|
|
|
|
{
|
|
|
|
char clpstr[32];
|
|
|
|
snprintf(clpstr, 32, "%4d", pm_get_clipcount());
|
|
|
|
for(i = 0; i < screen_update; i++)
|
|
|
|
{
|
|
|
|
if(PM_HEIGHT > 1)
|
|
|
|
screens[i].puts(0, 2 + filename_offset[i],
|
2007-08-29 18:36:29 +00:00
|
|
|
str(LANG_SYSFONT_PM_CLIPCOUNT));
|
2007-08-25 15:53:54 +00:00
|
|
|
screens[i].puts(0, 1 + PM_HEIGHT + filename_offset[i],
|
|
|
|
clpstr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s: %s", str(LANG_SYSFONT_VOLUME),
|
2005-11-13 15:16:27 +00:00
|
|
|
fmt_gain(SOUND_VOLUME,
|
|
|
|
global_settings.volume,
|
|
|
|
buf2, sizeof(buf2)));
|
|
|
|
|
2007-09-27 15:42:55 +00:00
|
|
|
if (global_settings.cursor_style && (pos++ == cursor))
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts_style_offset(0, filename_offset[i] +
|
2007-09-27 15:42:55 +00:00
|
|
|
PM_HEIGHT + 2, buf, style,0);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2005-11-13 15:16:27 +00:00
|
|
|
else
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts(0, filename_offset[i] + PM_HEIGHT + 2, buf);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2005-11-13 15:16:27 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
if(global_settings.rec_source == AUDIO_SRC_MIC)
|
|
|
|
{
|
|
|
|
/* Draw MIC recording gain */
|
2007-08-05 19:19:39 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_GAIN),
|
2005-06-04 10:19:45 +00:00
|
|
|
fmt_gain(SOUND_MIC_GAIN,
|
|
|
|
global_settings.rec_mic_gain,
|
|
|
|
buf2, sizeof(buf2)));
|
2007-09-27 15:42:55 +00:00
|
|
|
if(global_settings.cursor_style && ((1==cursor)||(2==cursor)))
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts_style_offset(0, filename_offset[i] +
|
2007-09-27 15:42:55 +00:00
|
|
|
PM_HEIGHT + 3, buf, style,0);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2005-06-04 10:19:45 +00:00
|
|
|
else
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts(0, filename_offset[i] +
|
|
|
|
PM_HEIGHT + 3, buf);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2005-06-04 10:19:45 +00:00
|
|
|
}
|
2007-05-20 20:26:36 +00:00
|
|
|
else if(0
|
|
|
|
HAVE_LINE_REC_( || global_settings.rec_source == AUDIO_SRC_LINEIN)
|
|
|
|
HAVE_FMRADIO_REC_( || global_settings.rec_source == AUDIO_SRC_FMRADIO)
|
|
|
|
)
|
2005-06-04 10:19:45 +00:00
|
|
|
{
|
2006-08-28 22:38:41 +00:00
|
|
|
/* Draw LINE or FMRADIO recording gain */
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s:%s",
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_LEFT),
|
2006-02-08 13:08:55 +00:00
|
|
|
fmt_gain(SOUND_LEFT_GAIN,
|
|
|
|
global_settings.rec_left_gain,
|
|
|
|
buf2, sizeof(buf2)));
|
2007-09-27 15:42:55 +00:00
|
|
|
if(global_settings.cursor_style && ((1==cursor)||(2==cursor)))
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts_style_offset(0, filename_offset[i] +
|
2007-09-27 15:42:55 +00:00
|
|
|
PM_HEIGHT + 3, buf, style,0);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2006-02-08 13:08:55 +00:00
|
|
|
else
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts(0, filename_offset[i] +
|
|
|
|
PM_HEIGHT + 3, buf);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
|
|
|
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s:%s",
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_RIGHT),
|
2006-02-08 13:08:55 +00:00
|
|
|
fmt_gain(SOUND_RIGHT_GAIN,
|
|
|
|
global_settings.rec_right_gain,
|
|
|
|
buf2, sizeof(buf2)));
|
2007-09-27 15:42:55 +00:00
|
|
|
if(global_settings.cursor_style && ((1==cursor)||(3==cursor)))
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts_style_offset(0, filename_offset[i] +
|
2007-09-27 15:42:55 +00:00
|
|
|
PM_HEIGHT + 4, buf, style,0);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2006-02-08 13:08:55 +00:00
|
|
|
else
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screens[i].puts(0, filename_offset[i] +
|
|
|
|
PM_HEIGHT + 4, buf);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
2006-08-16 23:26:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2006-08-28 22:38:41 +00:00
|
|
|
switch (global_settings.rec_source)
|
|
|
|
{
|
2007-05-20 20:26:36 +00:00
|
|
|
HAVE_LINE_REC_(case AUDIO_SRC_LINEIN:)
|
|
|
|
HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO:)
|
2006-08-16 23:26:55 +00:00
|
|
|
line[i] = 5;
|
2006-08-28 22:38:41 +00:00
|
|
|
break;
|
2007-06-22 09:34:57 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
case AUDIO_SRC_MIC:
|
2006-08-16 23:26:55 +00:00
|
|
|
line[i] = 4;
|
2006-08-28 22:38:41 +00:00
|
|
|
break;
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_SPDIF_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
case AUDIO_SRC_SPDIF:
|
2006-08-16 23:26:55 +00:00
|
|
|
line[i] = 3;
|
2006-08-28 22:38:41 +00:00
|
|
|
break;
|
2006-08-16 23:26:55 +00:00
|
|
|
#endif
|
2006-11-09 12:27:56 +00:00
|
|
|
default:
|
|
|
|
line[i] = 5; /* to prevent uninitialisation
|
|
|
|
warnings for line[0] */
|
|
|
|
break;
|
2006-08-28 22:38:41 +00:00
|
|
|
} /* end switch */
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
if (screens[i].height < h * (2 + filename_offset[i] + PM_HEIGHT + line[i]))
|
|
|
|
{
|
|
|
|
line[i] -= 1;
|
|
|
|
display_agc[i] = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
display_agc[i] = true;
|
|
|
|
|
|
|
|
if ((cursor==4) || (cursor==5))
|
|
|
|
display_agc[i] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************** AGC test info ******************
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "D:%d U:%d",
|
2006-08-16 23:26:55 +00:00
|
|
|
(agc_droptime+2)/5, (agc_risetime+2)/5);
|
|
|
|
lcd_putsxy(1, LCD_HEIGHT - 8, buf);
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "B:%d",
|
2006-08-16 23:26:55 +00:00
|
|
|
(agc_baltime+2)/5);
|
|
|
|
lcd_putsxy(LCD_WIDTH/2 + 3, LCD_HEIGHT - 8, buf);
|
|
|
|
***********************************************/
|
|
|
|
|
|
|
|
if (cursor == 5)
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s: %s",
|
2006-11-25 20:11:59 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_AGC_MAXGAIN),
|
2006-08-16 23:26:55 +00:00
|
|
|
fmt_gain(SOUND_LEFT_GAIN,
|
|
|
|
agc_maxgain, buf2, sizeof(buf2)));
|
|
|
|
else if (agc_preset == 0)
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s: %s",
|
2006-11-25 20:11:59 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_AGC_PRESET),
|
2006-08-16 23:26:55 +00:00
|
|
|
agc_preset_str[agc_preset]);
|
2006-08-28 22:38:41 +00:00
|
|
|
else if (global_settings.rec_source == AUDIO_SRC_MIC)
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s: %s%s",
|
2006-11-25 20:11:59 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_AGC_PRESET),
|
2006-08-16 23:26:55 +00:00
|
|
|
agc_preset_str[agc_preset],
|
|
|
|
fmt_gain(SOUND_LEFT_GAIN,
|
|
|
|
agc_maxgain -
|
|
|
|
global_settings.rec_mic_gain,
|
|
|
|
buf2, sizeof(buf2)));
|
|
|
|
else
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%s: %s%s",
|
2006-11-25 20:11:59 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_AGC_PRESET),
|
2006-08-16 23:26:55 +00:00
|
|
|
agc_preset_str[agc_preset],
|
|
|
|
fmt_gain(SOUND_LEFT_GAIN,
|
|
|
|
agc_maxgain -
|
|
|
|
(global_settings.rec_left_gain +
|
|
|
|
global_settings.rec_right_gain)/2,
|
|
|
|
buf2, sizeof(buf2)));
|
2006-07-20 22:44:10 +00:00
|
|
|
|
2007-09-27 15:42:55 +00:00
|
|
|
if(global_settings.cursor_style && ((cursor==4) || (cursor==5)))
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
for(i = 0; i < screen_update; i++)
|
|
|
|
screens[i].puts_style_offset(0, filename_offset[i] +
|
2007-09-27 15:42:55 +00:00
|
|
|
PM_HEIGHT + line[i], buf, style,0);
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
2007-05-20 20:26:36 +00:00
|
|
|
else if (
|
|
|
|
global_settings.rec_source == AUDIO_SRC_MIC
|
|
|
|
HAVE_LINE_REC_(|| global_settings.rec_source == AUDIO_SRC_LINEIN)
|
|
|
|
HAVE_FMRADIO_REC_(|| global_settings.rec_source == AUDIO_SRC_FMRADIO)
|
|
|
|
)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
for(i = 0; i < screen_update; i++) {
|
|
|
|
if (display_agc[i]) {
|
|
|
|
screens[i].puts(0, filename_offset[i] +
|
|
|
|
PM_HEIGHT + line[i], buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-20 20:26:36 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
if (global_settings.rec_source == AUDIO_SRC_MIC)
|
2006-08-16 23:26:55 +00:00
|
|
|
{
|
|
|
|
if(agc_maxgain < (global_settings.rec_mic_gain))
|
|
|
|
change_recording_gain(false, true, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(agc_maxgain < (global_settings.rec_left_gain))
|
|
|
|
change_recording_gain(false, true, false);
|
|
|
|
if(agc_maxgain < (global_settings.rec_right_gain))
|
|
|
|
change_recording_gain(false, false, true);
|
|
|
|
}
|
2007-05-20 20:26:36 +00:00
|
|
|
#else /* !HAVE_AGC */
|
2006-08-16 23:26:55 +00:00
|
|
|
}
|
|
|
|
#endif /* HAVE_AGC */
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2007-09-27 15:42:55 +00:00
|
|
|
if(!global_settings.cursor_style) {
|
2006-03-25 13:35:31 +00:00
|
|
|
switch(cursor)
|
|
|
|
{
|
|
|
|
case 1:
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-07-20 22:44:10 +00:00
|
|
|
screen_put_cursorxy(&screens[i], 0,
|
|
|
|
filename_offset[i] +
|
|
|
|
PM_HEIGHT + 3, true);
|
2006-03-25 13:35:31 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
if(global_settings.rec_source != AUDIO_SRC_MIC)
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-04-22 23:51:06 +00:00
|
|
|
screen_put_cursorxy(&screens[i], 0,
|
2006-07-20 22:44:10 +00:00
|
|
|
filename_offset[i] +
|
|
|
|
PM_HEIGHT + 4, true);
|
2006-04-22 23:51:06 +00:00
|
|
|
}
|
2006-03-25 13:35:31 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-04-22 23:51:06 +00:00
|
|
|
screen_put_cursorxy(&screens[i], 0,
|
2006-07-20 22:44:10 +00:00
|
|
|
filename_offset[i] +
|
|
|
|
PM_HEIGHT + 3, true);
|
2006-03-25 13:35:31 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-04-22 23:51:06 +00:00
|
|
|
screen_put_cursorxy(&screens[i], 0,
|
2006-07-20 22:44:10 +00:00
|
|
|
filename_offset[i] +
|
|
|
|
PM_HEIGHT + 4, true);
|
2006-03-25 13:35:31 +00:00
|
|
|
break;
|
2006-08-16 23:26:55 +00:00
|
|
|
#ifdef HAVE_AGC
|
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
for(i = 0; i < screen_update; i++)
|
|
|
|
screen_put_cursorxy(&screens[i], 0,
|
|
|
|
filename_offset[i] +
|
|
|
|
PM_HEIGHT + line[i], true);
|
|
|
|
break;
|
|
|
|
#endif /* HAVE_AGC */
|
2006-03-25 13:35:31 +00:00
|
|
|
default:
|
2006-07-31 13:12:40 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-04-22 23:51:06 +00:00
|
|
|
screen_put_cursorxy(&screens[i], 0,
|
2006-07-20 22:44:10 +00:00
|
|
|
filename_offset[i] +
|
|
|
|
PM_HEIGHT + 2, true);
|
2006-03-25 13:35:31 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-16 23:26:55 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_AGC
|
|
|
|
hist_time++;
|
|
|
|
#endif
|
2006-08-28 22:38:41 +00:00
|
|
|
|
2006-07-31 12:55:27 +00:00
|
|
|
for(i = 0; i < screen_update; i++)
|
2006-03-25 13:35:31 +00:00
|
|
|
{
|
2006-07-31 12:55:27 +00:00
|
|
|
gui_statusbar_draw(&(statusbars.statusbars[i]), true);
|
2007-08-25 15:53:54 +00:00
|
|
|
peak_meter_screen(&screens[i], pm_x, pm_y[i], h*PM_HEIGHT);
|
2006-03-25 13:35:31 +00:00
|
|
|
screens[i].update();
|
|
|
|
}
|
2005-06-04 10:19:45 +00:00
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
/* draw the trigger status */
|
2006-11-09 12:27:56 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
trig_width[i] = ((screens[i].height < 64) ||
|
|
|
|
((screens[i].height < 72) && (PM_HEIGHT > 1))) ?
|
|
|
|
screens[i].width - 14 * w : screens[i].width;
|
|
|
|
trig_xpos[i] = screens[i].width - trig_width[i];
|
|
|
|
trig_ypos[i] = ((screens[i].height < 72) && (PM_HEIGHT > 1)) ?
|
|
|
|
h*2 :
|
|
|
|
h*(1 + filename_offset[i] + PM_HEIGHT + line[i]
|
|
|
|
#ifdef HAVE_AGC
|
|
|
|
+ 1
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
if (peak_meter_trigger_status() != TRIG_OFF)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2006-11-09 12:27:56 +00:00
|
|
|
peak_meter_draw_trig(trig_xpos, trig_ypos, trig_width,
|
|
|
|
screen_update);
|
2006-07-31 12:55:27 +00:00
|
|
|
for(i = 0; i < screen_update; i++){
|
2006-11-09 12:27:56 +00:00
|
|
|
screens[i].update_rect(trig_xpos[i], trig_ypos[i],
|
|
|
|
trig_width[i] + 2, TRIG_HEIGHT);
|
2006-07-19 15:30:40 +00:00
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
}
|
2003-06-19 12:08:22 +00:00
|
|
|
|
2005-04-04 12:06:29 +00:00
|
|
|
if(audio_stat & AUDIO_STATUS_ERROR)
|
2003-06-19 12:08:22 +00:00
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
}
|
2006-08-28 22:38:41 +00:00
|
|
|
} /* end while(!done) */
|
2004-11-08 13:20:43 +00:00
|
|
|
|
2005-11-12 04:00:56 +00:00
|
|
|
audio_stat = audio_status();
|
|
|
|
if (audio_stat & AUDIO_STATUS_ERROR)
|
2003-06-19 12:08:22 +00:00
|
|
|
{
|
2007-03-16 21:56:08 +00:00
|
|
|
gui_syncsplash(0, str(LANG_SYSFONT_DISK_FULL));
|
2005-11-20 01:02:14 +00:00
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
2006-07-19 15:30:40 +00:00
|
|
|
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
screens[i].update();
|
|
|
|
|
2005-04-04 12:06:29 +00:00
|
|
|
audio_error_clear();
|
2003-06-19 12:08:22 +00:00
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
2006-08-20 21:33:40 +00:00
|
|
|
if (action_userabort(TIMEOUT_NOBLOCK))
|
2003-06-19 12:08:22 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
2007-06-22 09:34:57 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-08-25 15:53:54 +00:00
|
|
|
rec_command(RECORDING_CMD_STOP);
|
2005-11-12 04:00:56 +00:00
|
|
|
audio_close_recording();
|
2006-06-30 21:24:20 +00:00
|
|
|
|
2007-05-20 20:26:36 +00:00
|
|
|
#ifdef HAVE_FMRADIO_REC
|
2006-08-28 22:38:41 +00:00
|
|
|
if (radio_status != FMRADIO_OFF)
|
|
|
|
/* Restore radio playback - radio_status should be unchanged if started
|
|
|
|
through fm radio screen (barring usb connect) */
|
|
|
|
rec_set_source(AUDIO_SRC_FMRADIO, (radio_status & FMRADIO_PAUSED) ?
|
|
|
|
SRCF_FMRADIO_PAUSED : SRCF_FMRADIO_PLAYING);
|
|
|
|
else
|
2006-06-30 21:48:01 +00:00
|
|
|
#endif
|
2006-08-28 22:38:41 +00:00
|
|
|
/* Go back to playback mode */
|
|
|
|
rec_set_source(AUDIO_SRC_PLAYBACK, SRCF_PLAYBACK);
|
2006-06-30 21:24:20 +00:00
|
|
|
|
2007-10-19 15:31:42 +00:00
|
|
|
/* restore talking */
|
|
|
|
talk_disable(false);
|
2006-08-28 22:38:41 +00:00
|
|
|
#else /* !SWCODEC */
|
2005-04-04 12:06:29 +00:00
|
|
|
audio_init_playback();
|
2006-08-28 22:38:41 +00:00
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
/* make sure the trigger is really turned off */
|
|
|
|
peak_meter_trigger(false);
|
|
|
|
peak_meter_set_trigger_listener(NULL);
|
|
|
|
|
2007-06-22 09:34:57 +00:00
|
|
|
rec_status &= ~RCSTAT_IN_RECSCREEN;
|
2004-07-06 12:17:14 +00:00
|
|
|
sound_settings_apply();
|
2003-11-20 00:33:43 +00:00
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
screens[i].setfont(FONT_UI);
|
2004-01-21 14:58:40 +00:00
|
|
|
|
2007-06-22 09:34:57 +00:00
|
|
|
/* if the directory was created or recording happened, make sure the
|
|
|
|
browser is updated */
|
|
|
|
if (rec_status & (RCSTAT_CREATED_DIRECTORY | RCSTAT_HAVE_RECORDED))
|
2004-01-21 14:58:40 +00:00
|
|
|
reload_directory();
|
|
|
|
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL) && !defined(SIMULATOR)
|
2005-04-04 09:12:12 +00:00
|
|
|
ata_set_led_enabled(true);
|
|
|
|
#endif
|
2007-05-19 00:27:24 +00:00
|
|
|
|
|
|
|
settings_save();
|
|
|
|
|
2007-06-22 09:34:57 +00:00
|
|
|
return (rec_status & RCSTAT_BEEN_IN_USB_MODE) != 0;
|
2006-08-28 22:38:41 +00:00
|
|
|
} /* recording_screen */
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-08-20 21:33:40 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
2006-12-25 14:01:47 +00:00
|
|
|
static bool f2_rec_screen(void)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
2006-11-06 18:07:30 +00:00
|
|
|
static const char* const freq_str[6] =
|
|
|
|
{
|
|
|
|
"44.1kHz",
|
|
|
|
"48kHz",
|
|
|
|
"32kHz",
|
|
|
|
"22.05kHz",
|
|
|
|
"24kHz",
|
|
|
|
"16kHz"
|
|
|
|
};
|
|
|
|
|
2002-11-10 16:42:31 +00:00
|
|
|
bool exit = false;
|
|
|
|
bool used = false;
|
2006-07-19 15:30:40 +00:00
|
|
|
int w, h, i;
|
2002-11-10 16:42:31 +00:00
|
|
|
char buf[32];
|
2004-07-26 16:06:59 +00:00
|
|
|
int button;
|
2006-11-06 18:07:30 +00:00
|
|
|
struct audio_recording_options rec_options;
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].setfont(FONT_SYSFIXED);
|
|
|
|
screens[i].getstringsize("A",&w,&h);
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
|
|
|
|
while (!exit) {
|
2004-08-01 23:34:44 +00:00
|
|
|
const char* ptr=NULL;
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].clear_display();
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
/* Recording quality */
|
2006-08-07 21:24:22 +00:00
|
|
|
screens[i].putsxy(0, LCD_HEIGHT/2 - h*2,
|
|
|
|
str(LANG_SYSFONT_RECORDING_QUALITY));
|
2006-07-19 15:30:40 +00:00
|
|
|
}
|
|
|
|
|
2006-09-09 14:53:30 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%d", global_settings.rec_quality);
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].putsxy(0, LCD_HEIGHT/2-h, buf);
|
|
|
|
screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastBackward],
|
2005-07-06 22:58:02 +00:00
|
|
|
LCD_WIDTH/2 - 16, LCD_HEIGHT/2 - 4, 7, 8);
|
2006-07-19 15:30:40 +00:00
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
|
|
|
|
/* Frequency */
|
2006-08-07 21:24:22 +00:00
|
|
|
snprintf(buf, sizeof buf, "%s:", str(LANG_SYSFONT_RECORDING_FREQUENCY));
|
2002-11-10 23:18:33 +00:00
|
|
|
ptr = freq_str[global_settings.rec_frequency];
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].getstringsize(buf,&w,&h);
|
|
|
|
screens[i].putsxy((LCD_WIDTH-w)/2, LCD_HEIGHT - h*2, buf);
|
|
|
|
screens[i].getstringsize(ptr, &w, &h);
|
|
|
|
screens[i].putsxy((LCD_WIDTH-w)/2, LCD_HEIGHT - h, ptr);
|
|
|
|
screens[i].mono_bitmap(bitmap_icons_7x8[Icon_DownArrow],
|
|
|
|
LCD_WIDTH/2 - 3, LCD_HEIGHT - h*3, 7, 8);
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
|
|
|
|
/* Channel mode */
|
2002-11-10 23:18:33 +00:00
|
|
|
switch ( global_settings.rec_channels ) {
|
2002-11-10 16:42:31 +00:00
|
|
|
case 0:
|
2006-08-07 21:24:22 +00:00
|
|
|
ptr = str(LANG_SYSFONT_CHANNEL_STEREO);
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2006-08-07 21:24:22 +00:00
|
|
|
ptr = str(LANG_SYSFONT_CHANNEL_MONO);
|
2002-11-10 16:42:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
2007-08-05 19:19:39 +00:00
|
|
|
screens[i].getstringsize(str(LANG_SYSFONT_CHANNELS), &w, &h);
|
2006-07-19 15:30:40 +00:00
|
|
|
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2,
|
2007-08-05 19:19:39 +00:00
|
|
|
str(LANG_SYSFONT_CHANNELS));
|
|
|
|
screens[i].getstringsize(str(LANG_SYSFONT_MODE), &w, &h);
|
2006-08-07 21:40:11 +00:00
|
|
|
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h,
|
2007-08-05 19:19:39 +00:00
|
|
|
str(LANG_SYSFONT_MODE));
|
2006-07-19 15:30:40 +00:00
|
|
|
screens[i].getstringsize(ptr, &w, &h);
|
|
|
|
screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr);
|
|
|
|
screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastForward],
|
2005-07-06 22:58:02 +00:00
|
|
|
LCD_WIDTH/2 + 8, LCD_HEIGHT/2 - 4, 7, 8);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
screens[i].update();
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
button = button_get(true);
|
|
|
|
switch (button) {
|
2002-11-10 16:42:31 +00:00
|
|
|
case BUTTON_LEFT:
|
|
|
|
case BUTTON_F2 | BUTTON_LEFT:
|
2002-11-10 23:18:33 +00:00
|
|
|
global_settings.rec_quality++;
|
|
|
|
if(global_settings.rec_quality > 7)
|
|
|
|
global_settings.rec_quality = 0;
|
2002-11-10 16:42:31 +00:00
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUTTON_DOWN:
|
|
|
|
case BUTTON_F2 | BUTTON_DOWN:
|
2002-11-10 23:18:33 +00:00
|
|
|
global_settings.rec_frequency++;
|
|
|
|
if(global_settings.rec_frequency > 5)
|
|
|
|
global_settings.rec_frequency = 0;
|
2002-11-10 16:42:31 +00:00
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUTTON_RIGHT:
|
|
|
|
case BUTTON_F2 | BUTTON_RIGHT:
|
2002-11-10 23:18:33 +00:00
|
|
|
global_settings.rec_channels++;
|
|
|
|
if(global_settings.rec_channels > 1)
|
|
|
|
global_settings.rec_channels = 0;
|
2002-11-10 16:42:31 +00:00
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUTTON_F2 | BUTTON_REL:
|
|
|
|
if ( used )
|
|
|
|
exit = true;
|
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUTTON_F2 | BUTTON_REPEAT:
|
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
default:
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
return true;
|
|
|
|
break;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
rec_init_recording_options(&rec_options);
|
|
|
|
rec_set_recording_options(&rec_options);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2002-11-10 23:18:33 +00:00
|
|
|
set_gain();
|
|
|
|
|
|
|
|
settings_save();
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
screens[i].setfont(FONT_UI);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-12-25 14:01:47 +00:00
|
|
|
static bool f3_rec_screen(void)
|
2002-11-10 16:42:31 +00:00
|
|
|
{
|
|
|
|
bool exit = false;
|
|
|
|
bool used = false;
|
2006-07-19 15:30:40 +00:00
|
|
|
int w, h, i;
|
2004-07-26 16:06:59 +00:00
|
|
|
int button;
|
2002-11-10 23:18:33 +00:00
|
|
|
char *src_str[] =
|
|
|
|
{
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_SRC_MIC),
|
2007-08-05 19:19:39 +00:00
|
|
|
str(LANG_SYSFONT_LINE_IN),
|
2006-08-07 21:24:22 +00:00
|
|
|
str(LANG_SYSFONT_RECORDING_SRC_DIGITAL)
|
2002-11-10 23:18:33 +00:00
|
|
|
};
|
2006-11-06 18:07:30 +00:00
|
|
|
struct audio_recording_options rec_options;
|
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].setfont(FONT_SYSFIXED);
|
|
|
|
screens[i].getstringsize("A",&w,&h);
|
|
|
|
}
|
|
|
|
|
2002-11-10 16:42:31 +00:00
|
|
|
while (!exit) {
|
|
|
|
char* ptr=NULL;
|
2002-11-10 23:18:33 +00:00
|
|
|
ptr = src_str[global_settings.rec_source];
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].clear_display();
|
|
|
|
|
|
|
|
/* Recording source */
|
2006-08-07 21:24:22 +00:00
|
|
|
screens[i].putsxy(0, LCD_HEIGHT/2 - h*2,
|
|
|
|
str(LANG_SYSFONT_RECORDING_SOURCE));
|
2006-07-19 15:30:40 +00:00
|
|
|
|
|
|
|
screens[i].getstringsize(ptr, &w, &h);
|
|
|
|
screens[i].putsxy(0, LCD_HEIGHT/2-h, ptr);
|
|
|
|
screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastBackward],
|
|
|
|
LCD_WIDTH/2 - 16, LCD_HEIGHT/2 - 4, 7, 8);
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2005-04-04 09:12:12 +00:00
|
|
|
/* trigger setup */
|
2006-08-07 21:24:22 +00:00
|
|
|
ptr = str(LANG_SYSFONT_RECORD_TRIGGER);
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
screens[i].getstringsize(ptr,&w,&h);
|
|
|
|
screens[i].putsxy((LCD_WIDTH-w)/2, LCD_HEIGHT - h*2, ptr);
|
|
|
|
screens[i].mono_bitmap(bitmap_icons_7x8[Icon_DownArrow],
|
2005-07-06 22:58:02 +00:00
|
|
|
LCD_WIDTH/2 - 3, LCD_HEIGHT - h*3, 7, 8);
|
2005-04-04 09:12:12 +00:00
|
|
|
|
2006-07-19 15:30:40 +00:00
|
|
|
screens[i].update();
|
|
|
|
}
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
button = button_get(true);
|
|
|
|
switch (button) {
|
2005-04-04 09:12:12 +00:00
|
|
|
case BUTTON_DOWN:
|
|
|
|
case BUTTON_F3 | BUTTON_DOWN:
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
rectrigger();
|
|
|
|
settings_apply_trigger();
|
|
|
|
#endif
|
|
|
|
exit = true;
|
|
|
|
break;
|
|
|
|
|
2002-11-10 16:42:31 +00:00
|
|
|
case BUTTON_LEFT:
|
|
|
|
case BUTTON_F3 | BUTTON_LEFT:
|
2002-11-10 23:18:33 +00:00
|
|
|
global_settings.rec_source++;
|
2006-08-28 22:38:41 +00:00
|
|
|
if(global_settings.rec_source > AUDIO_SRC_MAX)
|
2002-11-10 23:18:33 +00:00
|
|
|
global_settings.rec_source = 0;
|
2002-11-10 16:42:31 +00:00
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUTTON_F3 | BUTTON_REL:
|
|
|
|
if ( used )
|
|
|
|
exit = true;
|
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUTTON_F3 | BUTTON_REPEAT:
|
|
|
|
used = true;
|
|
|
|
break;
|
|
|
|
|
2004-07-26 16:06:59 +00:00
|
|
|
default:
|
|
|
|
if(default_event_handler(button) == SYS_USB_CONNECTED)
|
|
|
|
return true;
|
|
|
|
break;
|
2002-11-10 16:42:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
rec_init_recording_options(&rec_options);
|
|
|
|
rec_set_recording_options(&rec_options);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
2002-11-10 23:18:33 +00:00
|
|
|
set_gain();
|
2003-12-31 03:13:29 +00:00
|
|
|
|
2002-11-10 23:18:33 +00:00
|
|
|
settings_save();
|
2006-07-19 15:30:40 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
screens[i].setfont(FONT_UI);
|
2002-11-10 16:42:31 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2006-08-28 22:38:41 +00:00
|
|
|
#endif /* CONFIG_KEYPAD == RECORDER_PAD */
|
2004-10-09 11:39:30 +00:00
|
|
|
|
2005-11-12 04:00:56 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
void audio_beep(int duration)
|
|
|
|
{
|
|
|
|
/* dummy */
|
|
|
|
(void)duration;
|
|
|
|
}
|
2006-04-01 15:52:06 +00:00
|
|
|
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
/* stubs for recording sim */
|
2006-04-30 23:18:21 +00:00
|
|
|
void audio_init_recording(unsigned int buffer_offset)
|
2006-04-01 15:52:06 +00:00
|
|
|
{
|
2006-04-30 23:18:21 +00:00
|
|
|
buffer_offset = buffer_offset;
|
2006-04-01 15:52:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void audio_close_recording(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-12-10 14:32:38 +00:00
|
|
|
unsigned long pcm_rec_get_warnings(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-04-01 15:52:06 +00:00
|
|
|
unsigned long audio_recorded_time(void)
|
|
|
|
{
|
|
|
|
return 123;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long audio_num_recorded_bytes(void)
|
|
|
|
{
|
|
|
|
return 5 * 1024 * 1024;
|
|
|
|
}
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
void rec_set_source(int source, unsigned flags)
|
2006-08-28 22:38:41 +00:00
|
|
|
{
|
|
|
|
source = source;
|
|
|
|
flags = flags;
|
|
|
|
}
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
void audio_set_recording_options(struct audio_recording_options *options)
|
|
|
|
{
|
|
|
|
options = options;
|
2006-04-01 15:52:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void audio_set_recording_gain(int left, int right, int type)
|
|
|
|
{
|
|
|
|
left = left;
|
|
|
|
right = right;
|
|
|
|
type = type;
|
|
|
|
}
|
|
|
|
|
2007-06-08 23:42:04 +00:00
|
|
|
void audio_record(const char *filename)
|
2007-05-04 15:14:56 +00:00
|
|
|
{
|
2007-06-08 23:42:04 +00:00
|
|
|
filename = filename;
|
2007-05-04 15:14:56 +00:00
|
|
|
}
|
|
|
|
|
2007-06-08 23:42:04 +00:00
|
|
|
void audio_new_file(const char *filename)
|
2006-12-17 11:25:42 +00:00
|
|
|
{
|
|
|
|
filename = filename;
|
|
|
|
}
|
|
|
|
|
2006-04-01 15:52:06 +00:00
|
|
|
void audio_stop_recording(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void audio_pause_recording(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void audio_resume_recording(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifdef SIMULATOR */
|
|
|
|
#endif /* #ifdef CONFIG_CODEC == SWCODEC */
|
2005-11-12 04:00:56 +00:00
|
|
|
|
2004-09-29 19:51:41 +00:00
|
|
|
#endif /* HAVE_RECORDING */
|