]> git.vomp.tv Git - vompclient.git/blob - videowin.h
A little convergence to NEW_DEMUXER
[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     ULLONG getCurrentTimestamp();
74
75     //Writing Data to Videodevice
76     virtual UINT DeliverMediaSample(MediaPacket packet, UCHAR* buffer, UINT *samplepos);
77
78     int getCurrentAudioMediaSample(IMediaSample** ms);
79     int DeliverAudioMediaSample();
80
81     int getCurrentVideoMediaSample(IMediaSample** ms);
82     int DeliverVideoMediaSample();
83
84     virtual long long SetStartOffset(long long curreftime, bool *rsync);
85     long long SetStartAudioOffset(long long curreftime, bool *rsync);
86   virtual void ResetTimeOffsets();
87
88     void SetAudioState(bool state){audioon=state;};
89
90     void turnVideoOn(){videoon=true;};
91     void turnVideoOff(){videoon=false;};
92
93   unsigned int getPosx() {return videoposx;};
94   unsigned int getPosy() {return videoposy;};
95
96 #ifdef DEV
97     int test();
98     int test2();
99 #endif
100 private:
101   IMediaControl* dsmediacontrol;
102   IGraphBuilder* dsgraphbuilder;
103   IMediaSample* cur_audio_media_sample;
104   IMediaSample* cur_video_media_sample;
105   IBaseFilter* dsvmrrenderer;
106   IVMRSurfaceAllocatorNotify9  *dsvmrsurfnotify;
107   IReferenceClock *dsrefclock;
108   IMediaFilter* dsmediafilter;
109
110   DsSourceFilter* sourcefilter;
111   DsAllocator* allocatorvmr;
112   HANDLE filtermutex;
113   void CleanupDS();
114   bool offsetnotset;
115   bool offsetvideonotset;
116   bool offsetaudionotset;
117   long long startoffset;
118   long long lastrefvideotime;
119   long long lastrefaudiotime;
120
121   bool firstsynched;
122   bool audioon;
123   bool videoon;
124   UCHAR pseudotvsize;
125   REFERENCE_TIME lastreftimeRT;
126   ULLONG lastreftimeBYTE;
127   unsigned int videoposx;
128   unsigned int videoposy;
129 #ifdef DS_DEBUG
130   DWORD graphidentifier;
131 #endif
132 };
133
134 #endif
135 \r