2 Copyright 2004-2005 Chris Tallon
\r
4 This file is part of VOMP.
\r
6 VOMP is free software; you can redistribute it and/or modify
\r
7 it under the terms of the GNU General Public License as published by
\r
8 the Free Software Foundation; either version 2 of the License, or
\r
9 (at your option) any later version.
\r
11 VOMP is distributed in the hope that it will be useful,
\r
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 GNU General Public License for more details.
\r
16 You should have received a copy of the GNU General Public License
\r
17 along with VOMP; if not, write to the Free Software
\r
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
\r
26 #include <winsock2.h>
\r
32 #include "defines.h"
\r
36 #define NEW_DS_MECHANISMENS
\r
38 #ifdef NEW_DS_MECHANISMENS
\r
39 struct VideoFilterDesc {
\r
41 char * friendlyname;
\r
45 using namespace std;
\r
46 typedef vector<VideoFilterDesc> VideoFilterDescList;
\r
49 class DsSourceFilter;
\r
52 class VideoWin : public Video
\r
56 virtual ~VideoWin();
\r
58 int init(UCHAR format);
\r
61 int setFormat(UCHAR format);
\r
62 virtual UCHAR getSupportedFormats() { return 0;};
\r
63 int setConnection(UCHAR connection);
\r
64 int setAspectRatio(UCHAR aspectRatio); // This one does the pin 8 scart widescreen switching
\r
65 UCHAR getAspectRatio(){return aspectRatio;};
\r
66 UCHAR getMode(){return mode;};
\r
67 UCHAR getPseudoTVsize() {return pseudotvsize;};
\r
68 int setMode(UCHAR mode);
\r
69 int setTVsize(UCHAR size); // Is the TV a widescreen?
\r
70 int setDefaultAspect();
\r
72 int setPosition(int x, int y);
\r
76 bool InIframemode() {return iframemode;};
\r
84 int unFastForward();
\r
90 int attachFrameBuffer(); // What does this do?
\r
91 // ULONG timecodeToFrameNumber(ULLONG timecode);
\r
92 // ULLONG frameNumberToTimecode(ULONG framenumber);
\r
93 ULLONG getCurrentTimestamp();
\r
95 bool loadOptionsfromServer(VDR* vdr);
\r
96 bool saveOptionstoServer();
\r
97 bool addOptionPagesToWTB(WTabBar *wtb);
\r
98 bool addOptionsToPanes(int panenumber,Options *options,WOptionPane* pane);
\r
99 bool handleOptionChanges(Option* option);
\r
101 //Writing Data to Videodevice
\r
102 virtual void PrepareMediaSample(const MediaPacketList&, UINT samplepos);
\r
103 virtual UINT DeliverMediaSample(UCHAR* buffer, UINT *samplepos);
\r
104 UINT DeliverMediaPacket(const MediaPacket packet, const UCHAR* buffer, UINT *samplepos);
\r
105 virtual bool dtsTimefix() {if (h264)return videoH264dtsfix; else return videompeg2dtsfix;}
\r
107 virtual bool supportsh264();
\r
108 virtual int getTeletextBufferFaktor(){return 4;};
\r
111 virtual bool supportsAc3();
\r
113 enum VideoPresenter {
\r
121 MediaPacket mediapacket;
\r
124 int getCurrentAudioMediaSample(IMediaSample** ms);
\r
125 int DeliverAudioMediaSample();
\r
127 int getCurrentVideoMediaSample(IMediaSample** ms);
\r
128 int DeliverVideoMediaSample();
\r
129 int setAudioStreamType(UCHAR type);
\r
131 virtual long long SetStartOffset(long long curreftime, bool *rsync);
\r
132 long long SetStartAudioOffset(long long curreftime, bool *rsync);
\r
133 virtual void ResetTimeOffsets();
\r
135 void SetAudioState(bool state){audioon=state;};
\r
136 void SetAudioVolume(long volume);
\r
138 void turnVideoOn(){videoon=true;};
\r
139 void turnVideoOff(){videoon=false;};
\r
141 virtual bool displayIFrame(const UCHAR* buffer, UINT length);
\r
143 unsigned int getPosx() {return videoposx;};
\r
144 unsigned int getPosy() {return videoposy;};
\r
145 bool isVideoOn() {return videoon;};
\r
146 bool isdsinited() {return dsinited;};
\r
147 int lastAType() {return lastaudiomode;};
\r
148 bool changeAType(int type,IMediaSample* ms);
\r
151 const VideoFilterDescList *getVideoFilterList(int &selected);
\r
152 bool selectVideoFilter(int filter);
\r
153 DsSourceFilter* getSourceFilter() {return sourcefilter;};
\r
155 const VideoFilterDescList *getVideoH264FilterList(int &selected);
\r
156 bool selectVideoH264Filter(int filter);
\r
164 int EnterIframePlayback();
\r
165 #ifdef NEW_DS_MECHANISMENS
\r
167 void initFilterDatabase();
\r
168 IBaseFilter *getVideoFilter();
\r
169 VideoFilterDescList videofilterlist;
\r
170 int videofilterselected;
\r
172 void initH264FilterDatabase();
\r
173 IBaseFilter *getVideoH264Filter();
\r
174 VideoFilterDescList videoH264filterlist;
\r
175 int videoH264filterselected;
\r
176 bool videoH264dtsfix;
\r
177 bool videompeg2dtsfix;
\r
179 int dsInitVideoFilter();
\r
180 IMediaControl* dsmediacontrol;
\r
182 IGraphBuilder* dsgraphbuilder;
\r
183 IMediaSample* cur_audio_media_sample;
\r
184 IMediaSample* cur_video_media_sample;
\r
185 IBaseFilter* dsrenderer;
\r
186 IVMRSurfaceAllocatorNotify9 *dsvmrsurfnotify;
\r
187 IReferenceClock *dsrefclock;
\r
188 IMediaFilter* dsmediafilter;
\r
189 IBasicAudio* dsbasicaudio;
\r
190 REFERENCE_TIME cr_time;
\r
192 DsSourceFilter* sourcefilter;
\r
193 DsAllocator* allocatorvmr;
\r
194 HANDLE filtermutex;
\r
197 bool offsetvideonotset;
\r
198 bool offsetaudionotset;
\r
199 long long startoffset;
\r
200 long long lastrefvideotime;
\r
201 long long lastrefaudiotime;
\r
207 UCHAR pseudotvsize;
\r
208 REFERENCE_TIME lastreftimeRT;
\r
209 ULLONG lastreftimePTS;
\r
210 unsigned int videoposx;
\r
211 unsigned int videoposy;
\r
215 unsigned int vmrdeinterlacing;
\r
216 VideoPresenter currentpresenter;
\r
218 DWORD graphidentifier;
\r