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
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];
27 struct subtitle_page_region
30 int region_horizontal_address;
31 int region_vertical_address;
32 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 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 subtitle_region_object *region_objects;
63 subtitle_region *next;
70 int page_version_number;
72 subtitle_page_region *page_regions;
74 subtitle_region *regions;
89 struct eDVBSubtitleRegion
91 ePtr<gPixmap> m_pixmap;
93 eDVBSubtitleRegion &operator=(const eDVBSubtitleRegion &s)
95 m_pixmap = s.m_pixmap;
96 m_position = s.m_position;
101 struct eDVBSubtitlePage
103 std::list<eDVBSubtitleRegion> m_regions;
107 class eDVBSubtitleParser
108 :public iObject, public ePESParser, public Object
110 DECLARE_REF(eDVBSubtitleParser);
111 subtitle_page *m_pages;
112 ePtr<iDVBPESReader> m_pes_reader;
113 ePtr<eConnection> m_read_connection;
115 Signal1<void,const eDVBSubtitlePage&> m_new_subtitle_page;
116 int m_composition_page_id, m_ancillary_page_id;
118 eDVBSubtitleParser(iDVBDemux *demux);
119 virtual ~eDVBSubtitleParser();
120 int start(int pid, int composition_page_id, int ancillary_page_id);
122 void connectNewPage(const Slot1<void, const eDVBSubtitlePage&> &slot, ePtr<eConnection> &connection);
124 void subtitle_process_line(subtitle_page *page, int object_id, int line, __u8 *data, int len);
125 int subtitle_process_pixel_data(subtitle_page *page, int object_id, int *linenr, int *linep, __u8 *data);
126 int subtitle_process_segment(__u8 *segment);
127 void subtitle_process_pes(__u8 *buffer, int len);
128 void subtitle_redraw_all();
129 void subtitle_reset();
130 void subtitle_redraw(int page_id);
131 void processPESPacket(__u8 *pkt, int len) { subtitle_process_pes(pkt, len); }