]> git.vomp.tv Git - vompclient.git/blob - dssourcepin.h
Fix for possible crash when removing bar
[vompclient.git] / dssourcepin.h
1 /*
2     Copyright 2004-2006 Marten Richter
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 DSPINFILTER_H
22 #define DSPINFILTER_H
23
24 #include <winsock2.h>
25
26 #include <dshow.h>
27
28
29
30 class DsSourceFilter;
31
32 [uuid("17F931AB-9A87-4c65-B99E-84F5BC5F7B09")]
33 class DsSourcePin: public IPin {
34
35 public:
36   DsSourcePin(DsSourceFilter *pFilter,HRESULT *phr,LPCWSTR pName,bool audio);
37   ~DsSourcePin();
38   BOOL IsConnected() {return (connected!=NULL);};
39   HRESULT getCurrentMediaSample(IMediaSample**ms);
40   HRESULT deliver(IMediaSample * ms);
41   void SetMsToMt(IMediaSample *ms);
42   bool supportsAc3();
43   void SetPinMode(int mode);
44
45   virtual  HRESULT DecideBufferSize(IMemAllocator *pa,ALLOCATOR_PROPERTIES *all_pp);
46
47   HRESULT Inactive();
48   HRESULT Active();
49   HRESULT Run(REFERENCE_TIME reftime);
50   /*IPin*/
51
52   virtual HRESULT STDMETHODCALLTYPE Connect(IPin *pinempf,const AM_MEDIA_TYPE *mtype);
53   virtual HRESULT STDMETHODCALLTYPE ReceiveConnection(IPin *connect,const AM_MEDIA_TYPE *mtype);
54   virtual HRESULT STDMETHODCALLTYPE Disconnect();
55   virtual HRESULT STDMETHODCALLTYPE ConnectedTo(IPin **pin);
56   virtual HRESULT STDMETHODCALLTYPE  ConnectionMediaType(AM_MEDIA_TYPE *mtype);
57   virtual HRESULT STDMETHODCALLTYPE QueryPinInfo(PIN_INFO *info);
58   virtual HRESULT STDMETHODCALLTYPE  QueryDirection(PIN_DIRECTION *dir);
59   virtual HRESULT STDMETHODCALLTYPE QueryId(LPWSTR *id);
60   virtual HRESULT STDMETHODCALLTYPE  QueryAccept(const AM_MEDIA_TYPE *mtype);
61   virtual HRESULT STDMETHODCALLTYPE EnumMediaTypes(IEnumMediaTypes **enuma);
62   virtual HRESULT STDMETHODCALLTYPE QueryInternalConnections(IPin **pin,ULONG *numpin);
63   virtual HRESULT STDMETHODCALLTYPE EndOfStream();
64   virtual HRESULT STDMETHODCALLTYPE NewSegment(REFERENCE_TIME start,REFERENCE_TIME stop,double rate);
65   /* IUnknown */
66   virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID id,void ** object);
67   virtual ULONG STDMETHODCALLTYPE AddRef();
68     virtual ULONG STDMETHODCALLTYPE Release();
69   virtual HRESULT STDMETHODCALLTYPE BeginFlush(){return E_UNEXPECTED;};
70   virtual HRESULT STDMETHODCALLTYPE EndFlush(){return E_UNEXPECTED;};
71   virtual HRESULT GetMediaType(int iPosition, AM_MEDIA_TYPE *pmt);
72
73
74
75 protected:
76   virtual  HRESULT CheckMediaType(const AM_MEDIA_TYPE *pmt);
77   HRESULT GetMediaTypeMpegAudio(int iPosition, AM_MEDIA_TYPE *pmt);
78   HRESULT GetMediaTypeAc3(int iPosition, AM_MEDIA_TYPE *pmt);
79   HRESULT GetMediaTypeMpegVideo(int iPosition, AM_MEDIA_TYPE *pmt);
80
81     int pinmode;
82   bool isaudiopin;
83   DsSourceFilter *m_pFilter;
84   IPin* connected;
85   IMemInputPin* connectedinput;
86   AM_MEDIA_TYPE medtype;
87   IMemAllocator* allocator;
88
89
90
91
92 };
93
94
95
96 #endif
97