]> git.vomp.tv Git - vompclient.git/blob - videoomx.h
Optimizations in OMX handling towards accelerated image decoding, not working, but...
[vompclient.git] / videoomx.h
1 /*
2     Copyright 2004-2005 Chris Tallon 2009,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
22 #ifndef VIDEOOMX_H
23 #define VIDEOOMX_H
24
25 #include "mutex.h"
26 #include "signal.h"
27
28
29 #include <stdio.h>
30 #include <unistd.h>
31 #include <fcntl.h>
32 #include <sys/ioctl.h>
33 #include <string.h>
34
35 #include <stdint.h>
36
37 #include <list>
38 #include <vector>
39
40
41 #include "defines.h"
42 #include "video.h"
43 #include "threadsystem.h"
44
45
46
47 #define OMX_SKIP64BIT
48
49 #include <IL/OMX_Core.h>
50 #include <IL/OMX_Types.h>
51 #include <IL/OMX_Component.h>
52 #include <IL/OMX_Broadcom.h>
53
54
55 struct VPE_OMX_EVENT {
56         OMX_IN OMX_HANDLETYPE handle;
57         OMX_IN OMX_PTR appdata;
58     OMX_IN OMX_EVENTTYPE event_type;
59     OMX_IN OMX_U32 data1;
60         OMX_IN OMX_U32 data2;
61         OMX_IN OMX_PTR event_data;
62 };
63
64
65
66
67 class AudioVPE;
68
69 class VideoOMX : public Video
70 {
71   friend class AudioOMX;
72   friend class ImageOMX;
73   public:
74     VideoOMX();
75     virtual ~VideoOMX();
76
77     int init(UCHAR format);
78     int shutdown();
79
80     UCHAR getSupportedFormats() { return COMPOSITERGB | HDMI;};
81     UINT supportedTVsize() { return ASPECT4X3|ASPECT16X9|ASPECT14X9 ;};
82     UCHAR supportedTVFormats() { return NTSC|PAL|PAL_M|NTSC_J;};
83
84     int setFormat(UCHAR format);
85     int setConnection(UCHAR connection);
86     int setAspectRatio(UCHAR aspectRatio, int tparx,int tpary);   // This one does the pin 8 scart widescreen switching
87     int setMode(UCHAR mode);
88     int setTVsize(UCHAR size);               // Is the TV a widescreen?
89    UCHAR getTVsize();
90
91     void executePendingModeChanges();
92     int setDefaultAspect();
93     int setSource();
94     int setPosition(int x, int y);
95     int sync();
96     int play();
97     int stop();
98     int pause();
99     int unPause();
100     int fastForward();
101     int unFastForward();
102     int reset();
103     int blank();
104     int signalOn();
105     int signalOff();
106     int attachFrameBuffer(); // What does this do?
107     ULONG timecodeToFrameNumber(ULLONG timecode);
108     ULLONG getCurrentTimestamp();
109     bool displayIFrame(const UCHAR* bulibaver, UINT length);
110
111     virtual bool dtsTimefix(){return false;} //please we need dts time values
112     virtual int getTeletextBufferFaktor(){return 5;};
113
114     // Writing Data to Videodevice
115     virtual void PrepareMediaSample(const MediaPacketList&, UINT samplepos);
116     virtual UINT DeliverMediaSample(UCHAR* bulibaver, UINT* samplepos);
117
118
119         virtual bool supportsh264(){return true;};
120         virtual bool supportsmpeg2(){return mpeg2_supported;};
121
122         int WriteOutTS(const unsigned char *bulibaver,int length, int type);
123         void WriteOutPATPMT();
124
125
126
127         virtual long long SetStartOffset(long long curreftime, bool *rsync);
128         long long SetStartAudioOffset(long long curreftime, bool *rsync);
129         virtual void ResetTimeOffsets();
130
131         bool loadOptionsfromServer(VDR* vdr);
132         bool saveOptionstoServer();
133         bool addOptionsToPanes(int panenumber,Options *options,WOptionPane* pane);
134         bool handleOptionChanges(Option* option);
135
136
137 #ifdef DEV
138     int test();
139     int test2();
140 #endif
141
142
143
144     static inline OMX_TICKS intToOMXTicks(long long pts) {
145         OMX_TICKS temp;
146         temp.nLowPart=pts;
147         temp.nHighPart=pts>>32;
148         return temp;
149     }
150
151
152
153   private:
154            int EnterIframePlayback();
155            bool iframemode;
156            bool InIframemode() {return iframemode;};
157
158            virtual bool DrainTargetBufferFull();
159
160            UINT DeliverMediaPacket(MediaPacket packet,const UCHAR* bulibaver,UINT *samplepos);
161
162 #define VPE_DECODER_OMX 1
163
164
165
166            bool offsetnotset;
167            bool offsetvideonotset;
168            bool offsetaudionotset;
169            long long startoffset;
170            long long lastrefvideotime;
171            long long lastrefaudiotime;
172           // long long cur_pts;
173            long long lastreftimeOMX;
174            ULLONG lastreftimePTS;
175
176         //   long long playbacktimeoffset; //this is the offset between the media time and system clock
177         //   long long pausetimecode;
178            bool clockpaused;
179
180          /*  static long long GetCurrentSystemTime();
181            static void WaitUntil(long long time);
182            void FrameWaitforDisplay(long long pts);
183            bool FrameSkip(long long pts);
184            bool skipping;
185            void AdjustAudioPTS(long long pts);*/
186
187
188
189
190            static OMX_ERRORTYPE EventHandler_OMX(OMX_IN OMX_HANDLETYPE handle,OMX_IN OMX_PTR appdata,
191            OMX_IN OMX_EVENTTYPE event_type,OMX_IN OMX_U32 data1,
192            OMX_IN OMX_U32 data2,OMX_IN OMX_PTR event_data);
193            static OMX_ERRORTYPE EmptyBufferDone_OMX(OMX_IN OMX_HANDLETYPE hcomp,OMX_IN OMX_PTR appdata,OMX_IN OMX_BUFFERHEADERTYPE* bulibaver);
194            static OMX_ERRORTYPE FillBufferDone_OMX(OMX_IN OMX_HANDLETYPE hcomp, OMX_IN OMX_PTR appdata,OMX_IN OMX_BUFFERHEADERTYPE* bulibaver);
195
196            UINT DeliverMediaPacketOMX(MediaPacket packet,
197                                                      const UCHAR* bulibaver,
198                                                      UINT *samplepos);
199
200            bool detectIFrame(const UCHAR *buffer,unsigned int length);
201
202            int PrepareInputBufsOMX();
203            int DestroyInputBufsOMX();
204
205            void AddOmxEvent(VPE_OMX_EVENT  new_event);
206            void ReturnEmptyOMXBuffer(OMX_BUFFERHEADERTYPE* bulibaver);
207
208            int ChangeComponentState(OMX_HANDLETYPE handle,OMX_STATETYPE type);
209            int CommandFinished(OMX_HANDLETYPE handle,OMX_U32 command,OMX_U32 data2);
210            int WaitForEvent(OMX_HANDLETYPE handle,OMX_U32 event,int wait=200);
211            int EnablePort(OMX_HANDLETYPE handle,OMX_U32 port,bool wait);
212            int DisablePort(OMX_HANDLETYPE handle,OMX_U32 port,bool wait=true);
213            int clearEvents();
214            void checkForStalledBuffers();
215
216
217        int setClockExecutingandRunning();
218        int initClock();
219        void destroyClock();
220        int idleClock();
221        int getClockAudioandInit(OMX_HANDLETYPE *p_omx_clock,OMX_U32 *p_omx_clock_output_port);
222        int getClockVideoandInit();
223        void LockClock() {clock_mutex.Lock();};
224        void UnlockClock() {clock_mutex.Unlock();};
225        OMX_ERRORTYPE ProtOMXEmptyThisBuffer(OMX_HANDLETYPE handle, OMX_BUFFERHEADERTYPE* buffer);
226        void clockPause();
227        void clockUnpause();
228        bool isClockPaused() {return clockpaused;};
229
230        void signalOmx() {omx_event_ready_signal.signal();};
231
232        void interlaceSwitch4Demux();
233
234        Mutex clock_mutex; //clock mutex is now responsible for all omx stuff
235        long long cur_clock_time;
236
237
238
239            OMX_HANDLETYPE omx_vid_dec;
240            OMX_HANDLETYPE omx_vid_sched;
241            OMX_HANDLETYPE omx_vid_deint;
242            OMX_HANDLETYPE omx_vid_rend;
243            OMX_HANDLETYPE omx_clock;
244            int clock_references;
245            bool dodeint; //deinterlacer was activated in omx filtergraph
246            bool first_frame; //handle frame change
247            void FirstFrameFix();
248
249
250            OMX_U32 omx_codec_input_port;
251            OMX_U32 omx_codec_output_port;
252            OMX_U32 omx_deint_input_port;
253            OMX_U32 omx_deint_output_port;
254            OMX_U32 omx_rend_input_port;
255            OMX_U32 omx_shed_input_port;
256            OMX_U32 omx_shed_output_port;
257            OMX_U32 omx_shed_clock_port;
258            OMX_U32 omx_clock_output_port;
259          //  OMX_NALUFORMATSTYPE omx_nalu_format;
260            bool omx_vid_stalled;
261
262
263
264
265
266            int AllocateCodecsOMX();
267            int DeAllocateCodecsOMX();
268            int FlushRenderingPipe();
269
270            vector<OMX_BUFFERHEADERTYPE*> input_bufs_omx_all;
271            list<OMX_BUFFERHEADERTYPE*> input_bufs_omx_free;
272            Mutex input_bufs_omx_mutex;
273            OMX_BUFFERHEADERTYPE* cur_input_buf_omx;
274
275            void PutBufferToPres(OMX_BUFFERHEADERTYPE* buffer);
276
277
278
279            bool omx_running;
280            bool omx_first_frame;
281
282            Mutex omx_event_mutex;
283            Signal omx_event_ready_signal;
284
285            list<VPE_OMX_EVENT> omx_events;
286
287            bool omx_mpeg2;
288            bool omx_h264;
289            float xpos,ypos;
290            int deinterlace;
291            void updateMode();//called internally to adjust for different parameters
292            void selectVideoMode(int interlaced);
293            UCHAR tvsystem;
294            bool signalon;
295            bool pendingmodechange;
296            bool hdmi;
297            bool mpeg2_supported;
298            int outputinterlaced;
299
300
301
302            bool firstsynched;
303
304
305            vector<MediaPacket> mediapackets;
306
307
308
309
310 };
311
312 #endif