]> git.vomp.tv Git - vompclient.git/blob - videowin.h
Fix delete
[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 #ifdef DEV
95     int test();
96     int test2();
97 #endif
98 private:
99   IMediaControl* dsmediacontrol;
100   IGraphBuilder* dsgraphbuilder;
101   IMediaSample* cur_audio_media_sample;
102   IMediaSample* cur_video_media_sample;
103   IBaseFilter* dsvmrrenderer;
104   IVMRSurfaceAllocatorNotify9  *dsvmrsurfnotify;
105   IReferenceClock *dsrefclock;
106   IMediaFilter* dsmediafilter;
107
108   DsSourceFilter* sourcefilter;
109   DsAllocator* allocatorvmr;
110   HANDLE filtermutex;
111   void CleanupDS();
112   bool offsetnotset;
113   bool offsetvideonotset;
114   bool offsetaudionotset;
115   long long startoffset;
116   long long lastrefvideotime;
117   long long lastrefaudiotime;
118
119   bool firstsynched;
120   bool audioon;
121   bool videoon;
122   UCHAR pseudotvsize;
123   REFERENCE_TIME lastreftimeRT;
124   ULLONG lastreftimeBYTE;
125 #ifdef DS_DEBUG
126   DWORD graphidentifier;
127 #endif
128 };
129
130 #endif
131 \r