1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
30 #include "powermgmt.h"
34 #if CONFIG_CODEC == SWCODEC
36 #include "enc_config.h"
38 #if defined(HAVE_SPDIF_IN) || defined(HAVE_SPDIF_OUT)
41 #endif /* CONFIG_CODEC == SWCODEC */
42 #include "pcm_record.h"
43 #include "recording.h"
44 #include "mp3_playback.h"
53 #include "peakmeter.h"
55 #include "sound_menu.h"
56 #include "timefuncs.h"
59 #include "filefuncs.h"
67 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
68 && !defined(SIMULATOR)
72 #include "screen_access.h"
78 #include "appevents.h"
81 /* This array holds the record timer interval lengths, in seconds */
82 static const unsigned long rec_timer_seconds
[] =
96 10L*60*60, /* 10:00 */
97 12L*60*60, /* 12:00 */
98 18L*60*60, /* 18:00 */
102 static unsigned int rec_timesplit_seconds(void)
104 return rec_timer_seconds
[global_settings
.rec_timesplit
];
107 /* This array holds the record size interval lengths, in bytes */
108 static const unsigned long rec_size_bytes
[] =
111 5*1024*1024, /* 5MB */
112 10*1024*1024, /* 10MB */
113 15*1024*1024, /* 15MB */
114 32*1024*1024, /* 32MB */
115 64*1024*1024, /* 64MB */
116 75*1024*1024, /* 75MB */
117 100*1024*1024, /* 100MB */
118 128*1024*1024, /* 128MB */
119 256*1024*1024, /* 256MB */
120 512*1024*1024, /* 512MB */
121 650*1024*1024, /* 650MB */
122 700*1024*1024, /* 700MB */
123 1024*1024*1024, /* 1GB */
124 1536*1024*1024, /* 1.5GB */
125 1792*1024*1024, /* 1.75GB */
128 static unsigned long rec_sizesplit_bytes(void)
130 return rec_size_bytes
[global_settings
.rec_sizesplit
];
133 void settings_apply_trigger(void)
135 int start_thres
, stop_thres
;
136 if (global_settings
.peak_meter_dbfs
)
138 start_thres
= global_settings
.rec_start_thres_db
- 1;
139 stop_thres
= global_settings
.rec_stop_thres_db
- 1;
143 start_thres
= global_settings
.rec_start_thres_linear
;
144 stop_thres
= global_settings
.rec_stop_thres_linear
;
147 peak_meter_define_trigger(
149 global_settings
.rec_start_duration
*HZ
,
150 MIN(global_settings
.rec_start_duration
*HZ
/ 2, 2*HZ
),
152 global_settings
.rec_stop_postrec
*HZ
,
153 global_settings
.rec_stop_gap
*HZ
156 /* recording screen status flags */
157 enum rec_status_flags
159 RCSTAT_IN_RECSCREEN
= 0x00000001,
160 RCSTAT_BEEN_IN_USB_MODE
= 0x00000002,
161 RCSTAT_CREATED_DIRECTORY
= 0x00000004,
162 RCSTAT_HAVE_RECORDED
= 0x00000008,
165 static int rec_status
= 0;
167 bool in_recording_screen(void)
169 return (rec_status
& RCSTAT_IN_RECSCREEN
) != 0;
172 #if CONFIG_KEYPAD == RECORDER_PAD
173 static bool f2_rec_screen(void);
174 static bool f3_rec_screen(void);
177 #define MAX_FILE_SIZE 0x7F800000 /* 2 GB - 4 MB */
179 #ifndef HAVE_REMOTE_LCD
180 static const int screen_update
= NB_SCREENS
;
182 static int screen_update
= NB_SCREENS
;
183 static bool remote_display_on
= true;
186 /* as we have the ability to disable the remote, we need an alternative loop */
187 #define FOR_NB_ACTIVE_SCREENS(i) for(int i = 0; i < screen_update; i++)
189 static bool update_list
= false; /* (GIU) list needs updating */
191 /** File name creation **/
193 /* current file number to assist in creating unique numbered filenames
194 without actually having to create the file on disk */
195 static int file_number
= -1;
196 #endif /* CONFIG_RTC */
198 #if CONFIG_CODEC == SWCODEC
200 #define REC_FILE_ENDING(rec_format) \
201 (audio_formats[rec_format_afmt[rec_format]].ext_list)
203 #else /* CONFIG_CODEC != SWCODEC */
205 /* default record file extension for HWCODEC */
206 #define REC_FILE_ENDING(rec_format) \
207 (audio_formats[AFMT_MPA_L3].ext_list)
209 #endif /* CONFIG_CODEC == SWCODEC */
211 /* path for current file */
212 static char path_buffer
[MAX_PATH
];
214 /** Automatic Gain Control (AGC) **/
217 * peak_time is incremented every 0.2s, every 2nd run of record screen loop.
218 * hist_time is incremented every 0.5s, display update.
219 * peak_time is the counter of the peak hold read and agc process,
220 * overflow every 13 years 8-)
222 static long peak_time
= 0;
224 static short peak_valid_mem
[4];
225 #define BAL_MEM_SIZE 24
226 static short balance_mem
[BAL_MEM_SIZE
];
228 /* Automatic Gain Control */
229 #define AGC_MODE_SIZE 5
230 #define AGC_SAFETY_MODE 0
232 static const char* agc_preset_str
[] =
233 { "Off", "S", "L", "D", "M", "V" };
240 #define AGC_CLIP 32766
241 #define AGC_PEAK 29883 /* fast gain reduction threshold -0.8dB */
242 #define AGC_HIGH 27254 /* accelerated gain reduction threshold -1.6dB */
243 #define AGC_IMG 823 /* threshold for balance control -32dB */
244 /* autogain high level thresholds (-3dB, -7dB, -4dB, -5dB, -5dB) */
245 static const short agc_th_hi
[AGC_MODE_SIZE
] =
246 { 23197, 14637, 21156, 18428, 18426 };
247 /* autogain low level thresholds (-14dB, -11dB, -6dB, -7dB, -8dB) */
248 static const short agc_th_lo
[AGC_MODE_SIZE
] =
249 { 6538, 9235, 16422, 14636, 13045 };
250 /* autogain threshold times [1/5s] or [200ms] */
251 static const short agc_tdrop
[AGC_MODE_SIZE
] =
252 { 900, 225, 150, 60, 8 };
253 static const short agc_trise
[AGC_MODE_SIZE
] =
254 { 9000, 750, 400, 150, 20 };
255 static const short agc_tbal
[AGC_MODE_SIZE
] =
256 { 4500, 500, 300, 100, 15 };
258 static bool agc_enable
= true;
259 static short agc_preset
;
261 static int agc_left
= 0;
262 static int agc_right
= 0;
263 /* AGC time since high target volume was exceeded */
264 static short agc_droptime
= 0;
265 /* AGC time since volume fallen below low target */
266 static short agc_risetime
= 0;
267 /* AGC balance time exceeding +/- 0.7dB */
268 static short agc_baltime
= 0;
269 /* AGC maximum gain */
270 static short agc_maxgain
;
271 #endif /* HAVE_AGC */
272 #if defined(HAVE_AGC)
273 static long hist_time
= 0;
274 #endif /* HAVE_AGC */
276 static void set_gain(void)
279 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
281 if (global_settings
.rec_mic_gain
> sound_max(SOUND_MIC_GAIN
))
282 global_settings
.rec_mic_gain
= sound_max(SOUND_MIC_GAIN
);
284 if (global_settings
.rec_mic_gain
< sound_min(SOUND_MIC_GAIN
))
285 global_settings
.rec_mic_gain
= sound_min(SOUND_MIC_GAIN
);
287 audio_set_recording_gain(global_settings
.rec_mic_gain
,
293 if (global_settings
.rec_left_gain
> sound_max(SOUND_LEFT_GAIN
))
294 global_settings
.rec_left_gain
= sound_max(SOUND_LEFT_GAIN
);
296 if (global_settings
.rec_left_gain
< sound_min(SOUND_LEFT_GAIN
))
297 global_settings
.rec_left_gain
= sound_min(SOUND_LEFT_GAIN
);
299 if (global_settings
.rec_right_gain
> sound_max(SOUND_RIGHT_GAIN
))
300 global_settings
.rec_right_gain
= sound_max(SOUND_RIGHT_GAIN
);
302 if (global_settings
.rec_right_gain
< sound_min(SOUND_RIGHT_GAIN
))
303 global_settings
.rec_right_gain
= sound_min(SOUND_RIGHT_GAIN
);
305 /* AUDIO_SRC_LINEIN, AUDIO_SRC_FMRADIO, AUDIO_SRC_SPDIF */
306 audio_set_recording_gain(global_settings
.rec_left_gain
,
307 global_settings
.rec_right_gain
,
310 /* reset the clipping indicators */
311 peak_meter_set_clip_hold(global_settings
.peak_meter_clip_hold
);
316 /* Read peak meter values & calculate balance.
317 * Returns validity of peak values.
318 * Used for automatic gain control and history diagram.
320 static bool read_peak_levels(int *peak_l
, int *peak_r
, int *balance
)
322 peak_meter_get_peakhold(peak_l
, peak_r
);
323 peak_valid_mem
[peak_time
% 3] = *peak_l
;
324 if (((peak_valid_mem
[0] == peak_valid_mem
[1]) &&
325 (peak_valid_mem
[1] == peak_valid_mem
[2])) &&
326 ((*peak_l
< 32767) || storage_disk_is_active()))
329 if (*peak_r
> *peak_l
)
330 balance_mem
[peak_time
% BAL_MEM_SIZE
] = (*peak_l
?
331 MIN((10000 * *peak_r
) / *peak_l
- 10000, 15118) : 15118);
333 balance_mem
[peak_time
% BAL_MEM_SIZE
] = (*peak_r
?
334 MAX(10000 - (10000 * *peak_l
) / *peak_r
, -15118) : -15118);
337 for (i
= 0; i
< BAL_MEM_SIZE
; i
++)
338 *balance
+= balance_mem
[i
];
339 *balance
= *balance
/ BAL_MEM_SIZE
;
344 /* AGC helper function to check if maximum gain is reached */
345 static bool agc_gain_is_max(bool left
, bool right
)
347 /* range -128...+108 [0.5dB] */
348 short gain_current_l
;
349 short gain_current_r
;
354 switch (global_settings
.rec_source
)
356 #if defined(HAVE_LINE_REC) || defined(HAVE_FMRADIO_REC)
357 HAVE_LINE_REC_(case AUDIO_SRC_LINEIN
:)
358 HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO
:)
359 gain_current_l
= global_settings
.rec_left_gain
;
360 gain_current_r
= global_settings
.rec_right_gain
;
362 #endif /* LINE, FMRADIO */
363 #if defined(HAVE_MIC_REC)
366 gain_current_l
= global_settings
.rec_mic_gain
;
367 gain_current_r
= global_settings
.rec_mic_gain
;
371 return ((left
&& (gain_current_l
>= agc_maxgain
)) ||
372 (right
&& (gain_current_r
>= agc_maxgain
)));
375 static void change_recording_gain(bool increment
, bool left
, bool right
)
377 int factor
= (increment
? 1 : -1);
379 switch (global_settings
.rec_source
)
381 #if defined(HAVE_LINE_REC) || defined(HAVE_FMRADIO_REC)
382 HAVE_LINE_REC_(case AUDIO_SRC_LINEIN
:)
383 HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO
:)
384 if (left
) global_settings
.rec_left_gain
+=
385 factor
* sound_steps(SOUND_LEFT_GAIN
);
386 if (right
) global_settings
.rec_right_gain
+=
387 factor
* sound_steps(SOUND_RIGHT_GAIN
);
389 #endif /* LINE, FMRADIO */
390 #if defined(HAVE_MIC_REC)
392 global_settings
.rec_mic_gain
+= factor
* sound_steps(SOUND_MIC_GAIN
);
398 * Handle automatic gain control (AGC).
399 * Change recording gain if peak_x levels are above or below
400 * target volume for specified timeouts.
402 static void auto_gain_control(int *peak_l
, int *peak_r
, int *balance
)
408 if (*peak_l
> agc_left
)
411 agc_left
-= (agc_left
- *peak_l
+ 3) >> 2;
412 if (*peak_r
> agc_right
)
415 agc_right
-= (agc_right
- *peak_r
+ 3) >> 2;
416 agc_mono
= (agc_left
+ agc_right
) / 2;
418 agc_mode
= abs(agc_preset
) - 1;
424 if (agc_mode
!= AGC_SAFETY_MODE
) {
425 /* Automatic balance control - only if not in safety mode */
426 if ((agc_left
> AGC_IMG
) && (agc_right
> AGC_IMG
))
431 agc_baltime
-= !(peak_time
% 4); /* 0.47 - 0.75dB */
432 else if (*balance
> -4125)
433 agc_baltime
--; /* 0.75 - 3.00dB */
434 else if (*balance
> -7579)
435 agc_baltime
-= 2; /* 3.00 - 4.90dB */
437 agc_baltime
-= !(peak_time
% 8); /* 4.90 - inf dB */
439 agc_baltime
-= (peak_time
% 2);
441 else if (*balance
> 556)
444 agc_baltime
+= !(peak_time
% 4);
445 else if (*balance
< 4125)
447 else if (*balance
< 7579)
450 agc_baltime
+= !(peak_time
% 8);
452 agc_baltime
+= (peak_time
% 2);
455 if ((*balance
* agc_baltime
) < 0)
458 agc_baltime
-= peak_time
% 2;
460 agc_baltime
+= peak_time
% 2;
463 increment
= ((agc_risetime
/ 2) > agc_droptime
);
465 if (agc_baltime
< -agc_tbal
[agc_mode
])
467 if (!increment
|| !agc_gain_is_max(!increment
, increment
)) {
468 change_recording_gain(increment
, !increment
, increment
);
473 else if (agc_baltime
> +agc_tbal
[agc_mode
])
475 if (!increment
|| !agc_gain_is_max(increment
, !increment
)) {
476 change_recording_gain(increment
, increment
, !increment
);
482 else if (!(hist_time
% 4))
491 /* Automatic gain control */
492 if ((agc_left
> agc_th_hi
[agc_mode
]) || (agc_right
> agc_th_hi
[agc_mode
]))
494 if ((agc_left
> AGC_CLIP
) || (agc_right
> AGC_CLIP
))
495 agc_droptime
+= agc_tdrop
[agc_mode
] /
496 (global_settings
.rec_agc_cliptime
+ 1);
497 if (agc_left
> AGC_HIGH
) {
500 if (agc_left
> AGC_PEAK
)
503 if (agc_right
> AGC_HIGH
) {
506 if (agc_right
> AGC_PEAK
)
509 if (agc_mono
> agc_th_hi
[agc_mode
])
512 agc_droptime
+= !(peak_time
% 2);
514 if (agc_droptime
>= agc_tdrop
[agc_mode
])
516 change_recording_gain(false, true, true);
521 agc_risetime
= MAX(agc_risetime
- 1, 0);
523 else if (agc_mono
< agc_th_lo
[agc_mode
])
525 if (agc_mono
< (agc_th_lo
[agc_mode
] / 8))
526 agc_risetime
+= !(peak_time
% 5);
527 else if (agc_mono
< (agc_th_lo
[agc_mode
] / 2))
532 if (agc_risetime
>= agc_trise
[agc_mode
]) {
533 if ((agc_mode
!= AGC_SAFETY_MODE
) &&
534 (!agc_gain_is_max(true, true))) {
535 change_recording_gain(true, true, true);
541 agc_droptime
= MAX(agc_droptime
- 1, 0);
543 else if (!(peak_time
% 6)) /* on target level every 1.2 sec */
545 agc_risetime
= MAX(agc_risetime
- 1, 0);
546 agc_droptime
= MAX(agc_droptime
- 1, 0);
549 #endif /* HAVE_AGC */
551 static const char* const fmtstr
[] =
553 "%c%d %s", /* no decimals */
554 "%c%d.%d %s ", /* 1 decimal */
555 "%c%d.%02d %s " /* 2 decimals */
558 static const char factor
[] = {1, 10, 100};
560 static char *fmt_gain(int snd
, int val
, char *str
, int len
)
566 val
= sound_val2phys(snd
, val
);
572 numdec
= sound_numdecimals(snd
);
573 unit
= sound_unit(snd
);
577 i
= val
/ factor
[numdec
];
578 d
= val
% factor
[numdec
];
579 snprintf(str
, len
, fmtstr
[numdec
], sign
, i
, d
, unit
);
582 snprintf(str
, len
, fmtstr
[numdec
], sign
, val
, unit
);
587 /* the list below must match enum audio_sources in audio.h */
588 static const char* const prestr
[] =
590 HAVE_MIC_IN_([AUDIO_SRC_MIC
] = "R_MIC_",)
591 HAVE_LINE_REC_([AUDIO_SRC_LINEIN
] = "R_LINE_",)
592 HAVE_SPDIF_IN_([AUDIO_SRC_SPDIF
] = "R_SPDIF_",)
593 HAVE_FMRADIO_REC_([AUDIO_SRC_FMRADIO
] = "R_FM_",)
596 char *rec_create_filename(char *buffer
)
599 const char *pref
= "R_";
601 /* Directory existence and writeablility should have already been
602 * verified - do not pass NULL pointers to pcmrec */
604 if((unsigned)global_settings
.rec_source
< AUDIO_NUM_SOURCES
)
606 pref
= prestr
[global_settings
.rec_source
];
609 strcpy(buffer
, !strcmp(global_settings
.rec_directory
, "/")?
610 "": global_settings
.rec_directory
);
612 snprintf(ext
, sizeof(ext
), ".%s",
613 REC_FILE_ENDING(global_settings
.rec_format
));
616 return create_numbered_filename(buffer
, buffer
, pref
, ext
, 4,
619 /* We'll wait at least up to the start of the next second so no duplicate
621 return create_datetime_filename(buffer
, buffer
, pref
, ext
, true);
626 /* Hit disk to get a starting filename for the type */
627 static void rec_init_filename(void)
630 rec_create_filename(path_buffer
);
635 int rec_create_directory(void)
638 const char * const folder
= global_settings
.rec_directory
;
640 if (strcmp(folder
, "/") && !dir_exists(folder
))
646 while (action_userabort(HZ
) == false)
649 str(LANG_REC_DIR_NOT_WRITABLE
),
650 str(LANG_OFF_ABORT
));
655 rec_status
|= RCSTAT_CREATED_DIRECTORY
;
663 void rec_init_recording_options(struct audio_recording_options
*options
)
665 options
->rec_source
= global_settings
.rec_source
;
666 options
->rec_frequency
= global_settings
.rec_frequency
;
667 options
->rec_channels
= global_settings
.rec_channels
;
668 options
->rec_prerecord_time
= global_settings
.rec_prerecord_time
;
669 #if CONFIG_CODEC == SWCODEC
670 options
->rec_mono_mode
= global_settings
.rec_mono_mode
;
671 options
->rec_source_flags
= 0;
672 options
->enc_config
.rec_format
= global_settings
.rec_format
;
673 global_to_encoder_config(&options
->enc_config
);
675 options
->rec_quality
= global_settings
.rec_quality
;
676 options
->rec_editable
= global_settings
.rec_editable
;
680 #if CONFIG_CODEC == SWCODEC
681 void rec_set_source(int source
, unsigned flags
)
683 /* Set audio input source, power up/down devices */
684 audio_set_input_source(source
, flags
);
686 /* Set peakmeters for recording or reset to playback */
687 peak_meter_playback((flags
& SRCF_RECORDING
) == 0);
688 peak_meter_enable(true);
690 #endif /* CONFIG_CODEC == SWCODEC */
692 void rec_set_recording_options(struct audio_recording_options
*options
)
694 #if CONFIG_CODEC != SWCODEC
695 if (global_settings
.rec_prerecord_time
)
697 talk_buffer_steal(); /* will use the mp3 buffer */
699 #else /* == SWCODEC */
700 rec_set_source(options
->rec_source
,
701 options
->rec_source_flags
| SRCF_RECORDING
);
702 #endif /* CONFIG_CODEC != SWCODEC */
704 audio_set_recording_options(options
);
707 void rec_command(enum recording_command cmd
)
711 case RECORDING_CMD_STOP_SHUTDOWN
:
712 pm_activate_clipcount(false);
713 audio_stop_recording();
714 #if CONFIG_CODEC == SWCODEC
715 audio_close_recording();
719 case RECORDING_CMD_STOP
:
720 pm_activate_clipcount(false);
721 audio_stop_recording();
723 case RECORDING_CMD_START
:
724 /* steal mp3 buffer, create unique filename and start recording */
725 pm_reset_clipcount();
726 pm_activate_clipcount(true);
727 #if CONFIG_CODEC != SWCODEC
728 talk_buffer_steal(); /* we use the mp3 buffer */
730 audio_record(rec_create_filename(path_buffer
));
732 case RECORDING_CMD_START_NEWFILE
:
733 /* create unique filename and start recording*/
734 pm_reset_clipcount();
735 pm_activate_clipcount(true); /* just to be sure */
736 audio_new_file(rec_create_filename(path_buffer
));
738 case RECORDING_CMD_PAUSE
:
739 pm_activate_clipcount(false);
740 audio_pause_recording();
742 case RECORDING_CMD_RESUME
:
743 pm_activate_clipcount(true);
744 audio_resume_recording();
750 /* used in trigger_listerner and recording_screen */
751 static unsigned int last_seconds
= 0;
754 * Callback function so that the peak meter code can send an event
755 * to this application. This function can be passed to
756 * peak_meter_set_trigger_listener in order to activate the trigger.
758 static void trigger_listener(int trigger_status
)
760 switch (trigger_status
)
763 if(!(audio_status() & AUDIO_STATUS_RECORD
))
765 rec_status
|= RCSTAT_HAVE_RECORDED
;
766 rec_command(RECORDING_CMD_START
);
767 #if CONFIG_CODEC != SWCODEC
768 /* give control to mpeg thread so that it can start
770 yield(); yield(); yield();
774 /* if we're already recording this is a retrigger */
777 if((audio_status() & AUDIO_STATUS_PAUSE
) &&
778 (global_settings
.rec_trigger_type
== TRIG_TYPE_PAUSE
))
780 rec_command(RECORDING_CMD_RESUME
);
782 /* New file on trig start*/
783 else if (global_settings
.rec_trigger_type
!= TRIG_TYPE_NEW_FILE
)
785 rec_command(RECORDING_CMD_START_NEWFILE
);
786 /* tell recording_screen to reset the time */
792 /* A _change_ to TRIG_READY means the current recording has stopped */
794 if(audio_status() & AUDIO_STATUS_RECORD
)
796 switch(global_settings
.rec_trigger_type
)
798 case TRIG_TYPE_STOP
: /* Stop */
799 rec_command(RECORDING_CMD_STOP
);
802 case TRIG_TYPE_PAUSE
: /* Pause */
803 rec_command(RECORDING_CMD_PAUSE
);
806 case TRIG_TYPE_NEW_FILE
: /* New file on trig stop*/
807 rec_command(RECORDING_CMD_START_NEWFILE
);
808 /* tell recording_screen to reset the time */
812 case 3: /* Stop and shutdown */
813 rec_command(RECORDING_CMD_STOP_SHUTDOWN
);
817 if (global_settings
.rec_trigger_mode
!= TRIG_MODE_REARM
)
819 peak_meter_set_trigger_listener(NULL
);
820 peak_meter_trigger(false);
827 /* Stuff for drawing the screen */
829 enum rec_list_items_stereo
{
845 enum rec_list_items_mono
{
850 ITEM_AGC_MAXDB_M
= 5,
859 #ifdef HAVE_SPDIF_REC
860 enum rec_list_items_spdif
{
862 #if CONFIG_CODEC == SWCODEC
863 ITEM_SAMPLERATE_D
= 6,
873 static int listid_to_enum
[ITEM_COUNT
];
875 static const char* reclist_get_name(int selected_item
, void * data
,
876 char * buffer
, size_t buffer_len
)
882 data
= data
; /* not used */
883 if(selected_item
>= ITEM_COUNT
)
886 switch (listid_to_enum
[selected_item
])
889 snprintf(buffer
, buffer_len
, "%s: %s", str(LANG_VOLUME
),
890 fmt_gain(SOUND_VOLUME
,
891 global_settings
.volume
,
892 buf2
, sizeof(buf2
)));
896 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
898 /* Draw MIC recording gain */
899 snprintf(buffer
, buffer_len
, "%s: %s", str(LANG_GAIN
),
900 fmt_gain(SOUND_MIC_GAIN
,
901 global_settings
.rec_mic_gain
,
902 buf2
, sizeof(buf2
)));
907 int avg_gain
= (global_settings
.rec_left_gain
+
908 global_settings
.rec_right_gain
) / 2;
909 snprintf(buffer
, buffer_len
, "%s: %s", str(LANG_GAIN
),
910 fmt_gain(SOUND_LEFT_GAIN
,
912 buf2
, sizeof(buf2
)));
916 snprintf(buffer
, buffer_len
, "%s: %s",
918 fmt_gain(SOUND_LEFT_GAIN
,
919 global_settings
.rec_left_gain
,
920 buf2
, sizeof(buf2
)));
923 snprintf(buffer
, buffer_len
, "%s: %s",
924 str(LANG_GAIN_RIGHT
),
925 fmt_gain(SOUND_RIGHT_GAIN
,
926 global_settings
.rec_right_gain
,
927 buf2
, sizeof(buf2
)));
931 snprintf(buffer
, buffer_len
, "%s: %s",
932 str(LANG_RECORDING_AGC_PRESET
),
933 agc_preset_str
[agc_preset
]);
937 snprintf(buffer
, buffer_len
, "%s: %s",
938 str(LANG_RECORDING_AGC_MAXGAIN
),
939 fmt_gain(SOUND_LEFT_GAIN
,
940 agc_maxgain
, buf2
, sizeof(buf2
)));
942 else if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
943 snprintf(buffer
, buffer_len
, "%s: %s (%s)",
944 str(LANG_RECORDING_AGC_MAXGAIN
),
945 fmt_gain(SOUND_MIC_GAIN
,
946 agc_maxgain
, buf2
, sizeof(buf2
)),
947 fmt_gain(SOUND_MIC_GAIN
,
948 agc_maxgain
- global_settings
.rec_mic_gain
,
949 buf3
, sizeof(buf3
)));
952 snprintf(buffer
, buffer_len
, "%s: %s (%s)",
953 str(LANG_RECORDING_AGC_MAXGAIN
),
954 fmt_gain(SOUND_LEFT_GAIN
,
955 agc_maxgain
, buf2
, sizeof(buf2
)),
956 fmt_gain(SOUND_LEFT_GAIN
,
958 (global_settings
.rec_left_gain
+
959 global_settings
.rec_right_gain
)/2,
960 buf3
, sizeof(buf3
)));
963 #if CONFIG_CODEC == SWCODEC
964 #ifdef HAVE_SPDIF_REC
965 case ITEM_SAMPLERATE_D
:
966 snprintf(buffer
, buffer_len
, "%s: %lu",
967 str(LANG_RECORDING_FREQUENCY
),
968 pcm_rec_sample_rate());
974 if(audio_status() & AUDIO_STATUS_RECORD
)
976 size_t tot_len
= strlen(path_buffer
) +
977 strlen(str(LANG_RECORDING_FILENAME
)) + 1;
978 if(tot_len
> buffer_len
)
980 snprintf(buffer
, buffer_len
, "%s %s",
981 str(LANG_RECORDING_FILENAME
),
982 path_buffer
+ tot_len
- buffer_len
);
986 snprintf(buffer
, buffer_len
, "%s %s",
987 str(LANG_RECORDING_FILENAME
), path_buffer
);
992 return str(LANG_RECORDING_FILENAME
);
1003 bool recording_start_automatic
= false;
1005 bool recording_screen(bool no_source
)
1008 int done
= -1; /* negative to re-init, positive to quit, zero to run */
1009 char buf
[32]; /* for preparing strings */
1010 char buf2
[32]; /* for preparing strings */
1011 int w
, h
; /* character width/height */
1012 int update_countdown
= 0; /* refresh counter */
1013 unsigned int seconds
;
1015 int audio_stat
= 0; /* status of the audio system */
1016 int last_audio_stat
= -1; /* previous status so we can act on changes */
1017 struct viewport vp_list
[NB_SCREENS
], vp_top
[NB_SCREENS
]; /* the viewports */
1019 #if CONFIG_CODEC == SWCODEC
1020 int warning_counter
= 0;
1021 #define WARNING_PERIOD 7
1024 #if CONFIG_CODEC == SWCODEC
1025 #ifdef HAVE_SPDIF_REC
1026 unsigned long prev_sample_rate
= 0;
1030 #ifdef HAVE_FMRADIO_REC
1031 /* Radio is left on if:
1032 * 1) Is was on at the start and the initial source is FM Radio
1033 * 2) 1) and the source was never changed to something else
1035 int radio_status
= (global_settings
.rec_source
!= AUDIO_SRC_FMRADIO
) ?
1036 FMRADIO_OFF
: get_radio_status();
1038 #if (CONFIG_LED == LED_REAL)
1039 bool led_state
= false;
1040 int led_countdown
= 2;
1043 bool peak_read
= false;
1047 int pm_x
[NB_SCREENS
]; /* peakmeter (and trigger bar) x pos */
1048 int pm_y
[NB_SCREENS
]; /* peakmeter y pos */
1049 int pm_h
[NB_SCREENS
]; /* peakmeter height */
1050 int trig_ypos
[NB_SCREENS
]; /* trigger bar y pos */
1051 int trig_width
[NB_SCREENS
]; /* trigger bar width */
1052 int top_height_req
[NB_SCREENS
]; /* required height for top half */
1053 /* tweak layout tiny screens / big fonts */
1054 bool compact_view
[NB_SCREENS
] = { false };
1055 struct gui_synclist lists
; /* the list in the bottom vp */
1056 #if defined(HAVE_AGC)
1057 bool peak_valid
= false;
1059 #if defined(HAVE_HISTOGRAM)
1060 unsigned short hist_pos_y
= 0;
1061 unsigned short hist_size_h
= 0;
1063 #ifdef HAVE_FMRADIO_REC
1064 int prev_rec_source
= global_settings
.rec_source
; /* detect source change */
1067 struct audio_recording_options rec_options
;
1068 rec_status
= RCSTAT_IN_RECSCREEN
;
1069 push_current_activity(ACTIVITY_RECORDING
);
1071 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
1072 && !defined(SIMULATOR)
1073 ata_set_led_enabled(false);
1076 #if CONFIG_CODEC == SWCODEC
1077 /* This should be done before touching audio settings */
1078 while (!pcm_is_initialized())
1081 /* recording_menu gets messed up: so prevent manus talking */
1083 /* audio_init_recording stops anything playing when it takes the audio
1086 /* Yes, we use the D/A for monitoring */
1087 peak_meter_enable(true);
1088 peak_meter_playback(true);
1092 peak_meter_get_peakhold(&peak_l
, &peak_r
);
1095 pm_reset_clipcount();
1096 pm_activate_clipcount(false);
1097 settings_apply_trigger();
1100 agc_preset_str
[0] = str(LANG_OFF
);
1101 agc_preset_str
[1] = str(LANG_AGC_SAFETY
);
1102 agc_preset_str
[2] = str(LANG_AGC_LIVE
);
1103 agc_preset_str
[3] = str(LANG_AGC_DJSET
);
1104 agc_preset_str
[4] = str(LANG_AGC_MEDIUM
);
1105 agc_preset_str
[5] = str(LANG_AGC_VOICE
);
1106 #endif /* HAVE_AGC */
1109 /* Disable speaker to prevent feedback */
1110 audiohw_enable_speaker(false);
1113 audio_init_recording();
1114 sound_set_volume(global_settings
.volume
);
1117 /* Create new filename for recording start */
1118 rec_init_filename();
1121 /* start of the loop: we stay in this loop until user quits recscreen */
1126 /* request to re-init stuff, done after settings screen */
1128 #ifdef HAVE_FMRADIO_REC
1129 /* If input changes away from FM Radio,
1130 radio will remain off when recording screen closes. */
1131 if (global_settings
.rec_source
!= prev_rec_source
1132 && prev_rec_source
== AUDIO_SRC_FMRADIO
)
1133 radio_status
= FMRADIO_OFF
;
1134 prev_rec_source
= global_settings
.rec_source
;
1137 /* viewport init and calculations that only needs to be done once */
1141 /* top vp, 4 lines, force sys font if total screen < 6 lines
1142 NOTE: one could limit the list to 1 line and get away with 5 lines */
1143 top_height_req
[i
] = 4;
1144 #if defined(HAVE_HISTOGRAM)
1145 if((global_settings
.histogram_interval
) && (!i
))
1146 top_height_req
[i
] += 1; /* use one line for histogram */
1149 viewport_set_defaults(v
, i
);
1150 if (viewport_get_nb_lines(v
) < top_height_req
[i
])
1152 /* compact needs 4 lines total */
1153 v
->font
= FONT_SYSFIXED
;
1154 compact_view
[i
] = false;
1159 if (viewport_get_nb_lines(v
) < (top_height_req
[i
]+2))
1160 compact_view
[i
] = true;
1162 compact_view
[i
] = false;
1164 vp_list
[i
] = *v
; /* get a copy now so it can be sized more easily */
1165 v
->height
= (font_get(v
->font
)->height
)*(compact_view
[i
] ? 3 :
1168 /* list section, rest of the screen */
1169 vp_list
[i
].y
+= vp_top
[i
].height
;
1170 vp_list
[i
].height
-= vp_top
[i
].height
;
1171 screens
[i
].set_viewport(&vp_top
[i
]); /* req for next calls */
1173 screens
[i
].getstringsize("W", &w
, &h
);
1174 pm_y
[i
] = font_get(vp_top
[i
].font
)->height
* 2;
1175 trig_ypos
[i
] = font_get(vp_top
[i
].font
)->height
* 3;
1177 trig_ypos
[i
] -= (font_get(vp_top
[i
].font
)->height
)/2;
1180 /* init the bottom list */
1181 gui_synclist_init(&lists
, reclist_get_name
, NULL
, false, 1, vp_list
);
1182 gui_synclist_set_title(&lists
, NULL
, Icon_NOICON
);
1184 send_event(GUI_EVENT_ACTIONUPDATE
, (void*)1); /* force a redraw */
1186 #if defined(HAVE_HISTOGRAM)
1187 hist_pos_y
= (compact_view
[0] ? 3 : 4) * (font_get(vp_top
[0].font
)->height
)
1189 hist_size_h
= font_get(vp_top
[0].font
)->height
- 2;
1196 if(global_settings
.peak_meter_clipcounter
)
1199 screens
[i
].getstringsize(str(LANG_PM_CLIPCOUNT
),
1200 &clipwidth
, &h
); /* h is same */
1201 pm_x
[i
] = clipwidth
+1;
1203 if(global_settings
.rec_trigger_mode
== TRIG_MODE_OFF
)
1204 pm_h
[i
] = font_get(vp_top
[i
].font
)->height
* 2;
1206 pm_h
[i
] = font_get(vp_top
[i
].font
)->height
;
1209 trig_width
[i
] = vp_top
[i
].width
- pm_x
[i
];
1212 #if CONFIG_CODEC == SWCODEC
1213 audio_close_recording();
1214 audio_init_recording();
1217 rec_init_recording_options(&rec_options
);
1218 rec_set_recording_options(&rec_options
);
1220 if(rec_create_directory() < 0)
1226 #if CONFIG_CODEC == SWCODEC && CONFIG_RTC == 0
1227 /* If format changed, a new number is required */
1228 rec_init_filename();
1233 if (global_settings
.rec_source
== AUDIO_SRC_MIC
) {
1234 agc_preset
= global_settings
.rec_agc_preset_mic
;
1235 agc_maxgain
= global_settings
.rec_agc_maxgain_mic
;
1240 agc_preset
= global_settings
.rec_agc_preset_line
;
1241 agc_maxgain
= global_settings
.rec_agc_maxgain_line
;
1243 #endif /* HAVE_AGC */
1246 update_countdown
= 0; /* Update immediately */
1248 /* populate translation table for list id -> enum */
1249 #ifdef HAVE_SPDIF_REC
1250 if(global_settings
.rec_source
== AUDIO_SRC_SPDIF
)
1252 listid_to_enum
[0] = ITEM_VOLUME_D
;
1253 #if CONFIG_CODEC == SWCODEC
1254 listid_to_enum
[1] = ITEM_SAMPLERATE_D
;
1255 listid_to_enum
[2] = ITEM_FILENAME_D
;
1257 listid_to_enum
[1] = ITEM_FILENAME_D
;
1260 gui_synclist_set_nb_items(&lists
, ITEM_COUNT_D
); /* spdif */
1264 if(HAVE_MIC_REC_((global_settings
.rec_source
== AUDIO_SRC_MIC
) || )
1265 (global_settings
.rec_channels
== 1))
1267 listid_to_enum
[0] = ITEM_VOLUME_M
;
1268 listid_to_enum
[1] = ITEM_GAIN_M
;
1270 listid_to_enum
[2] = ITEM_AGC_MODE_M
;
1271 listid_to_enum
[3] = ITEM_AGC_MAXDB_M
;
1272 listid_to_enum
[4] = ITEM_FILENAME_M
;
1274 listid_to_enum
[2] = ITEM_FILENAME_M
;
1276 gui_synclist_set_nb_items(&lists
, ITEM_COUNT_M
); /* mono */
1280 listid_to_enum
[0] = ITEM_VOLUME
;
1281 listid_to_enum
[1] = ITEM_GAIN
;
1282 listid_to_enum
[2] = ITEM_GAIN_L
;
1283 listid_to_enum
[3] = ITEM_GAIN_R
;
1285 listid_to_enum
[4] = ITEM_AGC_MODE
;
1286 listid_to_enum
[5] = ITEM_AGC_MAXDB
;
1287 listid_to_enum
[6] = ITEM_FILENAME
;
1289 listid_to_enum
[4] = ITEM_FILENAME
;
1291 gui_synclist_set_nb_items(&lists
, ITEM_COUNT
); /* stereo */
1294 gui_synclist_draw(&lists
);
1295 } /* if(done < 0) */
1297 audio_stat
= audio_status();
1299 #if (CONFIG_LED == LED_REAL)
1302 * Flash the LED while waiting to record. Turn it on while
1305 if(audio_stat
& AUDIO_STATUS_RECORD
)
1307 if (audio_stat
& AUDIO_STATUS_PAUSE
)
1309 if (--led_countdown
<= 0)
1311 led_state
= !led_state
;
1318 /* trigger is on in status TRIG_READY (no check needed) */
1324 int trig_stat
= peak_meter_trigger_status();
1326 * other trigger stati than trig_off and trig_steady
1327 * already imply that we are recording.
1329 if (trig_stat
== TRIG_STEADY
)
1331 if (--led_countdown
<= 0)
1333 led_state
= !led_state
;
1340 /* trigger is on in status TRIG_READY (no check needed) */
1344 #endif /* CONFIG_LED */
1346 /* Wait for a button a while (HZ/10) drawing the peak meter */
1347 button
= peak_meter_draw_get_btn(CONTEXT_RECSCREEN
,
1349 screen_update
, vp_top
);
1350 if (last_audio_stat
!= audio_stat
)
1352 if (audio_stat
& AUDIO_STATUS_RECORD
)
1354 rec_status
|= RCSTAT_HAVE_RECORDED
;
1356 last_audio_stat
= audio_stat
;
1360 if (recording_start_automatic
)
1362 /* simulate a button press */
1363 button
= ACTION_REC_PAUSE
;
1364 recording_start_automatic
= false;
1367 /* let list handle the button */
1368 gui_synclist_do_button(&lists
, &button
, LIST_WRAP_UNLESS_HELD
);
1373 case ACTION_SETTINGS_INC
:
1374 case ACTION_SETTINGS_INCREPEAT
:
1375 switch (listid_to_enum
[gui_synclist_get_sel_pos(&lists
)])
1378 global_settings
.volume
+= sound_steps(SOUND_VOLUME
);
1383 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
1385 global_settings
.rec_mic_gain
+=
1386 sound_steps(SOUND_MIC_GAIN
);
1391 global_settings
.rec_left_gain
+=
1392 sound_steps(SOUND_LEFT_GAIN
);
1393 global_settings
.rec_right_gain
+=
1394 sound_steps(SOUND_RIGHT_GAIN
);
1398 global_settings
.rec_left_gain
+=
1399 sound_steps(SOUND_LEFT_GAIN
);
1403 global_settings
.rec_right_gain
+=
1404 sound_steps(SOUND_RIGHT_GAIN
);
1409 agc_preset
= MIN(agc_preset
+ 1, AGC_MODE_SIZE
);
1410 agc_enable
= (agc_preset
!= 0);
1412 if (global_settings
.rec_source
== AUDIO_SRC_MIC
) {
1413 global_settings
.rec_agc_preset_mic
= agc_preset
;
1414 agc_maxgain
= global_settings
.rec_agc_maxgain_mic
;
1418 global_settings
.rec_agc_preset_line
= agc_preset
;
1419 agc_maxgain
= global_settings
.rec_agc_maxgain_line
;
1422 case ITEM_AGC_MAXDB
:
1424 if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
1426 agc_maxgain
= MIN(agc_maxgain
+ 1,
1427 sound_max(SOUND_MIC_GAIN
));
1428 global_settings
.rec_agc_maxgain_mic
= agc_maxgain
;
1433 agc_maxgain
= MIN(agc_maxgain
+ 1,
1434 sound_max(SOUND_LEFT_GAIN
));
1435 global_settings
.rec_agc_maxgain_line
= agc_maxgain
;
1438 #endif /* HAVE_AGC */
1441 update_countdown
= 0; /* Update immediately */
1443 case ACTION_SETTINGS_DEC
:
1444 case ACTION_SETTINGS_DECREPEAT
:
1445 switch (listid_to_enum
[gui_synclist_get_sel_pos(&lists
)])
1448 global_settings
.volume
-= sound_steps(SOUND_VOLUME
);
1450 /* check range and update */
1455 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
1457 global_settings
.rec_mic_gain
-=
1458 sound_steps(SOUND_MIC_GAIN
);
1463 global_settings
.rec_left_gain
-=
1464 sound_steps(SOUND_LEFT_GAIN
);
1466 global_settings
.rec_right_gain
-=
1467 sound_steps(SOUND_RIGHT_GAIN
);
1471 global_settings
.rec_left_gain
-=
1472 sound_steps(SOUND_LEFT_GAIN
);
1476 global_settings
.rec_right_gain
-=
1477 sound_steps(SOUND_RIGHT_GAIN
);
1482 agc_preset
= MAX(agc_preset
- 1, 0);
1483 agc_enable
= (agc_preset
!= 0);
1485 if (global_settings
.rec_source
== AUDIO_SRC_MIC
) {
1486 global_settings
.rec_agc_preset_mic
= agc_preset
;
1487 agc_maxgain
= global_settings
.rec_agc_maxgain_mic
;
1491 global_settings
.rec_agc_preset_line
= agc_preset
;
1492 agc_maxgain
= global_settings
.rec_agc_maxgain_line
;
1495 case ITEM_AGC_MAXDB
:
1497 if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
1499 agc_maxgain
= MAX(agc_maxgain
- 1,
1500 sound_min(SOUND_MIC_GAIN
));
1501 global_settings
.rec_agc_maxgain_mic
= agc_maxgain
;
1505 agc_maxgain
= MAX(agc_maxgain
- 1,
1506 sound_min(SOUND_LEFT_GAIN
));
1507 global_settings
.rec_agc_maxgain_line
= agc_maxgain
;
1510 #endif /* HAVE_AGC */
1513 update_countdown
= 0; /* Update immediately */
1515 case ACTION_STD_CANCEL
:
1516 /* turn off the trigger */
1517 peak_meter_trigger(false);
1518 peak_meter_set_trigger_listener(NULL
);
1520 if(audio_stat
& AUDIO_STATUS_RECORD
)
1522 rec_command(RECORDING_CMD_STOP
);
1526 #if CONFIG_CODEC != SWCODEC
1527 peak_meter_playback(true);
1528 peak_meter_enable(false);
1532 update_countdown
= 0; /* Update immediately */
1534 #ifdef HAVE_REMOTE_LCD
1535 case ACTION_REC_LCD
:
1536 /* this feature exists for some h1x0/h3x0 targets that suffer
1537 from noise caused by remote LCD updates
1538 NOTE 1: this will leave the list on the remote
1539 NOTE 2: to be replaced by a global LCD_off() routine */
1540 if(remote_display_on
)
1542 /* switch to single screen, leave message on remote */
1544 screens
[1].clear_viewport();
1545 screens
[1].puts(0, 0, str(LANG_REMOTE_LCD_OFF
));
1546 screens
[1].puts(0, 1, str(LANG_REMOTE_LCD_ON
));
1547 screens
[1].update_viewport();
1551 /* remote switched on again */
1553 screen_update
= NB_SCREENS
;
1555 remote_display_on
= !remote_display_on
; /* toggle */
1556 update_countdown
= 0; /* Update immediately */
1559 case ACTION_REC_PAUSE
:
1560 case ACTION_REC_NEWFILE
:
1561 /* Only act if the mpeg is stopped */
1562 if(!(audio_stat
& AUDIO_STATUS_RECORD
))
1564 /* is this manual or triggered recording? */
1565 if ((global_settings
.rec_trigger_mode
== TRIG_MODE_OFF
) ||
1566 (peak_meter_trigger_status() != TRIG_OFF
))
1568 /* manual recording */
1569 rec_status
|= RCSTAT_HAVE_RECORDED
;
1570 rec_command(RECORDING_CMD_START
);
1572 if (global_settings
.talk_menu
)
1574 /* no voice possible here, but a beep */
1575 audio_beep(HZ
/2); /* longer beep on start */
1578 /* this is triggered recording */
1581 /* we don't start recording now, but enable the
1582 trigger and let the callback function
1583 trigger_listener control when the recording starts */
1584 peak_meter_trigger(true);
1585 peak_meter_set_trigger_listener(&trigger_listener
);
1590 /*if new file button pressed, start new file */
1591 if (button
== ACTION_REC_NEWFILE
)
1593 rec_command(RECORDING_CMD_START_NEWFILE
);
1597 /* if pause button pressed, pause or resume */
1599 if(audio_stat
& AUDIO_STATUS_PAUSE
)
1601 rec_command(RECORDING_CMD_RESUME
);
1602 if (global_settings
.talk_menu
)
1604 /* no voice possible here, but a beep */
1605 audio_beep(HZ
/4); /* short beep on resume */
1610 rec_command(RECORDING_CMD_PAUSE
);
1614 update_countdown
= 0; /* Update immediately */
1616 case ACTION_STD_MENU
:
1617 #if CONFIG_CODEC == SWCODEC
1618 if(!(audio_stat
& AUDIO_STATUS_RECORD
))
1620 if(audio_stat
!= AUDIO_STATUS_RECORD
)
1623 #if (CONFIG_LED == LED_REAL)
1624 /* led is restored at begin of loop / end of function */
1627 if (recording_menu(no_source
))
1630 rec_status
|= RCSTAT_BEEN_IN_USB_MODE
;
1631 #ifdef HAVE_FMRADIO_REC
1632 radio_status
= FMRADIO_OFF
;
1638 /* the init is now done at the beginning of the loop */
1643 #if CONFIG_KEYPAD == RECORDER_PAD
1645 if(audio_stat
!= AUDIO_STATUS_RECORD
)
1647 #if (CONFIG_LED == LED_REAL)
1648 /* led is restored at begin of loop / end of function */
1651 if (f2_rec_screen())
1653 rec_status
|= RCSTAT_HAVE_RECORDED
;
1657 update_countdown
= 0; /* Update immediately */
1662 if(audio_stat
& AUDIO_STATUS_RECORD
)
1664 rec_command(RECORDING_CMD_START_NEWFILE
);
1669 #if (CONFIG_LED == LED_REAL)
1670 /* led is restored at begin of loop / end of function */
1673 if (f3_rec_screen())
1675 rec_status
|= RCSTAT_HAVE_RECORDED
;
1679 update_countdown
= 0; /* Update immediately */
1682 #endif /* CONFIG_KEYPAD == RECORDER_PAD */
1684 case SYS_USB_CONNECTED
:
1685 /* Only accept USB connection when not recording */
1686 if(!(audio_stat
& AUDIO_STATUS_RECORD
))
1689 screens
[i
].set_viewport(NULL
);
1690 default_event_handler(SYS_USB_CONNECTED
);
1692 rec_status
|= RCSTAT_BEEN_IN_USB_MODE
;
1693 #ifdef HAVE_FMRADIO_REC
1694 radio_status
= FMRADIO_OFF
;
1698 } /*switch(button)*/
1701 peak_read
= !peak_read
;
1702 if (peak_read
) { /* every 2nd run of loop */
1704 peak_valid
= read_peak_levels(&peak_l
, &peak_r
, &balance
);
1707 /* Handle AGC every 200ms when enabled and peak data is valid */
1708 if (peak_read
&& agc_enable
&& peak_valid
)
1709 auto_gain_control(&peak_l
, &peak_r
, &balance
);
1712 seconds
= audio_recorded_time() / HZ
;
1714 /* start of vp_top drawing */
1715 if(update_countdown
-- == 0 || seconds
> last_seconds
)
1717 unsigned int dseconds
, dhours
, dminutes
;
1718 unsigned long num_recorded_bytes
, dsize
, dmb
;
1722 screens
[i
].set_viewport(&vp_top
[i
]);
1723 screens
[i
].clear_viewport();
1725 update_countdown
= 5;
1726 last_seconds
= seconds
;
1728 dseconds
= rec_timesplit_seconds();
1729 dsize
= rec_sizesplit_bytes();
1730 num_recorded_bytes
= audio_num_recorded_bytes();
1732 #if CONFIG_CODEC == SWCODEC
1733 if ((audio_stat
& AUDIO_STATUS_WARNING
)
1734 && (warning_counter
++ % WARNING_PERIOD
) < WARNING_PERIOD
/2)
1736 /* Switch back and forth displaying warning on first available
1737 line to ensure visibility - the motion should also help
1739 /* Don't use language string unless agreed upon to make this
1740 method permanent - could do something in the statusbar */
1741 snprintf(buf
, sizeof(buf
), "Warning: %08lX",
1742 pcm_rec_get_warnings());
1745 #endif /* CONFIG_CODEC == SWCODEC */
1746 if ((global_settings
.rec_sizesplit
) &&
1747 (global_settings
.rec_split_method
))
1749 dmb
= dsize
/1024/1024;
1750 snprintf(buf
, sizeof(buf
), "%s %luMB",
1751 str(LANG_SPLIT_SIZE
), dmb
);
1755 hours
= seconds
/ 3600;
1756 minutes
= (seconds
- (hours
* 3600)) / 60;
1757 snprintf(buf
, sizeof(buf
), "%s %02d:%02d:%02d",
1758 str(LANG_RECORDING_TIME
),
1759 hours
, minutes
, seconds
%60);
1762 FOR_NB_ACTIVE_SCREENS(i
)
1763 screens
[i
].puts(0, 0, buf
);
1765 if(audio_stat
& AUDIO_STATUS_PRERECORD
)
1767 snprintf(buf
, sizeof(buf
), "%s...",
1768 str(LANG_RECORD_PRERECORD
));
1772 /* Display the split interval if the record timesplit
1774 if ((global_settings
.rec_timesplit
) &&
1775 !(global_settings
.rec_split_method
))
1777 /* Display the record timesplit interval rather
1778 than the file size if the record timer is active */
1779 dhours
= dseconds
/ 3600;
1780 dminutes
= (dseconds
- (dhours
* 3600)) / 60;
1781 snprintf(buf
, sizeof(buf
), "%s %02d:%02d",
1782 str(LANG_RECORDING_TIMESPLIT_REC
),
1787 output_dyn_value(buf2
, sizeof buf2
,
1790 snprintf(buf
, sizeof(buf
), "%s %s",
1791 str(LANG_RECORDING_SIZE
), buf2
);
1795 FOR_NB_ACTIVE_SCREENS(i
)
1796 screens
[i
].puts(0, 1, buf
);
1798 /* We will do file splitting regardless, either at the end of
1799 a split interval, or when the filesize approaches the 2GB
1800 FAT file size (compatibility) limit. */
1801 if ((audio_stat
&& !(global_settings
.rec_split_method
)
1802 && global_settings
.rec_timesplit
&& (seconds
>= dseconds
))
1803 || (audio_stat
&& global_settings
.rec_split_method
1804 && global_settings
.rec_sizesplit
1805 && (num_recorded_bytes
>= dsize
))
1806 || (num_recorded_bytes
>= MAX_FILE_SIZE
))
1808 if (!(global_settings
.rec_split_type
)
1809 || (num_recorded_bytes
>= MAX_FILE_SIZE
))
1811 rec_command(RECORDING_CMD_START_NEWFILE
);
1816 peak_meter_trigger(false);
1817 peak_meter_set_trigger_listener(NULL
);
1818 if( global_settings
.rec_split_type
== 1)
1819 rec_command(RECORDING_CMD_STOP
);
1821 rec_command(RECORDING_CMD_STOP_SHUTDOWN
);
1823 update_countdown
= 0;
1826 /* draw the clipcounter just in front of the peakmeter */
1827 if(global_settings
.peak_meter_clipcounter
)
1829 int clipcount
= pm_get_clipcount();
1830 FOR_NB_ACTIVE_SCREENS(i
)
1832 if(!compact_view
[i
])
1834 screens
[i
].puts(0, 2, str(LANG_PM_CLIPCOUNT
));
1835 screens
[i
].putsf(0, 3, "%4d", clipcount
);
1838 screens
[i
].putsf(0, 2, "%4d", clipcount
);
1842 #ifdef HAVE_HISTOGRAM
1843 if(global_settings
.histogram_interval
)
1846 screens
[0].getwidth()/2,
1849 screens
[0].getwidth()/2,
1857 /* draw the trigger status */
1858 if (peak_meter_trigger_status() != TRIG_OFF
)
1860 peak_meter_draw_trig(pm_x
, trig_ypos
, trig_width
,
1862 FOR_NB_ACTIVE_SCREENS(i
)
1863 screens
[i
].update_viewport_rect(pm_x
[i
], trig_ypos
[i
],
1864 trig_width
[i
] + 2, TRIG_HEIGHT
);
1869 if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
1871 if(agc_maxgain
< (global_settings
.rec_mic_gain
))
1872 change_recording_gain(false, true, true);
1877 if(agc_maxgain
< (global_settings
.rec_left_gain
))
1878 change_recording_gain(false, true, false);
1879 if(agc_maxgain
< (global_settings
.rec_right_gain
))
1880 change_recording_gain(false, false, true);
1882 #endif /* HAVE_AGC */
1884 #if CONFIG_CODEC == SWCODEC
1885 #ifdef HAVE_SPDIF_REC
1886 if((global_settings
.rec_source
== AUDIO_SRC_SPDIF
) &&
1887 (prev_sample_rate
!= pcm_rec_sample_rate()))
1889 /* spdif samplerate changed */
1890 prev_sample_rate
= pcm_rec_sample_rate();
1898 /* update_list is set whenever content changes */
1899 update_list
= false;
1900 gui_synclist_draw(&lists
);
1903 /* draw peakmeter again (check if this can be removed) */
1904 FOR_NB_ACTIVE_SCREENS(i
)
1906 screens
[i
].set_viewport(&vp_top
[i
]);
1907 peak_meter_screen(&screens
[i
], pm_x
[i
], pm_y
[i
], pm_h
[i
]);
1908 screens
[i
].update();
1910 } /* display update every second */
1912 if(audio_stat
& AUDIO_STATUS_ERROR
)
1916 } /* end while(!done) */
1918 audio_stat
= audio_status();
1919 if (audio_stat
& AUDIO_STATUS_ERROR
)
1921 splash(0, str(LANG_DISK_FULL
));
1924 screens
[i
].update();
1926 #if CONFIG_CODEC == SWCODEC
1927 /* stop recording - some players like H10 freeze otherwise
1928 TO DO: find out why it freezes and fix properly */
1929 rec_command(RECORDING_CMD_STOP
);
1930 audio_close_recording();
1933 audio_error_clear();
1937 if (action_userabort(TIMEOUT_NOBLOCK
))
1944 #if CONFIG_CODEC == SWCODEC
1945 rec_command(RECORDING_CMD_STOP
);
1946 audio_close_recording();
1948 #ifdef HAVE_FMRADIO_REC
1949 if (radio_status
!= FMRADIO_OFF
)
1950 /* Restore radio playback - radio_status should be unchanged if started
1951 through fm radio screen (barring usb connect) */
1952 rec_set_source(AUDIO_SRC_FMRADIO
, (radio_status
& FMRADIO_PAUSED
) ?
1953 SRCF_FMRADIO_PAUSED
: SRCF_FMRADIO_PLAYING
);
1956 /* Go back to playback mode */
1957 rec_set_source(AUDIO_SRC_PLAYBACK
, SRCF_PLAYBACK
);
1959 /* restore talking */
1960 talk_disable(false);
1961 #else /* !SWCODEC */
1962 audio_init_playback();
1963 #endif /* CONFIG_CODEC == SWCODEC */
1966 /* Re-enable speaker */
1967 audiohw_enable_speaker(global_settings
.speaker_enabled
);
1970 /* make sure the trigger is really turned off */
1971 peak_meter_trigger(false);
1972 peak_meter_set_trigger_listener(NULL
);
1974 rec_status
&= ~RCSTAT_IN_RECSCREEN
;
1975 sound_settings_apply();
1978 screens
[i
].setfont(FONT_UI
);
1980 /* if the directory was created or recording happened, make sure the
1981 browser is updated */
1982 if (rec_status
& (RCSTAT_CREATED_DIRECTORY
| RCSTAT_HAVE_RECORDED
))
1985 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
1986 && !defined(SIMULATOR)
1987 ata_set_led_enabled(true);
1991 pop_current_activity();
1992 return (rec_status
& RCSTAT_BEEN_IN_USB_MODE
) != 0;
1993 } /* recording_screen */
1995 #if CONFIG_KEYPAD == RECORDER_PAD
1996 static bool f2_rec_screen(void)
1998 static const char* const freq_str
[6] =
2013 struct audio_recording_options rec_options
;
2017 screens
[i
].set_viewport(NULL
);
2018 screens
[i
].setfont(FONT_SYSFIXED
);
2019 screens
[i
].getstringsize("A",&w
,&h
);
2027 screens
[i
].clear_display();
2029 /* Recording quality */
2030 screens
[i
].putsxy(0, LCD_HEIGHT
/2 - h
*2,
2031 str(LANG_SYSFONT_RECORDING_QUALITY
));
2034 snprintf(buf
, sizeof(buf
), "%d", global_settings
.rec_quality
);
2037 screens
[i
].putsxy(0, LCD_HEIGHT
/2-h
, buf
);
2038 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_FastBackward
],
2039 LCD_WIDTH
/2 - 16, LCD_HEIGHT
/2 - 4, 7, 8);
2043 snprintf(buf
, sizeof buf
, "%s:", str(LANG_SYSFONT_RECORDING_FREQUENCY
));
2044 ptr
= freq_str
[global_settings
.rec_frequency
];
2047 screens
[i
].getstringsize(buf
,&w
,&h
);
2048 screens
[i
].putsxy((LCD_WIDTH
-w
)/2, LCD_HEIGHT
- h
*2, buf
);
2049 screens
[i
].getstringsize(ptr
, &w
, &h
);
2050 screens
[i
].putsxy((LCD_WIDTH
-w
)/2, LCD_HEIGHT
- h
, ptr
);
2051 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_DownArrow
],
2052 LCD_WIDTH
/2 - 3, LCD_HEIGHT
- h
*3, 7, 8);
2056 switch ( global_settings
.rec_channels
) {
2058 ptr
= str(LANG_SYSFONT_CHANNEL_STEREO
);
2062 ptr
= str(LANG_SYSFONT_CHANNEL_MONO
);
2068 screens
[i
].getstringsize(str(LANG_SYSFONT_CHANNELS
), &w
, &h
);
2069 screens
[i
].putsxy(LCD_WIDTH
- w
, LCD_HEIGHT
/2 - h
*2,
2070 str(LANG_SYSFONT_CHANNELS
));
2071 screens
[i
].getstringsize(str(LANG_SYSFONT_MODE
), &w
, &h
);
2072 screens
[i
].putsxy(LCD_WIDTH
- w
, LCD_HEIGHT
/2 - h
,
2073 str(LANG_SYSFONT_MODE
));
2074 screens
[i
].getstringsize(ptr
, &w
, &h
);
2075 screens
[i
].putsxy(LCD_WIDTH
- w
, LCD_HEIGHT
/2, ptr
);
2076 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_FastForward
],
2077 LCD_WIDTH
/2 + 8, LCD_HEIGHT
/2 - 4, 7, 8);
2079 screens
[i
].update();
2082 button
= button_get(true);
2085 case BUTTON_F2
| BUTTON_LEFT
:
2086 global_settings
.rec_quality
++;
2087 if(global_settings
.rec_quality
> 7)
2088 global_settings
.rec_quality
= 0;
2093 case BUTTON_F2
| BUTTON_DOWN
:
2094 global_settings
.rec_frequency
++;
2095 if(global_settings
.rec_frequency
> 5)
2096 global_settings
.rec_frequency
= 0;
2101 case BUTTON_F2
| BUTTON_RIGHT
:
2102 global_settings
.rec_channels
++;
2103 if(global_settings
.rec_channels
> 1)
2104 global_settings
.rec_channels
= 0;
2108 case BUTTON_F2
| BUTTON_REL
:
2114 case BUTTON_F2
| BUTTON_REPEAT
:
2119 if(default_event_handler(button
) == SYS_USB_CONNECTED
)
2125 rec_init_recording_options(&rec_options
);
2126 rec_set_recording_options(&rec_options
);
2132 screens
[i
].setfont(FONT_UI
);
2137 static bool f3_rec_screen(void)
2143 const char *src_str
[] =
2145 str(LANG_SYSFONT_RECORDING_SRC_MIC
),
2146 str(LANG_SYSFONT_LINE_IN
),
2147 str(LANG_SYSFONT_RECORDING_SRC_DIGITAL
)
2149 struct audio_recording_options rec_options
;
2153 screens
[i
].set_viewport(NULL
);
2154 screens
[i
].setfont(FONT_SYSFIXED
);
2155 screens
[i
].getstringsize("A",&w
,&h
);
2159 const char* ptr
= src_str
[global_settings
.rec_source
];
2162 screens
[i
].clear_display();
2164 /* Recording source */
2165 screens
[i
].putsxy(0, LCD_HEIGHT
/2 - h
*2,
2166 str(LANG_SYSFONT_RECORDING_SOURCE
));
2168 screens
[i
].getstringsize(ptr
, &w
, &h
);
2169 screens
[i
].putsxy(0, LCD_HEIGHT
/2-h
, ptr
);
2170 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_FastBackward
],
2171 LCD_WIDTH
/2 - 16, LCD_HEIGHT
/2 - 4, 7, 8);
2175 ptr
= str(LANG_SYSFONT_RECORD_TRIGGER
);
2178 screens
[i
].getstringsize(ptr
,&w
,&h
);
2179 screens
[i
].putsxy((LCD_WIDTH
-w
)/2, LCD_HEIGHT
- h
*2, ptr
);
2180 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_DownArrow
],
2181 LCD_WIDTH
/2 - 3, LCD_HEIGHT
- h
*3, 7, 8);
2183 screens
[i
].update();
2186 button
= button_get(true);
2189 case BUTTON_F3
| BUTTON_DOWN
:
2192 settings_apply_trigger();
2198 case BUTTON_F3
| BUTTON_LEFT
:
2199 global_settings
.rec_source
++;
2200 if(global_settings
.rec_source
> AUDIO_SRC_MAX
)
2201 global_settings
.rec_source
= 0;
2205 case BUTTON_F3
| BUTTON_REL
:
2211 case BUTTON_F3
| BUTTON_REPEAT
:
2216 if(default_event_handler(button
) == SYS_USB_CONNECTED
)
2222 rec_init_recording_options(&rec_options
);
2223 rec_set_recording_options(&rec_options
);
2229 screens
[i
].setfont(FONT_UI
);
2233 #endif /* CONFIG_KEYPAD == RECORDER_PAD */
2235 #if CONFIG_CODEC == SWCODEC
2236 void audio_beep(int duration
)
2241 #endif /* #ifdef CONFIG_CODEC == SWCODEC */
2243 #endif /* HAVE_RECORDING */