File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,11 +14,9 @@ CMultipinMft::CMultipinMft()
1414: m_nRefCount( 0 ),
1515 m_InputPinCount( 0 ),
1616 m_OutputPinCount( 0 ),
17- m_CustomPinCount( 0 ),
1817 m_StreamingState( DeviceStreamState_Disabled ),
1918 m_OutPins(),
2019 m_InPins(),
21- m_PhotoModeIsPhotoSequence( FALSE ),
2220 m_critSec(),
2321 m_spDeviceManagerUnk( nullptr ),
2422 m_spSourceTransform( nullptr ),
Original file line number Diff line number Diff line change @@ -226,11 +226,6 @@ class CMultipinMft :
226226
227227 static HRESULT CreateInstance (
228228 REFIID iid, void **ppMFT);
229-
230- __inline BOOL isPhotoModePhotoSequence ()
231- {
232- return m_PhotoModeIsPhotoSequence;
233- }
234229
235230 __inline DWORD GetQueueId ()
236231 {
@@ -305,11 +300,9 @@ class CMultipinMft :
305300private:
306301 ULONG m_InputPinCount;
307302 ULONG m_OutputPinCount;
308- ULONG m_CustomPinCount;
309303 DeviceStreamState m_StreamingState;
310304 CBasePinArray m_OutPins;
311305 CBasePinArray m_InPins;
312- BOOL m_PhotoModeIsPhotoSequence; // used to store if the filter is in photo sequence or not
313306 long m_nRefCount; // Reference count
314307 CCritSec m_critSec; // Control lock.. taken only durign state change operations
315308 ComPtr <IUnknown> m_spDeviceManagerUnk; // D3D Manager set, when MFT_MESSAGE_SET_D3D_MANAGER is called through ProcessMessage
You can’t perform that action at this time.
0 commit comments