1 #ifndef __lib_dvb_subtitle_h
2 #define __lib_dvb_subtitle_h
4 #include <lib/base/object.h>
5 #include <lib/dvb/idvb.h>
6 #include <lib/dvb/pesparse.h>
7 #include <lib/gdi/gpixmap.h>
9 typedef unsigned char __u8;
11 struct subtitle_clut_entry
18 unsigned char clut_id;
19 unsigned char size_2, size_4, size_8;
20 unsigned char CLUT_version_number;
21 struct subtitle_clut_entry entries_2bit[4];
22 struct subtitle_clut_entry entries_4bit[16];
23 struct subtitle_clut_entry entries_8bit[256];
24 struct subtitle_clut *next;
27 struct subtitle_page_region
30 int region_horizontal_address;
31 int region_vertical_address;
32 struct subtitle_page_region *next;
35 struct subtitle_region_object
39 int object_provider_flag;
41 int object_horizontal_position;
42 int object_vertical_position;
44 // not supported right now...
45 int foreground_pixel_value;
46 int background_pixel_value;
48 struct subtitle_region_object *next;
51 struct subtitle_region
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;
61 struct subtitle_region_object *region_objects;
63 struct subtitle_region *next;
70 int page_version_number;
72 struct subtitle_page_region *page_regions;
74 struct subtitle_region *regions;
76 struct subtitle_clut *cluts;
78 struct subtitle_page *next;
89 struct eDVBSubtitleRegion
96 class eDVBSubtitleParser
97 :public iObject, public ePESParser, public Object
99 DECLARE_REF(eDVBSubtitleParser);
100 struct subtitle_page *pages;
101 int current_clut_id, current_clut_page_id;
102 int screen_width, screen_height;
103 int bbox_left, bbox_top, bbox_right, bbox_bottom;
104 ePtr<iDVBPESReader> m_pes_reader;
105 ePtr<eConnection> m_read_connection;
107 Signal1<void,const eDVBSubtitleRegion&> m_new_subtitle_region;
109 eDVBSubtitleParser(iDVBDemux *demux);
110 virtual ~eDVBSubtitleParser();
112 void connectNewRegion(const Slot1<void, const eDVBSubtitleRegion&> &slot, ePtr<eConnection> &connection);
114 void subtitle_process_line(struct subtitle_page *page, int object_id, int line, __u8 *data, int len);
115 int subtitle_process_pixel_data(struct subtitle_page *page, int object_id, int *linenr, int *linep, __u8 *data);
116 int subtitle_process_segment(__u8 *segment);
117 void subtitle_process_pes(__u8 *buffer, int len);
118 void subtitle_clear_screen();
119 void subtitle_redraw_all();
120 void subtitle_reset();
121 void subtitle_redraw(int page_id);
122 void processPESPacket(__u8 *pkt, int len) { subtitle_process_pes(pkt, len); }