]> git.vomp.tv Git - vompclient-marten.git/blob - osdopenvg.h
Fix bug in demuxer widescreen signaling
[vompclient-marten.git] / osdopenvg.h
1 /*
2     Copyright 2004-2005 Chris Tallon, 2006,2011-2012 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, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef OSDOPENVG_H
22 #define OSDOPENVG_H
23
24 #include <stdio.h>
25
26
27 #include <EGL/egl.h>
28 #include <EGL/eglext.h>
29 #include <VG/openvg.h>
30 #include <VG/vgu.h>
31
32
33
34 #include "osdvector.h"
35 #include "defines.h"
36 #include "log.h"
37 #include "threadp.h"
38 #include "mutex.h"
39 #include "videoomx.h"
40
41 #include <deque>
42
43 #include <ft2build.h>
44 #include FT_FREETYPE_H
45
46 enum OpenVGTask {
47         OVGdestroyImageRef,
48         OVGdestroyPaint,
49         OVGcreateImagePalette,
50         OVGcreateMonoBitmap,
51         OVGcreateColorRef,
52         OVGimageUploadLine,
53         OVGcreateImageFile,
54         OVGreplacefont
55 };
56
57 struct OpenVGCommand
58 {
59         enum OpenVGTask task;
60         const void *data;
61         const void *data2;
62         unsigned int param1,param2,param3;
63         unsigned int id; //only set an id if you are waiting
64 };
65
66 struct OpenVGResponse{
67         unsigned int id;
68         unsigned int result;
69 };
70
71
72 class OsdOpenVG : public OsdVector, public Thread_TYPE
73 {
74   public:
75     OsdOpenVG();
76     virtual ~OsdOpenVG();
77
78     int init(void* device);
79     int shutdown();
80     int stopUpdate();
81
82
83
84
85     float getFontHeight();
86     float getCharWidth(wchar_t c);
87     void imageUploadLine(ImageIndex index,unsigned int j,unsigned int width,void *data);
88
89     int getFontNames(const char *** names,const char *** names_keys);
90
91     virtual void setFont(const char * fontname);
92
93
94 protected:
95    /*osd vector implementation*/
96     void destroyImageRef(ImageIndex index);
97     ImageIndex createJpeg(const char* fileName, int *width,int *height);
98     ImageIndex createMonoBitmap(void *base,int width,int height);
99     ImageIndex createImagePalette(int width,int height,const unsigned char *image_data,const unsigned int*palette_data);
100     void destroyStyleRef(unsigned int index);
101         unsigned int createStyleRef(const DrawStyle &c);
102         unsigned int createColorRef(const Colour &c);
103
104         void drawSetTrans(SurfaceCommands & sc);
105         void executeDrawCommand(SVGCommand & command);
106
107         void initPaths();
108         void destroyPaths();
109         VGPath std_paths[Point+1];
110         long long  lastrendertime;
111         void InternalRendering();
112
113
114
115         Mutex vgmutex;
116         Mutex taskmutex;
117     pthread_cond_t vgtaskCond;
118     pthread_mutex_t vgtaskCondMutex;
119     deque<OpenVGCommand> vgcommands;
120     deque<OpenVGResponse> vgresponses;
121     bool processTasks();
122     bool haveOpenVGResponse(unsigned int id,unsigned int * resp);
123     unsigned int  putOpenVGCommand(OpenVGCommand& comm,bool wait);
124     unsigned int handleTask(OpenVGCommand& command);
125     void purgeAllReferences();
126     unsigned int wait_id;
127
128     FT_Library  ft_library;
129     FT_Face     ft_face;
130     VGFont vgfont;
131     VGFont vgttfont;
132     VGPaint vgttpaint;
133     int  loadFont(bool fontchange);
134     map<unsigned int,float> font_exp_x;
135     vector<char*> fontnames;
136     vector<char*> fontnames_keys;
137     char * cur_fontname;
138
139     unsigned int loadTTchar(cTeletextChar c);
140     map<unsigned int,int> tt_font_chars;
141
142
143
144         void threadMethod();
145     void threadPostStopCleanup();
146
147
148          /* BCM specific */
149
150     uint32_t display_height;
151         uint32_t display_width;
152         DISPMANX_DISPLAY_HANDLE_T bcm_display;
153         DISPMANX_ELEMENT_HANDLE_T bcm_element;
154 //      DISPMANX_ELEMENT_HANDLE_T bcm_background;
155 //      DISPMANX_RESOURCE_HANDLE_T bcm_backres;
156
157         uint32_t mode;
158
159
160         EGLDisplay egl_display;
161         EGLSurface egl_surface;
162         EGLContext egl_context;
163         EGLConfig egl_ourconfig;
164         float font_height;
165         float aspect_correction;
166         bool freetype_inited;
167
168
169 };
170
171 #endif