]> git.vomp.tv Git - vompclient.git/blob - osdopenvg.h
Fix black background for 16:9 live TV on 4:3 screen
[vompclient.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, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef OSDOPENVG_H
21 #define OSDOPENVG_H
22
23 #include <stdio.h>
24 #include <mutex>
25 #include <condition_variable>
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 "videoomx.h"
39 #include "staticartwork.h"
40 #ifdef PICTURE_DECODER_OMX
41 #include "imageomx.h"
42 #endif
43
44 #include <deque>
45
46 #include <ft2build.h>
47 #include FT_FREETYPE_H
48
49 enum OpenVGTask {
50         OVGdestroyImageRef,
51         OVGdestroyPaint,
52         OVGcreateImagePalette,
53         OVGcreateMonoBitmap,
54         OVGcreateColorRef,
55         OVGimageUploadLine,
56         //OVGcreateImageFile,
57         OVGreplacefont,
58         OVGcreateImageMemory,
59         OVGcreateEGLImage,
60         OVGreadyEGLImage
61 };
62
63 struct OpenVGCommand
64 {
65         enum OpenVGTask task;
66         const void *data;
67         const void *data2;
68         unsigned int param1,param2,param3;
69         unsigned int id; //only set an id if you are waiting
70 };
71
72 struct OpenVGResponse{
73         unsigned int id;
74         unsigned int result;
75 };
76
77
78 class OsdOpenVG : public OsdVector, public Thread_TYPE
79 #ifdef PICTURE_DECODER_OMX
80         , public EGLPictureCreator
81 #endif
82 {
83   public:
84     OsdOpenVG();
85     virtual ~OsdOpenVG();
86
87     int init();
88     int shutdown();
89     int stopUpdate();
90
91     bool screenShot(void *buffer, int width, int height, bool osd /*include osd*/);
92
93
94
95     float getFontHeight();
96     float getCharWidth(wchar_t c);
97
98     int getFontNames(const char *** names,const char *** names_keys);
99
100     virtual void setFont(const char * fontname);
101
102     virtual float getPixelAspect() {return aspect_correction;};
103
104     bool getEGLPicture(struct OsdVector::PictureInfo & info, EGLDisplay * display);
105
106     void updateBackgroundColor(DrawStyle bg);
107
108
109 protected:
110
111
112    /*osd vector implementation*/
113     void destroyImageRef(ImageIndex index);
114    // ImageIndex createJpeg(const char* fileName, int *width,int *height);
115     ImageIndex createMonoBitmap(void *base,int width,int height);
116     ImageIndex createImagePalette(int width,int height,const unsigned char *image_data,const unsigned int*palette_data);
117     void createPicture(struct PictureInfo& pict_inf);
118     void destroyStyleRef(VectorHandle index);
119     VectorHandle createStyleRef(const DrawStyle &c);
120     bool getStaticImageData(unsigned int static_id, UCHAR **userdata, ULONG *length);
121
122     void drawSetTrans(SurfaceCommands & sc);
123     void executeDrawCommand(SVGCommand & command);
124
125     void initPaths();
126     void destroyPaths();
127     VGPath std_paths[PIPoint+1];
128     long long  lastrendertime;
129     void InternalRendering();
130     void getScreenSize(int &width, int &height);
131     void getRealScreenSize(int &width, int &height);
132
133
134
135     std::mutex vgmutex;
136     std::mutex taskmutex;
137
138     std::mutex vgTaskSignalMutex;
139     std::condition_variable vgTaskSignal;
140
141     std::deque<OpenVGCommand> vgcommands;
142     std::deque<OpenVGResponse> vgresponses;
143     bool processTasks();
144     bool haveOpenVGResponse(unsigned int id,unsigned int * resp);
145     unsigned int  putOpenVGCommand(OpenVGCommand& comm,bool wait);
146     unsigned int handleTask(OpenVGCommand& command);
147     //void purgeAllReferences();
148     unsigned int wait_id;
149
150     FT_Library  ft_library;
151     FT_Face     ft_face;
152     VGFont vgfont;
153     VGFont vgttfont;
154     VGPaint vgttpaint;
155     int loadFont(bool fontchange);
156     std::map<unsigned int,float> font_exp_x;
157     std::vector<char*> fontnames;
158     std::vector<char*> fontnames_keys;
159     char* cur_fontname;
160
161     int clip_shift_x;
162     int clip_shift_y;
163
164     unsigned int loadTTchar(cTeletextChar c);
165     std::map<unsigned int,int> tt_font_chars;
166
167
168     void threadMethod();
169
170     /* BCM specific */
171
172     uint32_t display_height;
173     uint32_t display_width;
174     DISPMANX_DISPLAY_HANDLE_T bcm_display;
175     DISPMANX_ELEMENT_HANDLE_T bcm_element;
176     DISPMANX_ELEMENT_HANDLE_T bcm_background;
177     DISPMANX_RESOURCE_HANDLE_T bcm_backres;
178
179     uint32_t mode;
180
181
182         EGLDisplay egl_display;
183         EGLSurface egl_surface;
184         EGLContext egl_context;
185         EGLConfig egl_ourconfig;
186         float font_height;
187         float aspect_correction;
188         bool freetype_inited;
189
190         uint8_t *static_artwork_begin[sa_MAX];
191         uint8_t *static_artwork_end[sa_MAX];
192
193 #ifdef PICTURE_DECODER_OMX
194         ImageOMX *imageomx;
195 #endif
196
197 };
198
199 #endif