]> git.vomp.tv Git - vompclient.git/blob - vaudioselector.h
43 CWFs
[vompclient.git] / vaudioselector.h
1 /*
2     Copyright 2006 Chris Tallon, Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP.  If not, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef VAUDIOSELECTOR_H
21 #define VAUDIOSELECTOR_H
22
23 #include <string>
24 #include <vector>
25
26 #include "tbboxx.h"
27 #include "messagequeue.h"
28 #include "wselectlist.h"
29
30 class RecInfo;
31 class Channel;
32
33 #define PES_AUDIO_START 0xc0
34 #define PES_AUDIO_MAXCHANNELS 0x20
35 #define PES_AUDIO_AC3_MAXCHANNELS 0x08
36 #define PES_AUDIO_AC3_START 0x80
37 #define PES_DVBSUBTITLE_MAXCHANNELS 0x08
38 #define PES_DVBSUBTITLE_START 0x20
39
40 class AudioSubtitleChannel
41 {
42   public:
43     int type;
44     int pestype;
45     int streamtype;
46     std::string name;
47 };
48
49 typedef std::vector<AudioSubtitleChannel> AudioSubtitleChannelList;
50
51 class VAudioSelector : public TBBoxx, public MessageReceiver
52 {
53   public:
54     VAudioSelector(MessageReceiver* parent, bool* availableMpegAudioChannels,                    // Recording mode
55                    bool* availableAc3AudioChannels, int currentAudioChannel,
56                    bool* availableSubtitleChannels,
57                    int* ttxtpages,
58                    int currentSubtitleChannel, int currentSubtitleType,
59                    RecInfo* recInfo);
60
61     VAudioSelector(MessageReceiver* tparent, Channel* channel, int currentAudioChannel,
62                    int currentSubtitleChannel, int currentSubtitletype, int* ttxtpages);      // Live mode
63
64     virtual ~VAudioSelector();
65
66     int handleCommand(int command);
67     void processMessage(Message* m);
68     void draw();
69
70   private:
71     WSelectList asl;
72     WSelectList ssl;
73
74     MessageReceiver* parent;
75     bool liveMode;
76     bool subtitles{};
77     bool editsubtitles{};
78
79     AudioSubtitleChannelList acl;
80     AudioSubtitleChannelList scl;
81 };
82
83 #endif