Skip to content

Commit e796da3

Browse files
committed
Remove unused variables
Remove unused variables
1 parent f6e61fb commit e796da3

2 files changed

Lines changed: 0 additions & 9 deletions

File tree

avstream/avscamera/DMFT/AvsCameraDMFT.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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 ),

avstream/avscamera/DMFT/AvsCameraDMFT.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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 :
305300
private:
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

0 commit comments

Comments
 (0)