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"
35 #if CONFIG_CODEC == SWCODEC
37 #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"
54 #include "peakmeter.h"
56 #include "sound_menu.h"
57 #include "timefuncs.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(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;
223 static long hist_time
= 0;
225 static short peak_valid_mem
[4];
226 #define BAL_MEM_SIZE 24
227 static short balance_mem
[BAL_MEM_SIZE
];
229 /* Automatic Gain Control */
230 #define AGC_MODE_SIZE 5
231 #define AGC_SAFETY_MODE 0
233 static const char* agc_preset_str
[] =
234 { "Off", "S", "L", "D", "M", "V" };
241 #define AGC_CLIP 32766
242 #define AGC_PEAK 29883 /* fast gain reduction threshold -0.8dB */
243 #define AGC_HIGH 27254 /* accelerated gain reduction threshold -1.6dB */
244 #define AGC_IMG 823 /* threshold for balance control -32dB */
245 /* autogain high level thresholds (-3dB, -7dB, -4dB, -5dB, -5dB) */
246 static const short agc_th_hi
[AGC_MODE_SIZE
] =
247 { 23197, 14637, 21156, 18428, 18426 };
248 /* autogain low level thresholds (-14dB, -11dB, -6dB, -7dB, -8dB) */
249 static const short agc_th_lo
[AGC_MODE_SIZE
] =
250 { 6538, 9235, 16422, 14636, 13045 };
251 /* autogain threshold times [1/5s] or [200ms] */
252 static const short agc_tdrop
[AGC_MODE_SIZE
] =
253 { 900, 225, 150, 60, 8 };
254 static const short agc_trise
[AGC_MODE_SIZE
] =
255 { 9000, 750, 400, 150, 20 };
256 static const short agc_tbal
[AGC_MODE_SIZE
] =
257 { 4500, 500, 300, 100, 15 };
259 static bool agc_enable
= true;
260 static short agc_preset
;
262 static int agc_left
= 0;
263 static int agc_right
= 0;
264 /* AGC time since high target volume was exceeded */
265 static short agc_droptime
= 0;
266 /* AGC time since volume fallen below low target */
267 static short agc_risetime
= 0;
268 /* AGC balance time exceeding +/- 0.7dB */
269 static short agc_baltime
= 0;
270 /* AGC maximum gain */
271 static short agc_maxgain
;
272 #endif /* HAVE_AGC */
274 static void set_gain(void)
277 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
279 audio_set_recording_gain(global_settings
.rec_mic_gain
,
285 /* AUDIO_SRC_LINEIN, AUDIO_SRC_FMRADIO, AUDIO_SRC_SPDIF */
286 audio_set_recording_gain(global_settings
.rec_left_gain
,
287 global_settings
.rec_right_gain
,
290 /* reset the clipping indicators */
291 peak_meter_set_clip_hold(global_settings
.peak_meter_clip_hold
);
296 /* Read peak meter values & calculate balance.
297 * Returns validity of peak values.
298 * Used for automatic gain control and history diagram.
300 static bool read_peak_levels(int *peak_l
, int *peak_r
, int *balance
)
302 peak_meter_get_peakhold(peak_l
, peak_r
);
303 peak_valid_mem
[peak_time
% 3] = *peak_l
;
304 if (((peak_valid_mem
[0] == peak_valid_mem
[1]) &&
305 (peak_valid_mem
[1] == peak_valid_mem
[2])) &&
306 ((*peak_l
< 32767) || storage_disk_is_active()))
309 if (*peak_r
> *peak_l
)
310 balance_mem
[peak_time
% BAL_MEM_SIZE
] = (*peak_l
?
311 MIN((10000 * *peak_r
) / *peak_l
- 10000, 15118) : 15118);
313 balance_mem
[peak_time
% BAL_MEM_SIZE
] = (*peak_r
?
314 MAX(10000 - (10000 * *peak_l
) / *peak_r
, -15118) : -15118);
317 for (i
= 0; i
< BAL_MEM_SIZE
; i
++)
318 *balance
+= balance_mem
[i
];
319 *balance
= *balance
/ BAL_MEM_SIZE
;
324 /* AGC helper function to check if maximum gain is reached */
325 static bool agc_gain_is_max(bool left
, bool right
)
327 /* range -128...+108 [0.5dB] */
328 short gain_current_l
;
329 short gain_current_r
;
334 switch (global_settings
.rec_source
)
336 #if defined(HAVE_LINE_REC) || defined(HAVE_FMRADIO_REC)
337 HAVE_LINE_REC_(case AUDIO_SRC_LINEIN
:)
338 HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO
:)
339 gain_current_l
= global_settings
.rec_left_gain
;
340 gain_current_r
= global_settings
.rec_right_gain
;
342 #endif /* LINE, FMRADIO */
343 #if defined(HAVE_MIC_REC)
346 gain_current_l
= global_settings
.rec_mic_gain
;
347 gain_current_r
= global_settings
.rec_mic_gain
;
351 return ((left
&& (gain_current_l
>= agc_maxgain
)) ||
352 (right
&& (gain_current_r
>= agc_maxgain
)));
355 static void change_recording_gain(bool increment
, bool left
, bool right
)
357 int factor
= (increment
? 1 : -1);
359 switch (global_settings
.rec_source
)
361 #if defined(HAVE_LINE_REC) || defined(HAVE_FMRADIO_REC)
362 HAVE_LINE_REC_(case AUDIO_SRC_LINEIN
:)
363 HAVE_FMRADIO_REC_(case AUDIO_SRC_FMRADIO
:)
364 if (left
) global_settings
.rec_left_gain
+= factor
;
365 if (right
) global_settings
.rec_right_gain
+= factor
;
367 #endif /* LINE, FMRADIO */
368 #if defined(HAVE_MIC_REC)
370 global_settings
.rec_mic_gain
+= factor
;
376 * Handle automatic gain control (AGC).
377 * Change recording gain if peak_x levels are above or below
378 * target volume for specified timeouts.
380 static void auto_gain_control(int *peak_l
, int *peak_r
, int *balance
)
386 if (*peak_l
> agc_left
)
389 agc_left
-= (agc_left
- *peak_l
+ 3) >> 2;
390 if (*peak_r
> agc_right
)
393 agc_right
-= (agc_right
- *peak_r
+ 3) >> 2;
394 agc_mono
= (agc_left
+ agc_right
) / 2;
396 agc_mode
= abs(agc_preset
) - 1;
402 if (agc_mode
!= AGC_SAFETY_MODE
) {
403 /* Automatic balance control - only if not in safety mode */
404 if ((agc_left
> AGC_IMG
) && (agc_right
> AGC_IMG
))
409 agc_baltime
-= !(peak_time
% 4); /* 0.47 - 0.75dB */
410 else if (*balance
> -4125)
411 agc_baltime
--; /* 0.75 - 3.00dB */
412 else if (*balance
> -7579)
413 agc_baltime
-= 2; /* 3.00 - 4.90dB */
415 agc_baltime
-= !(peak_time
% 8); /* 4.90 - inf dB */
417 agc_baltime
-= (peak_time
% 2);
419 else if (*balance
> 556)
422 agc_baltime
+= !(peak_time
% 4);
423 else if (*balance
< 4125)
425 else if (*balance
< 7579)
428 agc_baltime
+= !(peak_time
% 8);
430 agc_baltime
+= (peak_time
% 2);
433 if ((*balance
* agc_baltime
) < 0)
436 agc_baltime
-= peak_time
% 2;
438 agc_baltime
+= peak_time
% 2;
441 increment
= ((agc_risetime
/ 2) > agc_droptime
);
443 if (agc_baltime
< -agc_tbal
[agc_mode
])
445 if (!increment
|| !agc_gain_is_max(!increment
, increment
)) {
446 change_recording_gain(increment
, !increment
, increment
);
451 else if (agc_baltime
> +agc_tbal
[agc_mode
])
453 if (!increment
|| !agc_gain_is_max(increment
, !increment
)) {
454 change_recording_gain(increment
, increment
, !increment
);
460 else if (!(hist_time
% 4))
469 /* Automatic gain control */
470 if ((agc_left
> agc_th_hi
[agc_mode
]) || (agc_right
> agc_th_hi
[agc_mode
]))
472 if ((agc_left
> AGC_CLIP
) || (agc_right
> AGC_CLIP
))
473 agc_droptime
+= agc_tdrop
[agc_mode
] /
474 (global_settings
.rec_agc_cliptime
+ 1);
475 if (agc_left
> AGC_HIGH
) {
478 if (agc_left
> AGC_PEAK
)
481 if (agc_right
> AGC_HIGH
) {
484 if (agc_right
> AGC_PEAK
)
487 if (agc_mono
> agc_th_hi
[agc_mode
])
490 agc_droptime
+= !(peak_time
% 2);
492 if (agc_droptime
>= agc_tdrop
[agc_mode
])
494 change_recording_gain(false, true, true);
499 agc_risetime
= MAX(agc_risetime
- 1, 0);
501 else if (agc_mono
< agc_th_lo
[agc_mode
])
503 if (agc_mono
< (agc_th_lo
[agc_mode
] / 8))
504 agc_risetime
+= !(peak_time
% 5);
505 else if (agc_mono
< (agc_th_lo
[agc_mode
] / 2))
510 if (agc_risetime
>= agc_trise
[agc_mode
]) {
511 if ((agc_mode
!= AGC_SAFETY_MODE
) &&
512 (!agc_gain_is_max(true, true))) {
513 change_recording_gain(true, true, true);
519 agc_droptime
= MAX(agc_droptime
- 1, 0);
521 else if (!(peak_time
% 6)) /* on target level every 1.2 sec */
523 agc_risetime
= MAX(agc_risetime
- 1, 0);
524 agc_droptime
= MAX(agc_droptime
- 1, 0);
527 #endif /* HAVE_AGC */
529 static const char* const fmtstr
[] =
531 "%c%d %s", /* no decimals */
532 "%c%d.%d %s ", /* 1 decimal */
533 "%c%d.%02d %s " /* 2 decimals */
536 static char *fmt_gain(int snd
, int val
, char *str
, int len
)
542 val
= sound_val2phys(snd
, val
);
548 numdec
= sound_numdecimals(snd
);
549 unit
= sound_unit(snd
);
553 i
= val
/ (10*numdec
);
554 d
= val
% (10*numdec
);
555 snprintf(str
, len
, fmtstr
[numdec
], sign
, i
, d
, unit
);
558 snprintf(str
, len
, fmtstr
[numdec
], sign
, val
, unit
);
563 /* the list below must match enum audio_sources in audio.h */
564 static const char* const prestr
[] =
566 HAVE_MIC_IN_([AUDIO_SRC_MIC
] = "R_MIC_",)
567 HAVE_LINE_REC_([AUDIO_SRC_LINEIN
] = "R_LINE_",)
568 HAVE_SPDIF_IN_([AUDIO_SRC_SPDIF
] = "R_SPDIF_",)
569 HAVE_FMRADIO_REC_([AUDIO_SRC_FMRADIO
] = "R_FM_",)
572 char *rec_create_filename(char *buffer
)
575 const char *pref
= "R_";
577 /* Directory existence and writeablility should have already been
578 * verified - do not pass NULL pointers to pcmrec */
580 if((unsigned)global_settings
.rec_source
< AUDIO_NUM_SOURCES
)
582 pref
= prestr
[global_settings
.rec_source
];
585 strcpy(buffer
, global_settings
.rec_directory
);
587 snprintf(ext
, sizeof(ext
), ".%s",
588 REC_FILE_ENDING(global_settings
.rec_format
));
591 return create_numbered_filename(buffer
, buffer
, pref
, ext
, 4,
594 /* We'll wait at least up to the start of the next second so no duplicate
596 return create_datetime_filename(buffer
, buffer
, pref
, ext
, true);
601 /* Hit disk to get a starting filename for the type */
602 static void rec_init_filename(void)
605 rec_create_filename(path_buffer
);
610 int rec_create_directory(void)
613 const char * const folder
= global_settings
.rec_directory
;
615 if (strcmp(folder
, "/") && !dir_exists(folder
))
621 while (action_userabort(HZ
) == false)
624 str(LANG_REC_DIR_NOT_WRITABLE
),
625 str(LANG_OFF_ABORT
));
630 rec_status
|= RCSTAT_CREATED_DIRECTORY
;
638 void rec_init_recording_options(struct audio_recording_options
*options
)
640 options
->rec_source
= global_settings
.rec_source
;
641 options
->rec_frequency
= global_settings
.rec_frequency
;
642 options
->rec_channels
= global_settings
.rec_channels
;
643 options
->rec_prerecord_time
= global_settings
.rec_prerecord_time
;
644 #if CONFIG_CODEC == SWCODEC
645 options
->rec_mono_mode
= global_settings
.rec_mono_mode
;
646 options
->rec_source_flags
= 0;
647 options
->enc_config
.rec_format
= global_settings
.rec_format
;
648 global_to_encoder_config(&options
->enc_config
);
650 options
->rec_quality
= global_settings
.rec_quality
;
651 options
->rec_editable
= global_settings
.rec_editable
;
655 #if CONFIG_CODEC == SWCODEC && !defined (SIMULATOR)
656 void rec_set_source(int source
, unsigned flags
)
658 /* Set audio input source, power up/down devices */
659 audio_set_input_source(source
, flags
);
661 /* Set peakmeters for recording or reset to playback */
662 peak_meter_playback((flags
& SRCF_RECORDING
) == 0);
663 peak_meter_enabled
= true;
665 #endif /* CONFIG_CODEC == SWCODEC && !defined (SIMULATOR) */
667 void rec_set_recording_options(struct audio_recording_options
*options
)
669 #if CONFIG_CODEC != SWCODEC
670 if (global_settings
.rec_prerecord_time
)
672 talk_buffer_steal(); /* will use the mp3 buffer */
674 #else /* == SWCODEC */
675 rec_set_source(options
->rec_source
,
676 options
->rec_source_flags
| SRCF_RECORDING
);
677 #endif /* CONFIG_CODEC != SWCODEC */
679 audio_set_recording_options(options
);
682 void rec_command(enum recording_command cmd
)
686 case RECORDING_CMD_STOP_SHUTDOWN
:
687 pm_activate_clipcount(false);
688 audio_stop_recording();
689 #if CONFIG_CODEC == SWCODEC
690 audio_close_recording();
694 case RECORDING_CMD_STOP
:
695 pm_activate_clipcount(false);
696 audio_stop_recording();
698 case RECORDING_CMD_START
:
699 /* steal mp3 buffer, create unique filename and start recording */
700 pm_reset_clipcount();
701 pm_activate_clipcount(true);
702 #if CONFIG_CODEC != SWCODEC
703 talk_buffer_steal(); /* we use the mp3 buffer */
705 audio_record(rec_create_filename(path_buffer
));
707 case RECORDING_CMD_START_NEWFILE
:
708 /* create unique filename and start recording*/
709 pm_reset_clipcount();
710 pm_activate_clipcount(true); /* just to be sure */
711 audio_new_file(rec_create_filename(path_buffer
));
713 case RECORDING_CMD_PAUSE
:
714 pm_activate_clipcount(false);
715 audio_pause_recording();
717 case RECORDING_CMD_RESUME
:
718 pm_activate_clipcount(true);
719 audio_resume_recording();
725 /* used in trigger_listerner and recording_screen */
726 static unsigned int last_seconds
= 0;
729 * Callback function so that the peak meter code can send an event
730 * to this application. This function can be passed to
731 * peak_meter_set_trigger_listener in order to activate the trigger.
733 static void trigger_listener(int trigger_status
)
735 switch (trigger_status
)
738 if(!(audio_status() & AUDIO_STATUS_RECORD
))
740 rec_status
|= RCSTAT_HAVE_RECORDED
;
741 rec_command(RECORDING_CMD_START
);
742 #if CONFIG_CODEC != SWCODEC
743 /* give control to mpeg thread so that it can start
745 yield(); yield(); yield();
749 /* if we're already recording this is a retrigger */
752 if((audio_status() & AUDIO_STATUS_PAUSE
) &&
753 (global_settings
.rec_trigger_type
== TRIG_TYPE_PAUSE
))
755 rec_command(RECORDING_CMD_RESUME
);
757 /* New file on trig start*/
758 else if (global_settings
.rec_trigger_type
!= TRIG_TYPE_NEW_FILE
)
760 rec_command(RECORDING_CMD_START_NEWFILE
);
761 /* tell recording_screen to reset the time */
767 /* A _change_ to TRIG_READY means the current recording has stopped */
769 if(audio_status() & AUDIO_STATUS_RECORD
)
771 switch(global_settings
.rec_trigger_type
)
773 case TRIG_TYPE_STOP
: /* Stop */
774 rec_command(RECORDING_CMD_STOP
);
777 case TRIG_TYPE_PAUSE
: /* Pause */
778 rec_command(RECORDING_CMD_PAUSE
);
781 case TRIG_TYPE_NEW_FILE
: /* New file on trig stop*/
782 rec_command(RECORDING_CMD_START_NEWFILE
);
783 /* tell recording_screen to reset the time */
787 case 3: /* Stop and shutdown */
788 rec_command(RECORDING_CMD_STOP_SHUTDOWN
);
792 if (global_settings
.rec_trigger_mode
!= TRIG_MODE_REARM
)
794 peak_meter_set_trigger_listener(NULL
);
795 peak_meter_trigger(false);
802 /* Stuff for drawing the screen */
804 enum rec_list_items_stereo
{
820 enum rec_list_items_mono
{
825 ITEM_AGC_MAXDB_M
= 5,
834 #ifdef HAVE_SPDIF_REC
835 enum rec_list_items_spdif
{
837 #if CONFIG_CODEC == SWCODEC
838 ITEM_SAMPLERATE_D
= 6,
848 static int listid_to_enum
[ITEM_COUNT
];
850 static const char* reclist_get_name(int selected_item
, void * data
,
851 char * buffer
, size_t buffer_len
)
857 data
= data
; /* not used */
858 if(selected_item
>= ITEM_COUNT
)
861 switch (listid_to_enum
[selected_item
])
864 snprintf(buffer
, buffer_len
, "%s: %s", str(LANG_VOLUME
),
865 fmt_gain(SOUND_VOLUME
,
866 global_settings
.volume
,
867 buf2
, sizeof(buf2
)));
871 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
873 /* Draw MIC recording gain */
874 snprintf(buffer
, buffer_len
, "%s: %s", str(LANG_GAIN
),
875 fmt_gain(SOUND_MIC_GAIN
,
876 global_settings
.rec_mic_gain
,
877 buf2
, sizeof(buf2
)));
882 int avg_gain
= (global_settings
.rec_left_gain
+
883 global_settings
.rec_right_gain
) / 2;
884 snprintf(buffer
, buffer_len
, "%s: %s", str(LANG_GAIN
),
885 fmt_gain(SOUND_LEFT_GAIN
,
887 buf2
, sizeof(buf2
)));
891 snprintf(buffer
, buffer_len
, "%s: %s",
893 fmt_gain(SOUND_LEFT_GAIN
,
894 global_settings
.rec_left_gain
,
895 buf2
, sizeof(buf2
)));
898 snprintf(buffer
, buffer_len
, "%s: %s",
899 str(LANG_GAIN_RIGHT
),
900 fmt_gain(SOUND_RIGHT_GAIN
,
901 global_settings
.rec_right_gain
,
902 buf2
, sizeof(buf2
)));
906 snprintf(buffer
, buffer_len
, "%s: %s",
907 str(LANG_RECORDING_AGC_PRESET
),
908 agc_preset_str
[agc_preset
]);
912 snprintf(buffer
, buffer_len
, "%s: %s",
913 str(LANG_RECORDING_AGC_MAXGAIN
),
914 fmt_gain(SOUND_LEFT_GAIN
,
915 agc_maxgain
, buf2
, sizeof(buf2
)));
917 else if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
918 snprintf(buffer
, buffer_len
, "%s: %s (%s)",
919 str(LANG_RECORDING_AGC_MAXGAIN
),
920 fmt_gain(SOUND_MIC_GAIN
,
921 agc_maxgain
, buf2
, sizeof(buf2
)),
922 fmt_gain(SOUND_MIC_GAIN
,
923 agc_maxgain
- global_settings
.rec_mic_gain
,
924 buf3
, sizeof(buf3
)));
927 snprintf(buffer
, buffer_len
, "%s: %s (%s)",
928 str(LANG_RECORDING_AGC_MAXGAIN
),
929 fmt_gain(SOUND_LEFT_GAIN
,
930 agc_maxgain
, buf2
, sizeof(buf2
)),
931 fmt_gain(SOUND_LEFT_GAIN
,
933 (global_settings
.rec_left_gain
+
934 global_settings
.rec_right_gain
)/2,
935 buf3
, sizeof(buf3
)));
938 #if CONFIG_CODEC == SWCODEC
939 #ifdef HAVE_SPDIF_REC
940 case ITEM_SAMPLERATE_D
:
941 snprintf(buffer
, buffer_len
, "%s: %d",
942 str(LANG_RECORDING_FREQUENCY
),
943 pcm_rec_sample_rate());
949 if(audio_status() & AUDIO_STATUS_RECORD
)
951 size_t tot_len
= strlen(path_buffer
) +
952 strlen(str(LANG_RECORDING_FILENAME
)) + 1;
953 if(tot_len
> buffer_len
)
955 snprintf(buffer
, buffer_len
, "%s %s",
956 str(LANG_RECORDING_FILENAME
),
957 path_buffer
+ tot_len
- buffer_len
);
961 snprintf(buffer
, buffer_len
, "%s %s",
962 str(LANG_RECORDING_FILENAME
), path_buffer
);
967 return str(LANG_RECORDING_FILENAME
);
978 bool recording_start_automatic
= false;
980 bool recording_screen(bool no_source
)
983 int done
= -1; /* negative to re-init, positive to quit, zero to run */
984 char buf
[32]; /* for preparing strings */
985 char buf2
[32]; /* for preparing strings */
986 int w
, h
; /* character width/height */
987 int update_countdown
= 0; /* refresh counter */
988 unsigned int seconds
;
990 int audio_stat
= 0; /* status of the audio system */
991 int last_audio_stat
= -1; /* previous status so we can act on changes */
992 struct viewport vp_list
[NB_SCREENS
], vp_top
[NB_SCREENS
]; /* the viewports */
994 #if CONFIG_CODEC == SWCODEC
995 int warning_counter
= 0;
996 #define WARNING_PERIOD 7
999 #if CONFIG_CODEC == SWCODEC
1000 #ifdef HAVE_SPDIF_REC
1001 unsigned long prev_sample_rate
= 0;
1005 #ifdef HAVE_FMRADIO_REC
1006 /* Radio is left on if:
1007 * 1) Is was on at the start and the initial source is FM Radio
1008 * 2) 1) and the source was never changed to something else
1010 int radio_status
= (global_settings
.rec_source
!= AUDIO_SRC_FMRADIO
) ?
1011 FMRADIO_OFF
: get_radio_status();
1013 #if (CONFIG_LED == LED_REAL)
1014 bool led_state
= false;
1015 int led_countdown
= 2;
1018 bool peak_read
= false;
1019 bool peak_valid
= false;
1023 int oldbars
, recbars
= VP_SB_ALLSCREENS
;
1025 int pm_x
[NB_SCREENS
]; /* peakmeter (and trigger bar) x pos */
1026 int pm_y
[NB_SCREENS
]; /* peakmeter y pos */
1027 int pm_h
[NB_SCREENS
]; /* peakmeter height */
1028 int trig_ypos
[NB_SCREENS
]; /* trigger bar y pos */
1029 int trig_width
[NB_SCREENS
]; /* trigger bar width */
1030 bool compact_view
[NB_SCREENS
]; /* tweak layout tiny screens / big fonts */
1032 struct gui_synclist lists
; /* the list in the bottom vp */
1033 #ifdef HAVE_FMRADIO_REC
1034 int prev_rec_source
= global_settings
.rec_source
; /* detect source change */
1037 struct audio_recording_options rec_options
;
1038 rec_status
= RCSTAT_IN_RECSCREEN
;
1040 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
1041 && !defined(SIMULATOR)
1042 ata_set_led_enabled(false);
1045 #if CONFIG_CODEC == SWCODEC
1046 /* recording_menu gets messed up: so prevent manus talking */
1048 /* audio_init_recording stops anything playing when it takes the audio
1051 /* Yes, we use the D/A for monitoring */
1052 peak_meter_enabled
= true;
1053 peak_meter_playback(true);
1057 peak_meter_get_peakhold(&peak_l
, &peak_r
);
1060 pm_reset_clipcount();
1061 pm_activate_clipcount(false);
1062 settings_apply_trigger();
1065 agc_preset_str
[0] = str(LANG_OFF
);
1066 agc_preset_str
[1] = str(LANG_AGC_SAFETY
);
1067 agc_preset_str
[2] = str(LANG_AGC_LIVE
);
1068 agc_preset_str
[3] = str(LANG_AGC_DJSET
);
1069 agc_preset_str
[4] = str(LANG_AGC_MEDIUM
);
1070 agc_preset_str
[5] = str(LANG_AGC_VOICE
);
1071 #endif /* HAVE_AGC */
1073 #if CONFIG_CODEC == SWCODEC
1074 audio_close_recording();
1076 audio_init_recording(0);
1077 sound_set_volume(global_settings
.volume
);
1080 /* Create new filename for recording start */
1081 rec_init_filename();
1084 /* viewport init and calculations that only needs to be done once */
1086 recbars
|= VP_SB_IGNORE_SETTING(i
);
1087 oldbars
= viewportmanager_set_statusbar(recbars
);
1091 /* top vp, 4 lines, force sys font if total screen < 6 lines
1092 NOTE: one could limit the list to 1 line and get away with 5 lines */
1094 viewport_set_defaults(v
, i
);
1095 if (viewport_get_nb_lines(v
) < 4)
1097 /* compact needs 4 lines total */
1098 v
->font
= FONT_SYSFIXED
;
1099 compact_view
[i
] = false;
1103 if (viewport_get_nb_lines(v
) < (4+2)) /*top=4,list=2*/
1104 compact_view
[i
] = true;
1106 compact_view
[i
] = false;
1108 vp_list
[i
] = *v
; /* get a copy now so it can be sized more easily */
1109 v
->height
= (font_get(v
->font
)->height
)*(compact_view
[i
] ? 3 : 4);
1111 /* list section, rest of the screen */
1112 vp_list
[i
].y
+= vp_top
[i
].height
;
1113 vp_list
[i
].height
-= vp_top
[i
].height
;
1114 screens
[i
].set_viewport(&vp_top
[i
]); /* req for next calls */
1116 screens
[i
].getstringsize("W", &w
, &h
);
1117 pm_y
[i
] = font_get(vp_top
[i
].font
)->height
* 2;
1118 trig_ypos
[i
] = font_get(vp_top
[i
].font
)->height
* 3;
1120 trig_ypos
[i
] -= (font_get(vp_top
[i
].font
)->height
)/2;
1123 /* init the bottom list */
1124 gui_synclist_init(&lists
, reclist_get_name
, NULL
, false, 1, vp_list
);
1125 gui_synclist_set_title(&lists
, NULL
, Icon_NOICON
);
1127 /* start of the loop: we stay in this loop until user quits recscreen */
1132 /* request to re-init stuff, done after settings screen */
1134 #ifdef HAVE_FMRADIO_REC
1135 /* If input changes away from FM Radio,
1136 radio will remain off when recording screen closes. */
1137 if (global_settings
.rec_source
!= prev_rec_source
1138 && prev_rec_source
== AUDIO_SRC_FMRADIO
)
1139 radio_status
= FMRADIO_OFF
;
1140 prev_rec_source
= global_settings
.rec_source
;
1146 if(global_settings
.peak_meter_clipcounter
)
1149 screens
[i
].getstringsize(str(LANG_PM_CLIPCOUNT
),
1150 &clipwidth
, &h
); /* h is same */
1151 pm_x
[i
] = clipwidth
+1;
1153 if(global_settings
.rec_trigger_mode
== TRIG_MODE_OFF
)
1154 pm_h
[i
] = font_get(vp_top
[i
].font
)->height
* 2;
1156 pm_h
[i
] = font_get(vp_top
[i
].font
)->height
;
1159 trig_width
[i
] = vp_top
[i
].width
- pm_x
[i
];
1162 #if CONFIG_CODEC == SWCODEC
1163 audio_close_recording();
1164 audio_init_recording(0);
1167 rec_init_recording_options(&rec_options
);
1168 rec_set_recording_options(&rec_options
);
1170 if(rec_create_directory() < 0)
1176 #if CONFIG_CODEC == SWCODEC && CONFIG_RTC == 0
1177 /* If format changed, a new number is required */
1178 rec_init_filename();
1183 if (global_settings
.rec_source
== AUDIO_SRC_MIC
) {
1184 agc_preset
= global_settings
.rec_agc_preset_mic
;
1185 agc_maxgain
= global_settings
.rec_agc_maxgain_mic
;
1190 agc_preset
= global_settings
.rec_agc_preset_line
;
1191 agc_maxgain
= global_settings
.rec_agc_maxgain_line
;
1193 #endif /* HAVE_AGC */
1196 update_countdown
= 0; /* Update immediately */
1198 /* populate translation table for list id -> enum */
1199 #ifdef HAVE_SPDIF_REC
1200 if(global_settings
.rec_source
== AUDIO_SRC_SPDIF
)
1202 listid_to_enum
[0] = ITEM_VOLUME_D
;
1203 #if CONFIG_CODEC == SWCODEC
1204 listid_to_enum
[1] = ITEM_SAMPLERATE_D
;
1205 listid_to_enum
[2] = ITEM_FILENAME_D
;
1207 listid_to_enum
[1] = ITEM_FILENAME_D
;
1210 gui_synclist_set_nb_items(&lists
, ITEM_COUNT_D
); /* spdif */
1214 if(HAVE_MIC_REC_((global_settings
.rec_source
== AUDIO_SRC_MIC
) || )
1215 (global_settings
.rec_channels
== 1))
1217 listid_to_enum
[0] = ITEM_VOLUME_M
;
1218 listid_to_enum
[1] = ITEM_GAIN_M
;
1220 listid_to_enum
[2] = ITEM_AGC_MODE_M
;
1221 listid_to_enum
[3] = ITEM_AGC_MAXDB_M
;
1222 listid_to_enum
[4] = ITEM_FILENAME_M
;
1224 listid_to_enum
[2] = ITEM_FILENAME_M
;
1226 gui_synclist_set_nb_items(&lists
, ITEM_COUNT_M
); /* mono */
1230 listid_to_enum
[0] = ITEM_VOLUME
;
1231 listid_to_enum
[1] = ITEM_GAIN
;
1232 listid_to_enum
[2] = ITEM_GAIN_L
;
1233 listid_to_enum
[3] = ITEM_GAIN_R
;
1235 listid_to_enum
[4] = ITEM_AGC_MODE
;
1236 listid_to_enum
[5] = ITEM_AGC_MAXDB
;
1237 listid_to_enum
[6] = ITEM_FILENAME
;
1239 listid_to_enum
[4] = ITEM_FILENAME
;
1241 gui_synclist_set_nb_items(&lists
, ITEM_COUNT
); /* stereo */
1244 gui_synclist_draw(&lists
);
1245 } /* if(done < 0) */
1247 audio_stat
= audio_status();
1249 #if (CONFIG_LED == LED_REAL)
1252 * Flash the LED while waiting to record. Turn it on while
1255 if(audio_stat
& AUDIO_STATUS_RECORD
)
1257 if (audio_stat
& AUDIO_STATUS_PAUSE
)
1259 if (--led_countdown
<= 0)
1261 led_state
= !led_state
;
1268 /* trigger is on in status TRIG_READY (no check needed) */
1274 int trig_stat
= peak_meter_trigger_status();
1276 * other trigger stati than trig_off and trig_steady
1277 * already imply that we are recording.
1279 if (trig_stat
== TRIG_STEADY
)
1281 if (--led_countdown
<= 0)
1283 led_state
= !led_state
;
1290 /* trigger is on in status TRIG_READY (no check needed) */
1294 #endif /* CONFIG_LED */
1296 /* Wait for a button a while (HZ/10) drawing the peak meter */
1297 button
= peak_meter_draw_get_btn(CONTEXT_RECSCREEN
,
1299 screen_update
, vp_top
);
1300 if (last_audio_stat
!= audio_stat
)
1302 if (audio_stat
& AUDIO_STATUS_RECORD
)
1304 rec_status
|= RCSTAT_HAVE_RECORDED
;
1306 last_audio_stat
= audio_stat
;
1310 if (recording_start_automatic
)
1312 /* simulate a button press */
1313 button
= ACTION_REC_PAUSE
;
1314 recording_start_automatic
= false;
1317 /* let list handle the button */
1318 gui_synclist_do_button(&lists
, &button
, LIST_WRAP_UNLESS_HELD
);
1323 case ACTION_SETTINGS_INC
:
1324 case ACTION_SETTINGS_INCREPEAT
:
1325 switch (listid_to_enum
[gui_synclist_get_sel_pos(&lists
)])
1328 global_settings
.volume
++;
1333 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
1335 if(global_settings
.rec_mic_gain
<
1336 sound_max(SOUND_MIC_GAIN
))
1337 global_settings
.rec_mic_gain
++;
1342 if(global_settings
.rec_left_gain
<
1343 sound_max(SOUND_LEFT_GAIN
))
1344 global_settings
.rec_left_gain
++;
1345 if(global_settings
.rec_right_gain
<
1346 sound_max(SOUND_RIGHT_GAIN
))
1347 global_settings
.rec_right_gain
++;
1351 if(global_settings
.rec_left_gain
<
1352 sound_max(SOUND_LEFT_GAIN
))
1353 global_settings
.rec_left_gain
++;
1356 if(global_settings
.rec_right_gain
<
1357 sound_max(SOUND_RIGHT_GAIN
))
1358 global_settings
.rec_right_gain
++;
1362 agc_preset
= MIN(agc_preset
+ 1, AGC_MODE_SIZE
);
1363 agc_enable
= (agc_preset
!= 0);
1365 if (global_settings
.rec_source
== AUDIO_SRC_MIC
) {
1366 global_settings
.rec_agc_preset_mic
= agc_preset
;
1367 agc_maxgain
= global_settings
.rec_agc_maxgain_mic
;
1371 global_settings
.rec_agc_preset_line
= agc_preset
;
1372 agc_maxgain
= global_settings
.rec_agc_maxgain_line
;
1375 case ITEM_AGC_MAXDB
:
1377 if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
1379 agc_maxgain
= MIN(agc_maxgain
+ 1,
1380 sound_max(SOUND_MIC_GAIN
));
1381 global_settings
.rec_agc_maxgain_mic
= agc_maxgain
;
1386 agc_maxgain
= MIN(agc_maxgain
+ 1,
1387 sound_max(SOUND_LEFT_GAIN
));
1388 global_settings
.rec_agc_maxgain_line
= agc_maxgain
;
1391 #endif /* HAVE_AGC */
1394 update_countdown
= 0; /* Update immediately */
1396 case ACTION_SETTINGS_DEC
:
1397 case ACTION_SETTINGS_DECREPEAT
:
1398 switch (listid_to_enum
[gui_synclist_get_sel_pos(&lists
)])
1401 global_settings
.volume
--;
1406 if(global_settings
.rec_source
== AUDIO_SRC_MIC
)
1408 if(global_settings
.rec_mic_gain
>
1409 sound_min(SOUND_MIC_GAIN
))
1410 global_settings
.rec_mic_gain
--;
1415 if(global_settings
.rec_left_gain
>
1416 sound_min(SOUND_LEFT_GAIN
))
1417 global_settings
.rec_left_gain
--;
1418 if(global_settings
.rec_right_gain
>
1419 sound_min(SOUND_RIGHT_GAIN
))
1420 global_settings
.rec_right_gain
--;
1424 if(global_settings
.rec_left_gain
>
1425 sound_min(SOUND_LEFT_GAIN
))
1426 global_settings
.rec_left_gain
--;
1429 if(global_settings
.rec_right_gain
>
1430 sound_min(SOUND_RIGHT_GAIN
))
1431 global_settings
.rec_right_gain
--;
1435 agc_preset
= MAX(agc_preset
- 1, 0);
1436 agc_enable
= (agc_preset
!= 0);
1438 if (global_settings
.rec_source
== AUDIO_SRC_MIC
) {
1439 global_settings
.rec_agc_preset_mic
= agc_preset
;
1440 agc_maxgain
= global_settings
.rec_agc_maxgain_mic
;
1444 global_settings
.rec_agc_preset_line
= agc_preset
;
1445 agc_maxgain
= global_settings
.rec_agc_maxgain_line
;
1448 case ITEM_AGC_MAXDB
:
1450 if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
1452 agc_maxgain
= MAX(agc_maxgain
- 1,
1453 sound_min(SOUND_MIC_GAIN
));
1454 global_settings
.rec_agc_maxgain_mic
= agc_maxgain
;
1458 agc_maxgain
= MAX(agc_maxgain
- 1,
1459 sound_min(SOUND_LEFT_GAIN
));
1460 global_settings
.rec_agc_maxgain_line
= agc_maxgain
;
1463 #endif /* HAVE_AGC */
1466 update_countdown
= 0; /* Update immediately */
1468 case ACTION_STD_CANCEL
:
1469 /* turn off the trigger */
1470 peak_meter_trigger(false);
1471 peak_meter_set_trigger_listener(NULL
);
1473 if(audio_stat
& AUDIO_STATUS_RECORD
)
1475 rec_command(RECORDING_CMD_STOP
);
1479 #if CONFIG_CODEC != SWCODEC
1480 peak_meter_playback(true);
1481 peak_meter_enabled
= false;
1485 update_countdown
= 0; /* Update immediately */
1487 #ifdef HAVE_REMOTE_LCD
1488 case ACTION_REC_LCD
:
1489 /* this feature exists for some h1x0/h3x0 targets that suffer
1490 from noise caused by remote LCD updates
1491 NOTE 1: this will leave the list on the remote
1492 NOTE 2: to be replaced by a global LCD_off() routine */
1493 if(remote_display_on
)
1495 /* switch to single screen, leave message on remote */
1497 screens
[1].clear_viewport();
1498 screens
[1].puts(0, 0, str(LANG_REMOTE_LCD_OFF
));
1499 screens
[1].puts(0, 1, str(LANG_REMOTE_LCD_ON
));
1500 screens
[1].update_viewport();
1504 /* remote switched on again */
1506 screen_update
= NB_SCREENS
;
1508 remote_display_on
= !remote_display_on
; /* toggle */
1509 update_countdown
= 0; /* Update immediately */
1512 case ACTION_REC_PAUSE
:
1513 case ACTION_REC_NEWFILE
:
1514 /* Only act if the mpeg is stopped */
1515 if(!(audio_stat
& AUDIO_STATUS_RECORD
))
1517 /* is this manual or triggered recording? */
1518 if ((global_settings
.rec_trigger_mode
== TRIG_MODE_OFF
) ||
1519 (peak_meter_trigger_status() != TRIG_OFF
))
1521 /* manual recording */
1522 rec_status
|= RCSTAT_HAVE_RECORDED
;
1523 rec_command(RECORDING_CMD_START
);
1525 if (global_settings
.talk_menu
)
1527 /* no voice possible here, but a beep */
1528 audio_beep(HZ
/2); /* longer beep on start */
1531 /* this is triggered recording */
1534 /* we don't start recording now, but enable the
1535 trigger and let the callback function
1536 trigger_listener control when the recording starts */
1537 peak_meter_trigger(true);
1538 peak_meter_set_trigger_listener(&trigger_listener
);
1543 /*if new file button pressed, start new file */
1544 if (button
== ACTION_REC_NEWFILE
)
1546 rec_command(RECORDING_CMD_START_NEWFILE
);
1550 /* if pause button pressed, pause or resume */
1552 if(audio_stat
& AUDIO_STATUS_PAUSE
)
1554 rec_command(RECORDING_CMD_RESUME
);
1555 if (global_settings
.talk_menu
)
1557 /* no voice possible here, but a beep */
1558 audio_beep(HZ
/4); /* short beep on resume */
1563 rec_command(RECORDING_CMD_PAUSE
);
1567 update_countdown
= 0; /* Update immediately */
1569 case ACTION_STD_MENU
:
1570 #if CONFIG_CODEC == SWCODEC
1571 if(!(audio_stat
& AUDIO_STATUS_RECORD
))
1573 if(audio_stat
!= AUDIO_STATUS_RECORD
)
1576 #if (CONFIG_LED == LED_REAL)
1577 /* led is restored at begin of loop / end of function */
1580 viewportmanager_set_statusbar(oldbars
);
1581 if (recording_menu(no_source
))
1584 rec_status
|= RCSTAT_BEEN_IN_USB_MODE
;
1585 #ifdef HAVE_FMRADIO_REC
1586 radio_status
= FMRADIO_OFF
;
1592 /* the init is now done at the beginning of the loop */
1594 viewportmanager_set_statusbar(recbars
);
1598 #if CONFIG_KEYPAD == RECORDER_PAD
1600 if(audio_stat
!= AUDIO_STATUS_RECORD
)
1602 #if (CONFIG_LED == LED_REAL)
1603 /* led is restored at begin of loop / end of function */
1606 viewportmanager_set_statusbar(oldbars
);
1607 if (f2_rec_screen())
1609 rec_status
|= RCSTAT_HAVE_RECORDED
;
1613 update_countdown
= 0; /* Update immediately */
1614 viewportmanager_set_statusbar(recbars
);
1619 if(audio_stat
& AUDIO_STATUS_RECORD
)
1621 rec_command(RECORDING_CMD_START_NEWFILE
);
1626 #if (CONFIG_LED == LED_REAL)
1627 /* led is restored at begin of loop / end of function */
1630 viewportmanager_set_statusbar(oldbars
);
1631 if (f3_rec_screen())
1633 rec_status
|= RCSTAT_HAVE_RECORDED
;
1637 update_countdown
= 0; /* Update immediately */
1638 viewportmanager_set_statusbar(recbars
);
1641 #endif /* CONFIG_KEYPAD == RECORDER_PAD */
1643 case SYS_USB_CONNECTED
:
1644 /* Only accept USB connection when not recording */
1645 if(!(audio_stat
& AUDIO_STATUS_RECORD
))
1648 screens
[i
].set_viewport(NULL
);
1649 default_event_handler(SYS_USB_CONNECTED
);
1651 rec_status
|= RCSTAT_BEEN_IN_USB_MODE
;
1652 #ifdef HAVE_FMRADIO_REC
1653 radio_status
= FMRADIO_OFF
;
1657 } /*switch(button)*/
1660 peak_read
= !peak_read
;
1661 if (peak_read
) { /* every 2nd run of loop */
1663 peak_valid
= read_peak_levels(&peak_l
, &peak_r
, &balance
);
1666 /* Handle AGC every 200ms when enabled and peak data is valid */
1667 if (peak_read
&& agc_enable
&& peak_valid
)
1668 auto_gain_control(&peak_l
, &peak_r
, &balance
);
1671 seconds
= audio_recorded_time() / HZ
;
1673 /* start of vp_top drawing */
1674 if(update_countdown
-- == 0 || seconds
> last_seconds
)
1676 unsigned int dseconds
, dhours
, dminutes
;
1677 unsigned long num_recorded_bytes
, dsize
, dmb
;
1682 screens
[i
].set_viewport(&vp_top
[i
]);
1683 screens
[i
].clear_viewport();
1685 update_countdown
= 5;
1686 last_seconds
= seconds
;
1688 dseconds
= rec_timesplit_seconds();
1689 dsize
= rec_sizesplit_bytes();
1690 num_recorded_bytes
= audio_num_recorded_bytes();
1692 #if CONFIG_CODEC == SWCODEC
1693 if ((audio_stat
& AUDIO_STATUS_WARNING
)
1694 && (warning_counter
++ % WARNING_PERIOD
) < WARNING_PERIOD
/2)
1696 /* Switch back and forth displaying warning on first available
1697 line to ensure visibility - the motion should also help
1699 /* Don't use language string unless agreed upon to make this
1700 method permanent - could do something in the statusbar */
1701 snprintf(buf
, sizeof(buf
), "Warning: %08X",
1702 pcm_rec_get_warnings());
1705 #endif /* CONFIG_CODEC == SWCODEC */
1706 if ((global_settings
.rec_sizesplit
) &&
1707 (global_settings
.rec_split_method
))
1709 dmb
= dsize
/1024/1024;
1710 snprintf(buf
, sizeof(buf
), "%s %dMB",
1711 str(LANG_SPLIT_SIZE
), dmb
);
1715 hours
= seconds
/ 3600;
1716 minutes
= (seconds
- (hours
* 3600)) / 60;
1717 snprintf(buf
, sizeof(buf
), "%s %02d:%02d:%02d",
1718 str(LANG_RECORDING_TIME
),
1719 hours
, minutes
, seconds
%60);
1722 FOR_NB_ACTIVE_SCREENS(i
)
1723 screens
[i
].puts(0, 0, buf
);
1725 if(audio_stat
& AUDIO_STATUS_PRERECORD
)
1727 snprintf(buf
, sizeof(buf
), "%s...",
1728 str(LANG_RECORD_PRERECORD
));
1732 /* Display the split interval if the record timesplit
1734 if ((global_settings
.rec_timesplit
) &&
1735 !(global_settings
.rec_split_method
))
1737 /* Display the record timesplit interval rather
1738 than the file size if the record timer is active */
1739 dhours
= dseconds
/ 3600;
1740 dminutes
= (dseconds
- (dhours
* 3600)) / 60;
1741 snprintf(buf
, sizeof(buf
), "%s %02d:%02d",
1742 str(LANG_RECORDING_TIMESPLIT_REC
),
1747 output_dyn_value(buf2
, sizeof buf2
,
1750 snprintf(buf
, sizeof(buf
), "%s %s",
1751 str(LANG_RECORDING_SIZE
), buf2
);
1755 FOR_NB_ACTIVE_SCREENS(i
)
1756 screens
[i
].puts(0, 1, buf
);
1758 /* We will do file splitting regardless, either at the end of
1759 a split interval, or when the filesize approaches the 2GB
1760 FAT file size (compatibility) limit. */
1761 if ((audio_stat
&& !(global_settings
.rec_split_method
)
1762 && global_settings
.rec_timesplit
&& (seconds
>= dseconds
))
1763 || (audio_stat
&& global_settings
.rec_split_method
1764 && global_settings
.rec_sizesplit
1765 && (num_recorded_bytes
>= dsize
))
1766 || (num_recorded_bytes
>= MAX_FILE_SIZE
))
1768 if (!(global_settings
.rec_split_type
)
1769 || (num_recorded_bytes
>= MAX_FILE_SIZE
))
1771 rec_command(RECORDING_CMD_START_NEWFILE
);
1776 peak_meter_trigger(false);
1777 peak_meter_set_trigger_listener(NULL
);
1778 if( global_settings
.rec_split_type
== 1)
1779 rec_command(RECORDING_CMD_STOP
);
1781 rec_command(RECORDING_CMD_STOP_SHUTDOWN
);
1783 update_countdown
= 0;
1786 /* draw the clipcounter just in front of the peakmeter */
1787 if(global_settings
.peak_meter_clipcounter
)
1789 int clipcount
= pm_get_clipcount();
1790 FOR_NB_ACTIVE_SCREENS(i
)
1792 if(!compact_view
[i
])
1794 screens
[i
].puts(0, 2, str(LANG_PM_CLIPCOUNT
));
1795 screens
[i
].putsf(0, 3, "%4d", clipcount
);
1798 screens
[i
].putsf(0, 2, "%4d", clipcount
);
1806 /* draw the trigger status */
1807 if (peak_meter_trigger_status() != TRIG_OFF
)
1809 peak_meter_draw_trig(pm_x
, trig_ypos
, trig_width
,
1811 FOR_NB_ACTIVE_SCREENS(i
)
1812 screens
[i
].update_viewport_rect(pm_x
[i
], trig_ypos
[i
],
1813 trig_width
[i
] + 2, TRIG_HEIGHT
);
1818 if (global_settings
.rec_source
== AUDIO_SRC_MIC
)
1820 if(agc_maxgain
< (global_settings
.rec_mic_gain
))
1821 change_recording_gain(false, true, true);
1826 if(agc_maxgain
< (global_settings
.rec_left_gain
))
1827 change_recording_gain(false, true, false);
1828 if(agc_maxgain
< (global_settings
.rec_right_gain
))
1829 change_recording_gain(false, false, true);
1831 #endif /* HAVE_AGC */
1833 #if CONFIG_CODEC == SWCODEC
1834 #ifdef HAVE_SPDIF_REC
1835 if((global_settings
.rec_source
== AUDIO_SRC_SPDIF
) &&
1836 (prev_sample_rate
!= pcm_rec_sample_rate()))
1838 /* spdif samplerate changed */
1839 prev_sample_rate
= pcm_rec_sample_rate();
1847 /* update_list is set whenever content changes */
1848 update_list
= false;
1849 gui_synclist_draw(&lists
);
1852 /* draw peakmeter again (check if this can be removed) */
1853 FOR_NB_ACTIVE_SCREENS(i
)
1855 screens
[i
].set_viewport(&vp_top
[i
]);
1856 peak_meter_screen(&screens
[i
], pm_x
[i
], pm_y
[i
], pm_h
[i
]);
1857 screens
[i
].update();
1859 } /* display update every second */
1861 if(audio_stat
& AUDIO_STATUS_ERROR
)
1865 } /* end while(!done) */
1867 audio_stat
= audio_status();
1868 if (audio_stat
& AUDIO_STATUS_ERROR
)
1870 splash(0, str(LANG_DISK_FULL
));
1873 screens
[i
].update();
1875 #if CONFIG_CODEC == SWCODEC
1876 /* stop recording - some players like H10 freeze otherwise
1877 TO DO: find out why it freezes and fix properly */
1878 rec_command(RECORDING_CMD_STOP
);
1879 audio_close_recording();
1882 audio_error_clear();
1886 if (action_userabort(TIMEOUT_NOBLOCK
))
1893 #if CONFIG_CODEC == SWCODEC
1894 rec_command(RECORDING_CMD_STOP
);
1895 audio_close_recording();
1897 #ifdef HAVE_FMRADIO_REC
1898 if (radio_status
!= FMRADIO_OFF
)
1899 /* Restore radio playback - radio_status should be unchanged if started
1900 through fm radio screen (barring usb connect) */
1901 rec_set_source(AUDIO_SRC_FMRADIO
, (radio_status
& FMRADIO_PAUSED
) ?
1902 SRCF_FMRADIO_PAUSED
: SRCF_FMRADIO_PLAYING
);
1905 /* Go back to playback mode */
1906 rec_set_source(AUDIO_SRC_PLAYBACK
, SRCF_PLAYBACK
);
1908 /* restore talking */
1909 talk_disable(false);
1910 #else /* !SWCODEC */
1911 audio_init_playback();
1912 #endif /* CONFIG_CODEC == SWCODEC */
1914 /* make sure the trigger is really turned off */
1915 peak_meter_trigger(false);
1916 peak_meter_set_trigger_listener(NULL
);
1918 rec_status
&= ~RCSTAT_IN_RECSCREEN
;
1919 sound_settings_apply();
1922 screens
[i
].setfont(FONT_UI
);
1924 viewportmanager_set_statusbar(oldbars
);
1925 send_event(GUI_EVENT_REFRESH
, NULL
);
1927 /* if the directory was created or recording happened, make sure the
1928 browser is updated */
1929 if (rec_status
& (RCSTAT_CREATED_DIRECTORY
| RCSTAT_HAVE_RECORDED
))
1932 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
1933 && !defined(SIMULATOR)
1934 ata_set_led_enabled(true);
1939 return (rec_status
& RCSTAT_BEEN_IN_USB_MODE
) != 0;
1940 } /* recording_screen */
1942 #if CONFIG_KEYPAD == RECORDER_PAD
1943 static bool f2_rec_screen(void)
1945 static const char* const freq_str
[6] =
1960 struct audio_recording_options rec_options
;
1964 screens
[i
].setfont(FONT_SYSFIXED
);
1965 screens
[i
].getstringsize("A",&w
,&h
);
1973 screens
[i
].clear_display();
1975 /* Recording quality */
1976 screens
[i
].putsxy(0, LCD_HEIGHT
/2 - h
*2,
1977 str(LANG_SYSFONT_RECORDING_QUALITY
));
1980 snprintf(buf
, sizeof(buf
), "%d", global_settings
.rec_quality
);
1983 screens
[i
].putsxy(0, LCD_HEIGHT
/2-h
, buf
);
1984 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_FastBackward
],
1985 LCD_WIDTH
/2 - 16, LCD_HEIGHT
/2 - 4, 7, 8);
1989 snprintf(buf
, sizeof buf
, "%s:", str(LANG_SYSFONT_RECORDING_FREQUENCY
));
1990 ptr
= freq_str
[global_settings
.rec_frequency
];
1993 screens
[i
].getstringsize(buf
,&w
,&h
);
1994 screens
[i
].putsxy((LCD_WIDTH
-w
)/2, LCD_HEIGHT
- h
*2, buf
);
1995 screens
[i
].getstringsize(ptr
, &w
, &h
);
1996 screens
[i
].putsxy((LCD_WIDTH
-w
)/2, LCD_HEIGHT
- h
, ptr
);
1997 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_DownArrow
],
1998 LCD_WIDTH
/2 - 3, LCD_HEIGHT
- h
*3, 7, 8);
2002 switch ( global_settings
.rec_channels
) {
2004 ptr
= str(LANG_SYSFONT_CHANNEL_STEREO
);
2008 ptr
= str(LANG_SYSFONT_CHANNEL_MONO
);
2014 screens
[i
].getstringsize(str(LANG_SYSFONT_CHANNELS
), &w
, &h
);
2015 screens
[i
].putsxy(LCD_WIDTH
- w
, LCD_HEIGHT
/2 - h
*2,
2016 str(LANG_SYSFONT_CHANNELS
));
2017 screens
[i
].getstringsize(str(LANG_SYSFONT_MODE
), &w
, &h
);
2018 screens
[i
].putsxy(LCD_WIDTH
- w
, LCD_HEIGHT
/2 - h
,
2019 str(LANG_SYSFONT_MODE
));
2020 screens
[i
].getstringsize(ptr
, &w
, &h
);
2021 screens
[i
].putsxy(LCD_WIDTH
- w
, LCD_HEIGHT
/2, ptr
);
2022 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_FastForward
],
2023 LCD_WIDTH
/2 + 8, LCD_HEIGHT
/2 - 4, 7, 8);
2025 screens
[i
].update();
2028 button
= button_get(true);
2031 case BUTTON_F2
| BUTTON_LEFT
:
2032 global_settings
.rec_quality
++;
2033 if(global_settings
.rec_quality
> 7)
2034 global_settings
.rec_quality
= 0;
2039 case BUTTON_F2
| BUTTON_DOWN
:
2040 global_settings
.rec_frequency
++;
2041 if(global_settings
.rec_frequency
> 5)
2042 global_settings
.rec_frequency
= 0;
2047 case BUTTON_F2
| BUTTON_RIGHT
:
2048 global_settings
.rec_channels
++;
2049 if(global_settings
.rec_channels
> 1)
2050 global_settings
.rec_channels
= 0;
2054 case BUTTON_F2
| BUTTON_REL
:
2060 case BUTTON_F2
| BUTTON_REPEAT
:
2065 if(default_event_handler(button
) == SYS_USB_CONNECTED
)
2071 rec_init_recording_options(&rec_options
);
2072 rec_set_recording_options(&rec_options
);
2078 screens
[i
].setfont(FONT_UI
);
2083 static bool f3_rec_screen(void)
2089 const char *src_str
[] =
2091 str(LANG_SYSFONT_RECORDING_SRC_MIC
),
2092 str(LANG_SYSFONT_LINE_IN
),
2093 str(LANG_SYSFONT_RECORDING_SRC_DIGITAL
)
2095 struct audio_recording_options rec_options
;
2099 screens
[i
].setfont(FONT_SYSFIXED
);
2100 screens
[i
].getstringsize("A",&w
,&h
);
2104 const char* ptr
= src_str
[global_settings
.rec_source
];
2107 screens
[i
].clear_display();
2109 /* Recording source */
2110 screens
[i
].putsxy(0, LCD_HEIGHT
/2 - h
*2,
2111 str(LANG_SYSFONT_RECORDING_SOURCE
));
2113 screens
[i
].getstringsize(ptr
, &w
, &h
);
2114 screens
[i
].putsxy(0, LCD_HEIGHT
/2-h
, ptr
);
2115 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_FastBackward
],
2116 LCD_WIDTH
/2 - 16, LCD_HEIGHT
/2 - 4, 7, 8);
2120 ptr
= str(LANG_SYSFONT_RECORD_TRIGGER
);
2123 screens
[i
].getstringsize(ptr
,&w
,&h
);
2124 screens
[i
].putsxy((LCD_WIDTH
-w
)/2, LCD_HEIGHT
- h
*2, ptr
);
2125 screens
[i
].mono_bitmap(bitmap_icons_7x8
[Icon_DownArrow
],
2126 LCD_WIDTH
/2 - 3, LCD_HEIGHT
- h
*3, 7, 8);
2128 screens
[i
].update();
2131 button
= button_get(true);
2134 case BUTTON_F3
| BUTTON_DOWN
:
2137 settings_apply_trigger();
2143 case BUTTON_F3
| BUTTON_LEFT
:
2144 global_settings
.rec_source
++;
2145 if(global_settings
.rec_source
> AUDIO_SRC_MAX
)
2146 global_settings
.rec_source
= 0;
2150 case BUTTON_F3
| BUTTON_REL
:
2156 case BUTTON_F3
| BUTTON_REPEAT
:
2161 if(default_event_handler(button
) == SYS_USB_CONNECTED
)
2167 rec_init_recording_options(&rec_options
);
2168 rec_set_recording_options(&rec_options
);
2174 screens
[i
].setfont(FONT_UI
);
2178 #endif /* CONFIG_KEYPAD == RECORDER_PAD */
2180 #if CONFIG_CODEC == SWCODEC
2181 void audio_beep(int duration
)
2188 /* stubs for recording sim */
2189 void audio_init_recording(unsigned int buffer_offset
)
2191 buffer_offset
= buffer_offset
;
2194 void audio_close_recording(void)
2198 unsigned long pcm_rec_get_warnings(void)
2203 unsigned long pcm_rec_sample_rate(void)
2208 unsigned long audio_recorded_time(void)
2213 unsigned long audio_num_recorded_bytes(void)
2215 return 5 * 1024 * 1024;
2218 void rec_set_source(int source
, unsigned flags
)
2224 void audio_set_recording_options(struct audio_recording_options
*options
)
2229 void audio_set_recording_gain(int left
, int right
, int type
)
2236 void audio_record(const char *filename
)
2238 filename
= filename
;
2241 void audio_new_file(const char *filename
)
2243 filename
= filename
;
2246 void audio_stop_recording(void)
2250 void audio_pause_recording(void)
2254 void audio_resume_recording(void)
2258 #endif /* #ifdef SIMULATOR */
2259 #endif /* #ifdef CONFIG_CODEC == SWCODEC */
2261 #endif /* HAVE_RECORDING */