Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / signalstatus.h
1 /*
2  * CINELERRA
3  * Copyright (C) 2016-2020 William Morrow
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published
7  * by the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #ifndef _SIGNALSTATUS_H_
22 #define _SIGNALSTATUS_H_
23 #ifdef HAVE_DVB
24
25 #include "bcwindowbase.h"
26 #include "bcsubwindow.h"
27 #include "bctitle.inc"
28 #include "channel.inc"
29 #include "devicedvbinput.inc"
30
31
32 class SignalStatus : public BC_SubWindow
33 {
34         friend class DeviceDVBInput;
35         enum {  pad0 = 3, pad1 = 8,
36                 lck_w = 5,  lck_h = 5,
37                 crr_w = 5,  crr_h = 5,
38                 pwr_w = 32, pwr_h = 4,
39                 snr_w = 32, snr_h = 4,
40                 ber_w = 32, ber_h = 4,
41                 unc_w = 32, unc_h = 4,
42         };
43
44         DeviceDVBInput *dvb_input;
45         BC_Title *channel_title;
46         int lck_x, lck_y;
47         int crr_x, crr_y;
48         int pwr_x, pwr_y;
49         int snr_x, snr_y;
50         int ber_x, ber_y;
51         int unc_x, unc_y;
52
53         void update_lck(int v);
54         void update_crr(int v);
55         void update_pwr(int v);
56         void update_snr(int v);
57         void update_ber(int v);
58         void update_unc(int v);
59 public:
60         BC_WindowBase *wdw;
61
62         void create_objects();
63         static int calculate_w(BC_WindowBase *wdw);
64         static int calculate_h(BC_WindowBase *wdw);
65         void disconnect() { dvb_input = 0; }
66         void update();
67
68         SignalStatus(BC_WindowBase *wdw, int x, int y);
69         ~SignalStatus();
70 };
71
72 #endif
73 #endif