missing commit
[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         
58         ePtr<gPixmap> region_buffer;
59         
60         int clut_id;
61         
62         subtitle_region_object *region_objects;
63         
64         subtitle_region *next;
65         
66         bool committed;
67 };
68
69 struct subtitle_page
70 {
71         int page_id;
72         time_t page_time_out;
73         int page_version_number;
74         int pcs_size;
75         subtitle_page_region *page_regions;
76         
77         subtitle_region *regions;
78
79         subtitle_clut *cluts;
80
81         subtitle_page *next;
82 };
83
84 struct bitstream
85 {
86         __u8 *data;
87         int size;
88         int avail;
89         int consumed;
90 };
91
92 struct eDVBSubtitleRegion
93 {
94         ePtr<gPixmap> m_pixmap;
95         ePoint m_position;
96         eDVBSubtitleRegion &operator=(const eDVBSubtitleRegion &s)
97         {
98                 m_pixmap = s.m_pixmap;
99                 m_position = s.m_position;
100                 return *this;
101         }
102 };
103
104 struct eDVBSubtitlePage
105 {
106         std::list<eDVBSubtitleRegion> m_regions;
107         pts_t m_show_time;
108 };
109
110 class eDVBSubtitleParser
111         :public iObject, public ePESParser, public Object
112 {
113         DECLARE_REF(eDVBSubtitleParser);
114         subtitle_page *m_pages;
115         ePtr<iDVBPESReader> m_pes_reader;
116         ePtr<eConnection> m_read_connection;
117         pts_t m_show_time;
118         Signal1<void,const eDVBSubtitlePage&> m_new_subtitle_page;
119         int m_composition_page_id, m_ancillary_page_id;
120 public:
121         eDVBSubtitleParser(iDVBDemux *demux);
122         virtual ~eDVBSubtitleParser();
123         int start(int pid, int composition_page_id, int ancillary_page_id);
124         int stop();
125         void connectNewPage(const Slot1<void, const eDVBSubtitlePage&> &slot, ePtr<eConnection> &connection);
126 private:
127         void subtitle_process_line(subtitle_page *page, int object_id, int line, __u8 *data, int len);
128         int subtitle_process_pixel_data(subtitle_page *page, int object_id, int *linenr, int *linep, __u8 *data);
129         int subtitle_process_segment(__u8 *segment);
130         void subtitle_process_pes(__u8 *buffer, int len);
131         void subtitle_redraw_all();
132         void subtitle_reset();
133         void subtitle_redraw(int page_id);
134         void processPESPacket(__u8 *pkt, int len) { subtitle_process_pes(pkt, len); }
135 };
136
137 #endif