]> git.vomp.tv Git - vompclient.git/blob - videowin.h
Windows port
[vompclient.git] / videowin.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 #ifndef VIDEOWIN_H
22 #define VIDEOWIN_H
23
24 #include <stdio.h>
25 #include <string.h>
26 #include <winsock2.h>
27 #include <dshow.h>
28 #include <d3d9.h>
29 #include <vmr9.h>
30
31 #include "defines.h"
32 #include "video.h"
33
34 #define DS_DEBUG
35
36 class DsSourceFilter;
37 class DsAllocator;
38
39 class VideoWin : public Video
40 {
41   public:
42     VideoWin();
43     ~VideoWin();
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         UCHAR getAspectRatio(){return aspectRatio;};
52         UCHAR getMode(){return mode;};
53         UCHAR getPseudoTVsize() {return pseudotvsize;};
54         int setMode(UCHAR mode);
55     int setTVsize(UCHAR size);               // Is the TV a widescreen?
56     int setDefaultAspect();
57     int setSource();
58     int setPosition(int x, int y);
59     int sync();
60     int play();
61     int stop();
62     int pause();
63     int unPause();
64     int fastForward();
65     int unFastForward();
66     int reset();
67     int blank();
68     int signalOn();
69     int signalOff();
70     int attachFrameBuffer(); // What does this do?
71     ULONG timecodeToFrameNumber(ULLONG timecode);
72         ULLONG frameNumberToTimecode(ULONG framenumber);
73     int getFD();
74     ULLONG getCurrentTimestamp();
75
76     //Writing Data to Videodevice
77     virtual UINT DeliverMediaSample(MediaPacket packet, UCHAR* buffer, UINT *samplepos);
78
79     int getCurrentAudioMediaSample(IMediaSample** ms);
80     int DeliverAudioMediaSample();
81
82     int getCurrentVideoMediaSample(IMediaSample** ms);
83     int DeliverVideoMediaSample();
84
85     virtual long long SetStartOffset(long long curreftime, bool *rsync);
86     long long SetStartAudioOffset(long long curreftime, bool *rsync);
87         virtual void ResetTimeOffsets();
88
89     void SetAudioState(bool state){audioon=state;};
90
91     void turnVideoOn(){videoon=true;};
92     void turnVideoOff(){videoon=false;};
93
94         unsigned int getPosx() {return videoposx;};
95         unsigned int getPosy() {return videoposy;};
96
97 #ifdef DEV
98     int test();
99     int test2();
100 #endif
101 private:
102   IMediaControl* dsmediacontrol;
103   IGraphBuilder* dsgraphbuilder;
104   IMediaSample* cur_audio_media_sample;
105   IMediaSample* cur_video_media_sample;
106   IBaseFilter* dsvmrrenderer;
107   IVMRSurfaceAllocatorNotify9  *dsvmrsurfnotify;
108   IReferenceClock *dsrefclock;
109   IMediaFilter* dsmediafilter;
110
111   DsSourceFilter* sourcefilter;
112   DsAllocator* allocatorvmr;
113   HANDLE filtermutex;
114   void CleanupDS();
115   bool offsetnotset;
116   bool offsetvideonotset;
117   bool offsetaudionotset;
118   long long startoffset;
119   long long lastrefvideotime;
120   long long lastrefaudiotime;
121
122   bool firstsynched;
123   bool audioon;
124   bool videoon;
125   UCHAR pseudotvsize;
126   REFERENCE_TIME lastreftimeRT;
127   ULLONG lastreftimeBYTE;
128   unsigned int videoposx;
129   unsigned int videoposy;
130 #ifdef DS_DEBUG
131   DWORD graphidentifier;
132 #endif
133 };
134
135 #endif
136 \r