Cleanup includes a bit.
[kugel-rb.git] / apps / recorder / recording.c
blobfa747b7c6183d581143ecfe2df0f2b7a48ee586c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
22 #include "config.h"
24 #include <stdio.h>
25 #include <stdbool.h>
26 #include <stdlib.h>
28 #include "system.h"
29 #include "power.h"
30 #include "powermgmt.h"
31 #include "lcd.h"
32 #include "led.h"
33 #include "mpeg.h"
34 #include "audio.h"
35 #if CONFIG_CODEC == SWCODEC
36 #include "thread.h"
37 #include "enc_config.h"
38 #if defined(HAVE_SPDIF_IN) || defined(HAVE_SPDIF_OUT)
39 #include "spdif.h"
40 #endif
41 #endif /* CONFIG_CODEC == SWCODEC */
42 #include "pcm_record.h"
43 #include "recording.h"
44 #include "mp3_playback.h"
45 #include "mas.h"
46 #include "button.h"
47 #include "kernel.h"
48 #include "settings.h"
49 #include "lang.h"
50 #include "font.h"
51 #include "icons.h"
52 #include "icon.h"
53 #include "screens.h"
54 #include "peakmeter.h"
55 #include "menu.h"
56 #include "sound_menu.h"
57 #include "timefuncs.h"
58 #include "debug.h"
59 #include "misc.h"
60 #include "tree.h"
61 #include "string.h"
62 #include "dir.h"
63 #include "errno.h"
64 #include "talk.h"
65 #include "sound.h"
66 #include "storage.h"
67 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
68 && !defined(SIMULATOR)
69 #include "ata.h"
70 #endif
71 #include "splash.h"
72 #include "screen_access.h"
73 #include "action.h"
74 #include "radio.h"
75 #include "viewport.h"
76 #include "list.h"
77 #include "general.h"
78 #include "appevents.h"
80 #ifdef HAVE_RECORDING
81 /* This array holds the record timer interval lengths, in seconds */
82 static const unsigned long rec_timer_seconds[] =
84 0, /* 0 means OFF */
85 5*60, /* 00:05 */
86 10*60, /* 00:10 */
87 15*60, /* 00:15 */
88 30*60, /* 00:30 */
89 60*60, /* 01:00 */
90 74*60, /* 01:14 */
91 80*60, /* 01:20 */
92 2*60*60, /* 02:00 */
93 4*60*60, /* 04:00 */
94 6*60*60, /* 06:00 */
95 8*60*60, /* 08:00 */
96 10L*60*60, /* 10:00 */
97 12L*60*60, /* 12:00 */
98 18L*60*60, /* 18:00 */
99 24L*60*60 /* 24: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[] =
110 0, /* 0 means OFF */
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;
141 else
143 start_thres = global_settings.rec_start_thres_linear;
144 stop_thres = global_settings.rec_stop_thres_linear;
147 peak_meter_define_trigger(
148 start_thres,
149 global_settings.rec_start_duration*HZ,
150 MIN(global_settings.rec_start_duration*HZ / 2, 2*HZ),
151 stop_thres,
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);
175 #endif
177 #define MAX_FILE_SIZE 0x7F800000 /* 2 GB - 4 MB */
179 #ifndef HAVE_REMOTE_LCD
180 static const int screen_update = NB_SCREENS;
181 #else
182 static int screen_update = NB_SCREENS;
183 static bool remote_display_on = true;
184 #endif
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 **/
192 #if CONFIG_RTC == 0
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) **/
215 #ifdef HAVE_AGC
216 /* Timing counters:
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" };
235 /* "Off",
236 "Safety (clip)",
237 "Live (slow)",
238 "DJ-Set (slow)",
239 "Medium",
240 "Voice (fast)" */
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 };
258 /* AGC operation */
259 static bool agc_enable = true;
260 static short agc_preset;
261 /* AGC levels */
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)
276 #ifdef HAVE_MIC_REC
277 if(global_settings.rec_source == AUDIO_SRC_MIC)
279 audio_set_recording_gain(global_settings.rec_mic_gain,
280 0, AUDIO_GAIN_MIC);
282 else
283 #endif /* MIC */
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,
288 AUDIO_GAIN_LINEIN);
290 /* reset the clipping indicators */
291 peak_meter_set_clip_hold(global_settings.peak_meter_clip_hold);
292 update_list = true;
295 #ifdef HAVE_AGC
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()))
307 return false;
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);
312 else
313 balance_mem[peak_time % BAL_MEM_SIZE] = (*peak_r ?
314 MAX(10000 - (10000 * *peak_l) / *peak_r, -15118) : -15118);
315 *balance = 0;
316 int i;
317 for (i = 0; i < BAL_MEM_SIZE; i++)
318 *balance += balance_mem[i];
319 *balance = *balance / BAL_MEM_SIZE;
321 return true;
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;
331 if (agc_preset == 0)
332 return false;
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;
341 break;
342 #endif /* LINE, FMRADIO */
343 #if defined(HAVE_MIC_REC)
344 case AUDIO_SRC_MIC:
345 default:
346 gain_current_l = global_settings.rec_mic_gain;
347 gain_current_r = global_settings.rec_mic_gain;
348 #endif /* MIC */
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;
366 break;
367 #endif /* LINE, FMRADIO */
368 #if defined(HAVE_MIC_REC)
369 case AUDIO_SRC_MIC:
370 global_settings.rec_mic_gain += factor;
371 #endif
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)
382 int agc_mono;
383 short agc_mode;
384 bool increment;
386 if (*peak_l > agc_left)
387 agc_left = *peak_l;
388 else
389 agc_left -= (agc_left - *peak_l + 3) >> 2;
390 if (*peak_r > agc_right)
391 agc_right = *peak_r;
392 else
393 agc_right -= (agc_right - *peak_r + 3) >> 2;
394 agc_mono = (agc_left + agc_right) / 2;
396 agc_mode = abs(agc_preset) - 1;
397 if (agc_mode < 0) {
398 agc_enable = false;
399 return;
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))
406 if (*balance < -556)
408 if (*balance > -900)
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 */
414 else
415 agc_baltime -= !(peak_time % 8); /* 4.90 - inf dB */
416 if (agc_baltime > 0)
417 agc_baltime -= (peak_time % 2);
419 else if (*balance > 556)
421 if (*balance < 900)
422 agc_baltime += !(peak_time % 4);
423 else if (*balance < 4125)
424 agc_baltime++;
425 else if (*balance < 7579)
426 agc_baltime += 2;
427 else
428 agc_baltime += !(peak_time % 8);
429 if (agc_baltime < 0)
430 agc_baltime += (peak_time % 2);
433 if ((*balance * agc_baltime) < 0)
435 if (*balance < 0)
436 agc_baltime -= peak_time % 2;
437 else
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);
447 set_gain();
449 agc_baltime = 0;
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);
455 set_gain();
457 agc_baltime = 0;
460 else if (!(hist_time % 4))
462 if (agc_baltime < 0)
463 agc_baltime++;
464 else
465 agc_baltime--;
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) {
476 agc_droptime++;
477 agc_risetime=0;
478 if (agc_left > AGC_PEAK)
479 agc_droptime += 2;
481 if (agc_right > AGC_HIGH) {
482 agc_droptime++;
483 agc_risetime=0;
484 if (agc_right > AGC_PEAK)
485 agc_droptime += 2;
487 if (agc_mono > agc_th_hi[agc_mode])
488 agc_droptime++;
489 else
490 agc_droptime += !(peak_time % 2);
492 if (agc_droptime >= agc_tdrop[agc_mode])
494 change_recording_gain(false, true, true);
495 agc_droptime = 0;
496 agc_risetime = 0;
497 set_gain();
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))
506 agc_risetime += 2;
507 else
508 agc_risetime++;
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);
514 set_gain();
516 agc_risetime = 0;
517 agc_droptime = 0;
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)
538 int i, d, numdec;
539 const char *unit;
540 char sign = ' ';
542 val = sound_val2phys(snd, val);
543 if(val < 0)
545 sign = '-';
546 val = -val;
548 numdec = sound_numdecimals(snd);
549 unit = sound_unit(snd);
551 if(numdec)
553 i = val / (10*numdec);
554 d = val % (10*numdec);
555 snprintf(str, len, fmtstr[numdec], sign, i, d, unit);
557 else
558 snprintf(str, len, fmtstr[numdec], sign, val, unit);
560 return str;
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)
574 char ext[16];
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));
590 #if CONFIG_RTC == 0
591 return create_numbered_filename(buffer, buffer, pref, ext, 4,
592 &file_number);
593 #else
594 /* We'll wait at least up to the start of the next second so no duplicate
595 names are created */
596 return create_datetime_filename(buffer, buffer, pref, ext, true);
597 #endif
600 #if CONFIG_RTC == 0
601 /* Hit disk to get a starting filename for the type */
602 static void rec_init_filename(void)
604 file_number = -1;
605 rec_create_filename(path_buffer);
606 file_number--;
608 #endif
610 int rec_create_directory(void)
612 int rc = 0;
613 const char * const folder = global_settings.rec_directory;
615 if (strcmp(folder, "/") && !dir_exists(folder))
617 rc = mkdir(folder);
619 if(rc < 0)
621 while (action_userabort(HZ) == false)
623 splashf(0, "%s %s",
624 str(LANG_REC_DIR_NOT_WRITABLE),
625 str(LANG_OFF_ABORT));
628 else
630 rec_status |= RCSTAT_CREATED_DIRECTORY;
631 rc = 1;
635 return rc;
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);
649 #else
650 options->rec_quality = global_settings.rec_quality;
651 options->rec_editable = global_settings.rec_editable;
652 #endif
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)
684 switch(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();
691 #endif
692 sys_poweroff();
693 break;
694 case RECORDING_CMD_STOP:
695 pm_activate_clipcount(false);
696 audio_stop_recording();
697 break;
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 */
704 #endif
705 audio_record(rec_create_filename(path_buffer));
706 break;
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));
712 break;
713 case RECORDING_CMD_PAUSE:
714 pm_activate_clipcount(false);
715 audio_pause_recording();
716 break;
717 case RECORDING_CMD_RESUME:
718 pm_activate_clipcount(true);
719 audio_resume_recording();
720 break;
722 update_list = true;
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)
737 case TRIG_GO:
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
744 recording */
745 yield(); yield(); yield();
746 #endif
749 /* if we're already recording this is a retrigger */
750 else
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 */
762 last_seconds = 0;
765 break;
767 /* A _change_ to TRIG_READY means the current recording has stopped */
768 case TRIG_READY:
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);
775 break;
777 case TRIG_TYPE_PAUSE: /* Pause */
778 rec_command(RECORDING_CMD_PAUSE);
779 break;
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 */
784 last_seconds = 0;
785 break;
787 case 3: /* Stop and shutdown */
788 rec_command(RECORDING_CMD_STOP_SHUTDOWN);
789 break;
792 if (global_settings.rec_trigger_mode != TRIG_MODE_REARM)
794 peak_meter_set_trigger_listener(NULL);
795 peak_meter_trigger(false);
798 break;
802 /* Stuff for drawing the screen */
804 enum rec_list_items_stereo {
805 ITEM_VOLUME = 0,
806 ITEM_GAIN = 1,
807 ITEM_GAIN_L = 2,
808 ITEM_GAIN_R = 3,
809 #ifdef HAVE_AGC
810 ITEM_AGC_MODE = 4,
811 ITEM_AGC_MAXDB = 5,
812 ITEM_FILENAME = 7,
813 ITEM_COUNT = 7,
814 #else
815 ITEM_FILENAME = 7,
816 ITEM_COUNT = 5,
817 #endif
820 enum rec_list_items_mono {
821 ITEM_VOLUME_M = 0,
822 ITEM_GAIN_M = 1,
823 #ifdef HAVE_AGC
824 ITEM_AGC_MODE_M = 4,
825 ITEM_AGC_MAXDB_M = 5,
826 ITEM_FILENAME_M = 7,
827 ITEM_COUNT_M = 5,
828 #else
829 ITEM_FILENAME_M = 7,
830 ITEM_COUNT_M = 3,
831 #endif
834 #ifdef HAVE_SPDIF_REC
835 enum rec_list_items_spdif {
836 ITEM_VOLUME_D = 0,
837 #if CONFIG_CODEC == SWCODEC
838 ITEM_SAMPLERATE_D = 6,
839 ITEM_FILENAME_D = 7,
840 ITEM_COUNT_D = 3,
841 #else
842 ITEM_FILENAME_D = 7,
843 ITEM_COUNT_D = 2,
844 #endif
846 #endif
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)
853 char buf2[32];
854 #ifdef HAVE_AGC
855 char buf3[32];
856 #endif
857 data = data; /* not used */
858 if(selected_item >= ITEM_COUNT)
859 return "";
861 switch (listid_to_enum[selected_item])
863 case ITEM_VOLUME:
864 snprintf(buffer, buffer_len, "%s: %s", str(LANG_VOLUME),
865 fmt_gain(SOUND_VOLUME,
866 global_settings.volume,
867 buf2, sizeof(buf2)));
868 break;
869 case ITEM_GAIN:
870 #ifdef HAVE_MIC_REC
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)));
879 else
880 #endif /* MIC */
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,
886 avg_gain,
887 buf2, sizeof(buf2)));
889 break;
890 case ITEM_GAIN_L:
891 snprintf(buffer, buffer_len, "%s: %s",
892 str(LANG_GAIN_LEFT),
893 fmt_gain(SOUND_LEFT_GAIN,
894 global_settings.rec_left_gain,
895 buf2, sizeof(buf2)));
896 break;
897 case ITEM_GAIN_R:
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)));
903 break;
904 #ifdef HAVE_AGC
905 case ITEM_AGC_MODE:
906 snprintf(buffer, buffer_len, "%s: %s",
907 str(LANG_RECORDING_AGC_PRESET),
908 agc_preset_str[agc_preset]);
909 break;
910 case ITEM_AGC_MAXDB:
911 if (agc_preset == 0)
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)));
916 #ifdef HAVE_MIC_REC
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)));
925 else
926 #endif /* MIC */
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,
932 agc_maxgain -
933 (global_settings.rec_left_gain +
934 global_settings.rec_right_gain)/2,
935 buf3, sizeof(buf3)));
936 break;
937 #endif
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());
944 break;
945 #endif
946 #endif
947 case ITEM_FILENAME:
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);
959 else
961 snprintf(buffer, buffer_len, "%s %s",
962 str(LANG_RECORDING_FILENAME), path_buffer);
965 else
967 return str(LANG_RECORDING_FILENAME);
969 break;
971 default:
972 return "";
974 return buffer;
978 bool recording_start_automatic = false;
980 bool recording_screen(bool no_source)
982 int button;
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;
989 int hours, minutes;
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
997 #endif
999 #if CONFIG_CODEC == SWCODEC
1000 #ifdef HAVE_SPDIF_REC
1001 unsigned long prev_sample_rate = 0;
1002 #endif
1003 #endif
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();
1012 #endif
1013 #if (CONFIG_LED == LED_REAL)
1014 bool led_state = false;
1015 int led_countdown = 2;
1016 #endif
1017 #ifdef HAVE_AGC
1018 bool peak_read = false;
1019 bool peak_valid = false;
1020 int peak_l, peak_r;
1021 int balance = 0;
1022 #endif
1023 int oldbars, recbars = VP_SB_ALLSCREENS;
1024 int i;
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 */
1035 #endif
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);
1043 #endif
1045 #if CONFIG_CODEC == SWCODEC
1046 /* recording_menu gets messed up: so prevent manus talking */
1047 talk_disable(true);
1048 /* audio_init_recording stops anything playing when it takes the audio
1049 buffer */
1050 #else
1051 /* Yes, we use the D/A for monitoring */
1052 peak_meter_enabled = true;
1053 peak_meter_playback(true);
1054 #endif
1056 #ifdef HAVE_AGC
1057 peak_meter_get_peakhold(&peak_l, &peak_r);
1058 #endif
1060 pm_reset_clipcount();
1061 pm_activate_clipcount(false);
1062 settings_apply_trigger();
1064 #ifdef HAVE_AGC
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();
1075 #endif
1076 audio_init_recording(0);
1077 sound_set_volume(global_settings.volume);
1079 #if CONFIG_RTC == 0
1080 /* Create new filename for recording start */
1081 rec_init_filename();
1082 #endif
1084 /* viewport init and calculations that only needs to be done once */
1085 FOR_NB_SCREENS(i)
1086 recbars |= VP_SB_IGNORE_SETTING(i);
1087 oldbars = viewportmanager_set_statusbar(recbars);
1088 FOR_NB_SCREENS(i)
1090 struct viewport *v;
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 */
1093 v = &vp_top[i];
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;
1101 else
1103 if (viewport_get_nb_lines(v) < (4+2)) /*top=4,list=2*/
1104 compact_view[i] = true;
1105 else
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;
1119 if(compact_view[i])
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 */
1128 while(done <= 0)
1130 if(done < 0)
1132 /* request to re-init stuff, done after settings screen */
1133 done = 0;
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;
1141 #endif
1143 FOR_NB_SCREENS(i)
1145 pm_x[i] = 0;
1146 if(global_settings.peak_meter_clipcounter)
1148 int clipwidth = 0;
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;
1155 else
1156 pm_h[i] = font_get(vp_top[i].font)->height;
1157 if(compact_view[i])
1158 pm_h[i] /= 2;
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);
1165 #endif
1167 rec_init_recording_options(&rec_options);
1168 rec_set_recording_options(&rec_options);
1170 if(rec_create_directory() < 0)
1172 rec_status = 0;
1173 goto rec_abort;
1176 #if CONFIG_CODEC == SWCODEC && CONFIG_RTC == 0
1177 /* If format changed, a new number is required */
1178 rec_init_filename();
1179 #endif
1181 #ifdef HAVE_AGC
1182 #ifdef HAVE_MIC_REC
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;
1187 else
1188 #endif /* MIC */
1190 agc_preset = global_settings.rec_agc_preset_line;
1191 agc_maxgain = global_settings.rec_agc_maxgain_line;
1193 #endif /* HAVE_AGC */
1195 set_gain();
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;
1206 #else
1207 listid_to_enum[1] = ITEM_FILENAME_D;
1208 #endif
1210 gui_synclist_set_nb_items(&lists, ITEM_COUNT_D); /* spdif */
1212 else
1213 #endif
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;
1219 #ifdef HAVE_AGC
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;
1223 #else
1224 listid_to_enum[2] = ITEM_FILENAME_M;
1225 #endif
1226 gui_synclist_set_nb_items(&lists, ITEM_COUNT_M); /* mono */
1228 else
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;
1234 #ifdef HAVE_AGC
1235 listid_to_enum[4] = ITEM_AGC_MODE;
1236 listid_to_enum[5] = ITEM_AGC_MAXDB;
1237 listid_to_enum[6] = ITEM_FILENAME;
1238 #else
1239 listid_to_enum[4] = ITEM_FILENAME;
1240 #endif
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
1253 * recording.
1255 if(audio_stat & AUDIO_STATUS_RECORD)
1257 if (audio_stat & AUDIO_STATUS_PAUSE)
1259 if (--led_countdown <= 0)
1261 led_state = !led_state;
1262 led(led_state);
1263 led_countdown = 2;
1266 else
1268 /* trigger is on in status TRIG_READY (no check needed) */
1269 led(true);
1272 else
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;
1284 led(led_state);
1285 led_countdown = 2;
1288 else
1290 /* trigger is on in status TRIG_READY (no check needed) */
1291 led(false);
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,
1298 pm_x, pm_y, pm_h,
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;
1307 update_list = true;
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);
1321 switch(button)
1323 case ACTION_SETTINGS_INC:
1324 case ACTION_SETTINGS_INCREPEAT:
1325 switch (listid_to_enum[gui_synclist_get_sel_pos(&lists)])
1327 case ITEM_VOLUME:
1328 global_settings.volume++;
1329 setvol();
1330 break;
1331 case ITEM_GAIN:
1332 #ifdef HAVE_MIC_REC
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++;
1339 else
1340 #endif /* MIC */
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++;
1349 break;
1350 case ITEM_GAIN_L:
1351 if(global_settings.rec_left_gain <
1352 sound_max(SOUND_LEFT_GAIN))
1353 global_settings.rec_left_gain++;
1354 break;
1355 case ITEM_GAIN_R:
1356 if(global_settings.rec_right_gain <
1357 sound_max(SOUND_RIGHT_GAIN))
1358 global_settings.rec_right_gain++;
1359 break;
1360 #ifdef HAVE_AGC
1361 case ITEM_AGC_MODE:
1362 agc_preset = MIN(agc_preset + 1, AGC_MODE_SIZE);
1363 agc_enable = (agc_preset != 0);
1364 #ifdef HAVE_MIC_REC
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;
1368 } else
1369 #endif /* MIC */
1371 global_settings.rec_agc_preset_line = agc_preset;
1372 agc_maxgain = global_settings.rec_agc_maxgain_line;
1374 break;
1375 case ITEM_AGC_MAXDB:
1376 #ifdef HAVE_MIC_REC
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;
1383 else
1384 #endif /* MIC */
1386 agc_maxgain = MIN(agc_maxgain + 1,
1387 sound_max(SOUND_LEFT_GAIN));
1388 global_settings.rec_agc_maxgain_line = agc_maxgain;
1390 break;
1391 #endif /* HAVE_AGC */
1393 set_gain();
1394 update_countdown = 0; /* Update immediately */
1395 break;
1396 case ACTION_SETTINGS_DEC:
1397 case ACTION_SETTINGS_DECREPEAT:
1398 switch (listid_to_enum[gui_synclist_get_sel_pos(&lists)])
1400 case ITEM_VOLUME:
1401 global_settings.volume--;
1402 setvol();
1403 break;
1404 case ITEM_GAIN:
1405 #ifdef HAVE_MIC_REC
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--;
1412 else
1413 #endif /* MIC */
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--;
1422 break;
1423 case ITEM_GAIN_L:
1424 if(global_settings.rec_left_gain >
1425 sound_min(SOUND_LEFT_GAIN))
1426 global_settings.rec_left_gain--;
1427 break;
1428 case ITEM_GAIN_R:
1429 if(global_settings.rec_right_gain >
1430 sound_min(SOUND_RIGHT_GAIN))
1431 global_settings.rec_right_gain--;
1432 break;
1433 #ifdef HAVE_AGC
1434 case ITEM_AGC_MODE:
1435 agc_preset = MAX(agc_preset - 1, 0);
1436 agc_enable = (agc_preset != 0);
1437 #ifdef HAVE_MIC_REC
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;
1441 } else
1442 #endif /* MIC */
1444 global_settings.rec_agc_preset_line = agc_preset;
1445 agc_maxgain = global_settings.rec_agc_maxgain_line;
1447 break;
1448 case ITEM_AGC_MAXDB:
1449 #ifdef HAVE_MIC_REC
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;
1455 } else
1456 #endif /* MIC */
1458 agc_maxgain = MAX(agc_maxgain - 1,
1459 sound_min(SOUND_LEFT_GAIN));
1460 global_settings.rec_agc_maxgain_line = agc_maxgain;
1462 break;
1463 #endif /* HAVE_AGC */
1465 set_gain();
1466 update_countdown = 0; /* Update immediately */
1467 break;
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);
1477 else
1479 #if CONFIG_CODEC != SWCODEC
1480 peak_meter_playback(true);
1481 peak_meter_enabled = false;
1482 #endif
1483 done = 1;
1485 update_countdown = 0; /* Update immediately */
1486 break;
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 */
1496 screen_update = 1;
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();
1502 else
1504 /* remote switched on again */
1505 update_list = true;
1506 screen_update = NB_SCREENS;
1508 remote_display_on = !remote_display_on; /* toggle */
1509 update_countdown = 0; /* Update immediately */
1510 break;
1511 #endif
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);
1524 last_seconds = 0;
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 */
1532 else
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);
1541 else
1543 /*if new file button pressed, start new file */
1544 if (button == ACTION_REC_NEWFILE)
1546 rec_command(RECORDING_CMD_START_NEWFILE);
1547 last_seconds = 0;
1549 else
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 */
1561 else
1563 rec_command(RECORDING_CMD_PAUSE);
1567 update_countdown = 0; /* Update immediately */
1568 break;
1569 case ACTION_STD_MENU:
1570 #if CONFIG_CODEC == SWCODEC
1571 if(!(audio_stat & AUDIO_STATUS_RECORD))
1572 #else
1573 if(audio_stat != AUDIO_STATUS_RECORD)
1574 #endif
1576 #if (CONFIG_LED == LED_REAL)
1577 /* led is restored at begin of loop / end of function */
1578 led(false);
1579 #endif
1580 viewportmanager_set_statusbar(oldbars);
1581 if (recording_menu(no_source))
1583 done = 1;
1584 rec_status |= RCSTAT_BEEN_IN_USB_MODE;
1585 #ifdef HAVE_FMRADIO_REC
1586 radio_status = FMRADIO_OFF;
1587 #endif
1589 else
1591 done = -1;
1592 /* the init is now done at the beginning of the loop */
1594 viewportmanager_set_statusbar(recbars);
1596 break;
1598 #if CONFIG_KEYPAD == RECORDER_PAD
1599 case ACTION_REC_F2:
1600 if(audio_stat != AUDIO_STATUS_RECORD)
1602 #if (CONFIG_LED == LED_REAL)
1603 /* led is restored at begin of loop / end of function */
1604 led(false);
1605 #endif
1606 viewportmanager_set_statusbar(oldbars);
1607 if (f2_rec_screen())
1609 rec_status |= RCSTAT_HAVE_RECORDED;
1610 done = true;
1612 else
1613 update_countdown = 0; /* Update immediately */
1614 viewportmanager_set_statusbar(recbars);
1616 break;
1618 case ACTION_REC_F3:
1619 if(audio_stat & AUDIO_STATUS_RECORD)
1621 rec_command(RECORDING_CMD_START_NEWFILE);
1622 last_seconds = 0;
1624 else
1626 #if (CONFIG_LED == LED_REAL)
1627 /* led is restored at begin of loop / end of function */
1628 led(false);
1629 #endif
1630 viewportmanager_set_statusbar(oldbars);
1631 if (f3_rec_screen())
1633 rec_status |= RCSTAT_HAVE_RECORDED;
1634 done = true;
1636 else
1637 update_countdown = 0; /* Update immediately */
1638 viewportmanager_set_statusbar(recbars);
1640 break;
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))
1647 FOR_NB_SCREENS(i)
1648 screens[i].set_viewport(NULL);
1649 default_event_handler(SYS_USB_CONNECTED);
1650 done = true;
1651 rec_status |= RCSTAT_BEEN_IN_USB_MODE;
1652 #ifdef HAVE_FMRADIO_REC
1653 radio_status = FMRADIO_OFF;
1654 #endif
1656 break;
1657 } /*switch(button)*/
1659 #ifdef HAVE_AGC
1660 peak_read = !peak_read;
1661 if (peak_read) { /* every 2nd run of loop */
1662 peak_time++;
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);
1669 #endif
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;
1680 FOR_NB_SCREENS(i)
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
1698 draw attention */
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());
1704 else
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);
1713 else
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));
1730 else
1732 /* Display the split interval if the record timesplit
1733 is active */
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),
1743 dhours, dminutes);
1745 else
1747 output_dyn_value(buf2, sizeof buf2,
1748 num_recorded_bytes,
1749 byte_units, true);
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);
1772 last_seconds = 0;
1774 else
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);
1780 else
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);
1797 else
1798 screens[i].putsf(0, 2, "%4d", clipcount);
1802 #ifdef HAVE_AGC
1803 hist_time++;
1804 #endif
1806 /* draw the trigger status */
1807 if (peak_meter_trigger_status() != TRIG_OFF)
1809 peak_meter_draw_trig(pm_x, trig_ypos, trig_width,
1810 screen_update);
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);
1816 #ifdef HAVE_AGC
1817 #ifdef HAVE_MIC_REC
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);
1823 else
1824 #endif /* MIC */
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();
1840 update_list = true;
1842 #endif
1843 #endif
1845 if(update_list)
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)
1863 done = true;
1865 } /* end while(!done) */
1867 audio_stat = audio_status();
1868 if (audio_stat & AUDIO_STATUS_ERROR)
1870 splash(0, str(LANG_DISK_FULL));
1872 FOR_NB_SCREENS(i)
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();
1880 #endif
1882 audio_error_clear();
1884 while(1)
1886 if (action_userabort(TIMEOUT_NOBLOCK))
1887 break;
1891 rec_abort:
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);
1903 else
1904 #endif
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();
1921 FOR_NB_SCREENS(i)
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))
1930 reload_directory();
1932 #if (CONFIG_STORAGE & STORAGE_ATA) && (CONFIG_LED == LED_REAL) \
1933 && !defined(SIMULATOR)
1934 ata_set_led_enabled(true);
1935 #endif
1937 settings_save();
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] =
1947 "44.1kHz",
1948 "48kHz",
1949 "32kHz",
1950 "22.05kHz",
1951 "24kHz",
1952 "16kHz"
1955 bool exit = false;
1956 bool used = false;
1957 int w, h, i;
1958 char buf[32];
1959 int button;
1960 struct audio_recording_options rec_options;
1962 FOR_NB_SCREENS(i)
1964 screens[i].setfont(FONT_SYSFIXED);
1965 screens[i].getstringsize("A",&w,&h);
1968 while (!exit) {
1969 const char* ptr;
1971 FOR_NB_SCREENS(i)
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);
1981 FOR_NB_SCREENS(i)
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);
1988 /* Frequency */
1989 snprintf(buf, sizeof buf, "%s:", str(LANG_SYSFONT_RECORDING_FREQUENCY));
1990 ptr = freq_str[global_settings.rec_frequency];
1991 FOR_NB_SCREENS(i)
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);
2001 /* Channel mode */
2002 switch ( global_settings.rec_channels ) {
2003 case 0:
2004 ptr = str(LANG_SYSFONT_CHANNEL_STEREO);
2005 break;
2007 case 1:
2008 ptr = str(LANG_SYSFONT_CHANNEL_MONO);
2009 break;
2012 FOR_NB_SCREENS(i)
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);
2029 switch (button) {
2030 case BUTTON_LEFT:
2031 case BUTTON_F2 | BUTTON_LEFT:
2032 global_settings.rec_quality++;
2033 if(global_settings.rec_quality > 7)
2034 global_settings.rec_quality = 0;
2035 used = true;
2036 break;
2038 case BUTTON_DOWN:
2039 case BUTTON_F2 | BUTTON_DOWN:
2040 global_settings.rec_frequency++;
2041 if(global_settings.rec_frequency > 5)
2042 global_settings.rec_frequency = 0;
2043 used = true;
2044 break;
2046 case BUTTON_RIGHT:
2047 case BUTTON_F2 | BUTTON_RIGHT:
2048 global_settings.rec_channels++;
2049 if(global_settings.rec_channels > 1)
2050 global_settings.rec_channels = 0;
2051 used = true;
2052 break;
2054 case BUTTON_F2 | BUTTON_REL:
2055 if ( used )
2056 exit = true;
2057 used = true;
2058 break;
2060 case BUTTON_F2 | BUTTON_REPEAT:
2061 used = true;
2062 break;
2064 default:
2065 if(default_event_handler(button) == SYS_USB_CONNECTED)
2066 return true;
2067 break;
2071 rec_init_recording_options(&rec_options);
2072 rec_set_recording_options(&rec_options);
2074 set_gain();
2076 settings_save();
2077 FOR_NB_SCREENS(i)
2078 screens[i].setfont(FONT_UI);
2080 return false;
2083 static bool f3_rec_screen(void)
2085 bool exit = false;
2086 bool used = false;
2087 int w, h, i;
2088 int button;
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;
2097 FOR_NB_SCREENS(i)
2099 screens[i].setfont(FONT_SYSFIXED);
2100 screens[i].getstringsize("A",&w,&h);
2103 while (!exit) {
2104 const char* ptr = src_str[global_settings.rec_source];
2105 FOR_NB_SCREENS(i)
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);
2119 /* trigger setup */
2120 ptr = str(LANG_SYSFONT_RECORD_TRIGGER);
2121 FOR_NB_SCREENS(i)
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);
2132 switch (button) {
2133 case BUTTON_DOWN:
2134 case BUTTON_F3 | BUTTON_DOWN:
2135 #ifndef SIMULATOR
2136 rectrigger();
2137 settings_apply_trigger();
2138 #endif
2139 exit = true;
2140 break;
2142 case BUTTON_LEFT:
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;
2147 used = true;
2148 break;
2150 case BUTTON_F3 | BUTTON_REL:
2151 if ( used )
2152 exit = true;
2153 used = true;
2154 break;
2156 case BUTTON_F3 | BUTTON_REPEAT:
2157 used = true;
2158 break;
2160 default:
2161 if(default_event_handler(button) == SYS_USB_CONNECTED)
2162 return true;
2163 break;
2167 rec_init_recording_options(&rec_options);
2168 rec_set_recording_options(&rec_options);
2170 set_gain();
2172 settings_save();
2173 FOR_NB_SCREENS(i)
2174 screens[i].setfont(FONT_UI);
2176 return false;
2178 #endif /* CONFIG_KEYPAD == RECORDER_PAD */
2180 #if CONFIG_CODEC == SWCODEC
2181 void audio_beep(int duration)
2183 /* dummy */
2184 (void)duration;
2187 #ifdef SIMULATOR
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)
2200 return 0;
2203 unsigned long pcm_rec_sample_rate(void)
2205 return 0;
2208 unsigned long audio_recorded_time(void)
2210 return 123;
2213 unsigned long audio_num_recorded_bytes(void)
2215 return 5 * 1024 * 1024;
2218 void rec_set_source(int source, unsigned flags)
2220 source = source;
2221 flags = flags;
2224 void audio_set_recording_options(struct audio_recording_options *options)
2226 options = options;
2229 void audio_set_recording_gain(int left, int right, int type)
2231 left = left;
2232 right = right;
2233 type = 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 */