330147adb67860757bc6646457f13c1712383461
[enigma2.git] / lib / dvb / subtitle.h
1 #ifndef __lib_dvb_subtitle_h
2 #define __lib_dvb_subtitle_h
3
4 #include <lib/base/object.h>
5 #include <lib/dvb/idvb.h>
6 #include <lib/dvb/pesparse.h>
7 #include <lib/gdi/gpixmap.h>
8
9 typedef unsigned char __u8;
10
11 struct subtitle_clut_entry
12 {
13         __u8 Y, Cr, Cb, T;
14         __u8 valid;
15 };
16
17 struct subtitle_clut
18 {
19         unsigned char clut_id;
20         unsigned char CLUT_version_number;
21         subtitle_clut_entry entries_2bit[4];
22         subtitle_clut_entry entries_4bit[16];
23         subtitle_clut_entry entries_8bit[256];
24         subtitle_clut *next;
25 };
26
27 struct subtitle_page_region
28 {
29         int region_id;
30         int region_horizontal_address;
31         int region_vertical_address;
32         subtitle_page_region *next;
33 };
34
35 struct subtitle_region_object
36 {
37         int object_id;
38         int object_type;
39         int object_provider_flag;
40         
41         int object_horizontal_position;
42         int object_vertical_position;
43         
44                 // not supported right now...
45         int foreground_pixel_value;
46         int background_pixel_value;
47
48         subtitle_region_object *next;
49 };
50
51 struct subtitle_region
52 {
53         int region_id;
54         int region_version_number;
55         int region_height, region_width;
56         enum depth { bpp2=1, bpp4=2, bpp8=3 } region_depth;
57         ePtr<gPixmap> region_buffer;
58         
59         int clut_id;
60         
61         subtitle_region_object *region_objects;
62         
63         subtitle_region *next;
64 };
65
66 struct subtitle_page
67 {
68         int page_id;
69         time_t page_time_out;
70         int page_version_number;
71         int pcs_size;
72         subtitle_page_region *page_regions;
73         
74         subtitle_region *regions;
75
76         subtitle_clut *cluts;
77
78         subtitle_page *next;
79 };
80
81 struct bitstream
82 {
83         __u8 *data;
84         int size;
85         int avail;
86         int consumed;
87 };
88
89 struct eDVBSubtitleRegion
90 {
91         ePtr<gPixmap> m_pixmap;
92         ePoint m_position;
93         eDVBSubtitleRegion &operator=(const eDVBSubtitleRegion &s)
94         {
95                 m_pixmap = s.m_pixmap;
96                 m_position = s.m_position;
97                 return *this;
98         }
99 };
100
101 struct eDVBSubtitlePage
102 {
103         std::list<eDVBSubtitleRegion> m_regions;
104         pts_t m_show_time;
105 };
106
107 class eDVBSubtitleParser
108         :public iObject, public ePESParser, public Object
109 {
110         DECLARE_REF(eDVBSubtitleParser);
111         subtitle_page *pages;
112         ePtr<iDVBPESReader> m_pes_reader;
113         ePtr<eConnection> m_read_connection;
114         pts_t show_time;
115         Signal1<void,const eDVBSubtitlePage&> m_new_subtitle_page;
116 public:
117         eDVBSubtitleParser(iDVBDemux *demux);
118         virtual ~eDVBSubtitleParser();
119         int start(int pid);
120         void connectNewPage(const Slot1<void, const eDVBSubtitlePage&> &slot, ePtr<eConnection> &connection);
121 private:
122         void subtitle_process_line(subtitle_page *page, int object_id, int line, __u8 *data, int len);
123         int subtitle_process_pixel_data(subtitle_page *page, int object_id, int *linenr, int *linep, __u8 *data);
124         int subtitle_process_segment(__u8 *segment);
125         void subtitle_process_pes(__u8 *buffer, int len);
126         void subtitle_redraw_all();
127         void subtitle_reset();
128         void subtitle_redraw(int page_id);
129         void processPESPacket(__u8 *pkt, int len) { subtitle_process_pes(pkt, len); }
130 };
131
132 #endif