]> git.vomp.tv Git - vompclient.git/blob - videomvp.h
Prebuffering
[vompclient.git] / videomvp.h
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 // Thanks to Jon Gettler and BtB of the MVPMC project for all the hardware information
22
23
24 #ifndef VIDEOMVP_H
25 #define VIDEOMVP_H
26
27 // FIXME - check why so many things include unistd
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 "defines.h"
36 #include "video.h"
37 #include "stb.h"
38
39 class VideoMVP : public Video
40 {
41   public:
42     VideoMVP();
43     ~VideoMVP();
44
45     int init(UCHAR format);
46     int shutdown();
47
48     int setFormat(UCHAR format);
49     int setConnection(UCHAR connection);
50     int setAspectRatio(UCHAR aspectRatio);   // This one does the pin 8 scart widescreen switching
51     int setMode(UCHAR mode);
52     int setTVsize(UCHAR size);               // Is the TV a widescreen?
53     int setDefaultAspect();
54     int setSource();
55     int setPosition(int x, int y);
56     int sync();
57     int play();
58     int stop();
59     int pause();
60     int unPause();
61     int fastForward();
62     int unFastForward();
63     int reset();
64     int blank();
65     int signalOn();
66     int signalOff();
67     int attachFrameBuffer(); // What does this do?
68     ULONG timecodeToFrameNumber(ULLONG timecode);
69     int getFD();
70     ULLONG getCurrentTimestamp();
71
72     //Writing Data to Videodevice
73     virtual UINT DeliverMediaSample(MediaPacket packet, UCHAR* buffer, UINT *samplepos);
74     virtual long long SetStartOffset(long long curreftime, bool *rsync) { return 0; };
75
76 #ifdef DEV
77     int test();
78     int test2();
79 #endif
80
81   private:
82     int checkSCART();
83     void setLetterboxBorder(char* border);
84 };
85
86 #endif