Packard Bell Vibe 500: change a not so lucky keymap for the bookmark delete.
[kugel-rb.git] / apps / recorder / peakmeter.h
blob6fc2d6be5858a0e50a501d7480869ff72c01cfd4
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Philipp Pertermann
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 ****************************************************************************/
21 #ifndef __PEAKMETER_H__
22 #define __PEAKMETER_H__
24 #define PEAK_METER_FPS 20
26 /*#define PM_DEBUG */
27 #ifdef PM_DEBUG
28 extern bool peak_meter_histogram(void);
29 #endif
31 extern int pm_get_clipcount(void);
32 extern void pm_reset_clipcount(void);
33 extern void pm_activate_clipcount(bool active);
35 extern bool peak_meter_enabled;
37 extern void peak_meter_playback(bool playback);
38 extern int peak_meter_draw_get_btn(int action_context, int x[], int y[],
39 int height[], int nb_screens,
40 struct viewport vps[]);
41 extern void peak_meter_set_clip_hold(int time);
42 extern void peak_meter_peek(void);
43 extern void peak_meter_init_range( bool dbfs, int range_min, int range_max);
44 extern void peak_meter_init_times(int release, int hold, int clip_hold);
45 #ifdef HAVE_AGC
46 extern void peak_meter_get_peakhold(int *peak_left, int *peak_right);
47 #endif
48 extern int peak_meter_get_min(void);
49 extern int peak_meter_get_max(void);
50 extern void peak_meter_set_use_dbfs(bool use);
51 extern bool peak_meter_get_use_dbfs(void);
52 extern int calc_db (int isample);
53 extern int peak_meter_db2sample(int db);
54 extern unsigned short peak_meter_scale_value(unsigned short val, int meterwidth);
56 /* valid values for trigger_status */
57 #define TRIG_OFF 0x00
58 #define TRIG_READY 0x01
59 #define TRIG_STEADY 0x02
60 #define TRIG_GO 0x03
61 #define TRIG_POSTREC 0x04
62 #define TRIG_RETRIG 0x05
63 #define TRIG_CONTINUE 0x06
65 extern void peak_meter_define_trigger(
66 int start_threshold,
67 long start_duration,
68 long start_dropout,
69 int stop_threshold,
70 long stop_hold_time,
71 long restart_gap
74 extern void peak_meter_trigger(bool on);
75 extern int peak_meter_trigger_status(void);
76 extern void peak_meter_set_trigger_listener(void (*listener)(int status));
78 #define TRIG_HEIGHT 8
80 extern void peak_meter_draw_trig(int x[], int y[], int trig_width[],
81 int nb_screens);
83 #define DB_SCALE_SRC_VALUES_SIZE 12
84 struct meter_scales{
85 /* buffered peak values */
86 int pm_peak_left;
87 int pm_peak_right;
88 /* if db_scale_valid is false the content of
89 db_scale_lcd_coord needs recalculation */
90 bool db_scale_valid;
91 /* contains the lcd x coordinates of the magical
92 scale values in db_scale_src_values */
93 int db_scale_lcd_coord[DB_SCALE_SRC_VALUES_SIZE];
94 int last_left;
95 int last_right;
96 /* peak hold timeouts */
97 long pm_peak_timeout_l;
98 long pm_peak_timeout_r;
101 extern void peak_meter_screen(struct screen *display, int x, int y, int height);
102 #endif /* __PEAKMETER_H__ */