]> git.vomp.tv Git - vompclient.git/blob - video.cc
New widescreen mode
[vompclient.git] / video.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "video.h"
22
23 Video* Video::instance = NULL;
24
25 Video::Video()
26 {
27   if (instance) return;
28   instance = this;
29   initted = 0;
30
31   fdVideo = 0;
32
33   format = 0;
34   connection = 0;
35   aspectRatio = 0;
36   mode = 0;
37   tvsize = 0;
38
39   screenWidth = 0;
40   screenHeight = 0;
41 }
42
43 Video::~Video()
44 {
45   instance = NULL;
46 }
47
48 Video* Video::getInstance()
49 {
50   return instance;
51 }
52
53 int Video::init(UCHAR tformat)
54 {
55   if (initted) return 0;
56   initted = 1;
57
58   if ((fdVideo = open("/dev/vdec_dev", O_WRONLY)) < 0) return 0;
59
60   if (!setFormat(tformat))           { shutdown(); return 0; }
61   if (!setConnection(COMPOSITERGB))  { shutdown(); return 0; }
62   if (!setAspectRatio(ASPECT4X3))    { shutdown(); return 0; }
63   if (!setMode(NORMAL))              { shutdown(); return 0; }
64   if (!setSource())                  { shutdown(); return 0; }
65   if (!attachFrameBuffer())          { shutdown(); return 0; }
66
67   setTVsize(ASPECT4X3);
68
69   if (format == PAL) setLetterboxBorder("38");
70   else setLetterboxBorder("31");
71
72   stop();
73
74
75   return 1;
76 }
77
78 void Video::setLetterboxBorder(char* border)
79 {
80   FILE* fdlbox = fopen("/proc/lbox_border", "w");
81   if (!fdlbox) return;
82   fputs(border, fdlbox);
83   fclose(fdlbox);
84 }
85
86 int Video::setTVsize(UCHAR ttvsize)
87 {
88   tvsize = ttvsize;
89
90   // Override the aspect ratio usage, temporarily use to set the video chip mode
91   if (!setAspectRatio(tvsize))       { shutdown(); return 0; }
92   close(fdVideo);
93   if ((fdVideo = open("/dev/vdec_dev", O_WRONLY)) < 0) return 0;
94   if (!setSource())                  { shutdown(); return 0; }
95   if (!attachFrameBuffer())          { shutdown(); return 0; }
96
97   // Reopening the fd causes the scart aspect line to go back to 4:3
98   // Set this again to the same as the tv screen size
99   if (!setAspectRatio(tvsize))       { shutdown(); return 0; }
100
101   // mode == LETTERBOX is invalid if the TV is widescreen
102   if (tvsize == ASPECT16X9) setMode(NORMAL);
103
104   return 1;
105 }
106
107 int Video::setDefaultAspect()
108 {
109   return setAspectRatio(tvsize);
110 }
111
112 int Video::shutdown()
113 {
114   if (!initted) return 0;
115   initted = 0;
116   close(fdVideo);
117   return 1;
118 }
119
120 int Video::checkSCART()
121 {
122   // Returns 3 for SCART Composite out
123   // Returns 3 for SCART S-Video out
124   // Returns 2 for SCART RGB out
125   // Returns 3 for SCART not plugged in
126
127   // So, as you can have RGB and composite out simultaneously,
128   // and it can't detect S-Video, what is the point of this?
129
130   int scart;
131   if (ioctl(fdVideo, AV_CHK_SCART, &scart) != 0) return -10;
132
133   return scart;
134 }
135
136 int Video::setFormat(UCHAR tformat)
137 {
138   if (!initted) return 0;
139   if ((tformat != PAL) && (tformat != NTSC)) return 0;
140   format = tformat;
141
142   if (ioctl(fdVideo, AV_SET_VID_DISP_FMT, format) != 0) return 0;
143
144   if (format == NTSC)
145   {
146     screenWidth = 720;
147     screenHeight = 480;
148   }
149   if (format == PAL)
150   {
151     screenWidth = 720;
152     screenHeight = 576;
153   }
154
155   return 1;
156 }
157
158 int Video::setConnection(UCHAR tconnection)
159 {
160   if (!initted) return 0;
161   if ((tconnection != COMPOSITERGB) && (tconnection != SVIDEO)) return 0;
162   connection = tconnection;
163
164   if (ioctl(fdVideo, AV_SET_VID_OUTPUT, connection) != 0) return 0;
165   return 1;
166 }
167
168 int Video::setAspectRatio(UCHAR taspectRatio)
169 {
170   if (!initted) return 0;
171   if ((taspectRatio != ASPECT4X3) && (taspectRatio != ASPECT16X9)) return 0;
172   aspectRatio = taspectRatio;
173
174   if (ioctl(fdVideo, AV_SET_VID_RATIO, aspectRatio) != 0) return 0;
175   return 1;
176 }
177
178 int Video::setMode(UCHAR tmode)
179 {
180   if (!initted) return 0;
181
182   if ((tmode == LETTERBOX) && (tvsize == ASPECT16X9)) return 0; // invalid mode
183
184   if ((tmode != NORMAL) && (tmode != LETTERBOX) && (tmode != UNKNOWN2) && (tmode != QUARTER) && (tmode != EIGHTH)
185       && (tmode != ZOOM) && (tmode != UNKNOWN6)) return 0;
186   mode = tmode;
187
188   if (ioctl(fdVideo, AV_SET_VID_MODE, mode) != 0) return 0;
189   return 1;
190 }
191
192 int Video::signalOff()
193 {
194   if (ioctl(fdVideo, AV_SET_VID_DENC, 0) != 0) return 0;
195   return 1;
196 }
197
198 int Video::signalOn()
199 {
200   if (ioctl(fdVideo, AV_SET_VID_DENC, 1) != 0) return 0;
201   return 1;
202 }
203
204 int Video::setSource()
205 {
206   if (!initted) return 0;
207
208   // What does this do...
209   if (ioctl(fdVideo, AV_SET_VID_SRC, 1) != 0) return 0;
210   return 1;
211 }
212
213 int Video::setPosition(int x, int y)
214 {
215   if (!initted) return 0;
216
217 //  vid_pos_regs_t pos_d;
218 //  pos_d.x = x;
219 //  pos_d.y = y;
220
221   vid_pos_regs_t pos_d;
222
223   memset(&pos_d, 0, sizeof(pos_d));
224
225   pos_d.dest.y = y;
226   pos_d.dest.x = x;
227 /*
228 typedef struct {
229   int w;
230   int h;
231   int scale;
232   int x1;
233   int y;
234   int x;
235   int y2;
236   int x3;
237   int y3;
238   int x4;
239   int y4;
240 } vid_pos_regs_t;
241 */
242
243 /*
244   pos_d.w = 100;
245   pos_d.h = 30;
246   pos_d.scale = 2;
247   pos_d.x1 = 0;
248   pos_d.y = 100;            // Top left X
249   pos_d.x = 50;            // Top left Y
250   pos_d.y2 = 30;
251   pos_d.x3 = 60;
252   pos_d.y3 = 90;
253   pos_d.x4 = 120;
254   pos_d.y4 = 150;
255 */
256
257   if (ioctl(fdVideo, AV_SET_VID_POSITION, &pos_d) != 0) return 0;
258   return 1;
259 }
260
261 int Video::sync()
262 {
263   if (!initted) return 0;
264
265   if (ioctl(fdVideo, AV_SET_VID_SYNC, 2) != 0) return 0;
266   return 1;
267 }
268
269 int Video::play()
270 {
271   if (!initted) return 0;
272
273   if (ioctl(fdVideo, AV_SET_VID_PLAY, 0) != 0) return 0;
274   return 1;
275 }
276
277 int Video::stop()
278 {
279   if (!initted) return 0;
280
281   if (ioctl(fdVideo, AV_SET_VID_STOP, 0) != 0) return 0;
282   return 1;
283 }
284
285 int Video::reset()
286 {
287   if (!initted) return 0;
288
289   if (ioctl(fdVideo, AV_SET_VID_RESET, 0x11) != 0) return 0;
290   return 1;
291 }
292
293 int Video::pause()
294 {
295   if (!initted) return 0;
296
297   if (ioctl(fdVideo, AV_SET_VID_PAUSE, 0) != 0) return 0;
298   return 1;
299 }
300
301 int Video::unPause() // FIXME get rid - same as play!!
302 {
303   if (!initted) return 0;
304   if (ioctl(fdVideo, AV_SET_VID_PLAY, 0) != 0) return 0;
305   return 1;
306 }
307
308 int Video::fastForward()
309 {
310   if (!initted) return 0;
311
312   if (ioctl(fdVideo, AV_SET_VID_FFWD, 1) != 0) return 0;
313   return 1;
314 }
315
316 int Video::unFastForward()
317 {
318   if (!initted) return 0;
319
320 //  if (ioctl(fdVideo, AV_SET_VID_RESET, 0x11) != 0) return 0; // don't need this.
321
322   if (ioctl(fdVideo, AV_SET_VID_PLAY, 0) != 0) return 0;
323   return 1;
324 }
325
326 int Video::attachFrameBuffer()
327 {
328   if (!initted) return 0;
329
330   if (ioctl(fdVideo, AV_SET_VID_FB, 0) != 0) return 0;
331   return 1;
332 }
333
334 int Video::blank(void)
335 {
336   if (ioctl(fdVideo, AV_SET_VID_FB, 1) != 0) return 0;
337   if (ioctl(fdVideo, AV_SET_VID_FB, 0) != 0) return 0;
338   return 1;
339 }
340
341 int Video::getFD()
342 {
343   if (!initted) return 0;
344
345   return fdVideo;
346 }
347
348 UCHAR Video::getFormat()
349 {
350   return format;
351 }
352
353 UINT Video::getScreenWidth()
354 {
355   return screenWidth;
356 }
357
358 UINT Video::getScreenHeight()
359 {
360   return screenHeight;
361 }
362
363 UCHAR Video::getTVsize()
364 {
365   return tvsize;
366 }
367
368 #ifdef DEV
369 int Video::test()
370 {
371   return 0;
372
373 //  ULLONG stc = 0;
374 //  return ioctl(fdVideo, AV_SET_VID_STC, &stc);
375 /*
376  // reset();
377   return 1;
378 */
379 }
380
381 int Video::test2()
382 {
383   return 0;
384 }
385 #endif