diff options
| author | Gerrit Swaneveld <[email protected]> | 2026-04-30 13:43:29 -0700 |
|---|---|---|
| committer | Gerrit Swaneveld <[email protected]> | 2026-04-30 13:43:29 -0700 |
| commit | e796da3a976f586b06422d9ea3bfdee0dfd1891c (patch) | |
| tree | d95a214a37561cbf9466849b663e605efcc01fcc | |
| parent | f6e61fb6071d5bb63bc4cc9aab4b939b5bf978c4 (diff) | |
Remove unused variables
Remove unused variables
| -rw-r--r-- | avstream/avscamera/DMFT/AvsCameraDMFT.cpp | 2 | ||||
| -rw-r--r-- | avstream/avscamera/DMFT/AvsCameraDMFT.h | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/avstream/avscamera/DMFT/AvsCameraDMFT.cpp b/avstream/avscamera/DMFT/AvsCameraDMFT.cpp index 524d6b92..01f915be 100644 --- a/avstream/avscamera/DMFT/AvsCameraDMFT.cpp +++ b/avstream/avscamera/DMFT/AvsCameraDMFT.cpp @@ -14,11 +14,9 @@ CMultipinMft::CMultipinMft() : m_nRefCount( 0 ), m_InputPinCount( 0 ), m_OutputPinCount( 0 ), - m_CustomPinCount( 0 ), m_StreamingState( DeviceStreamState_Disabled ), m_OutPins(), m_InPins(), - m_PhotoModeIsPhotoSequence( FALSE ), m_critSec(), m_spDeviceManagerUnk( nullptr ), m_spSourceTransform( nullptr ), diff --git a/avstream/avscamera/DMFT/AvsCameraDMFT.h b/avstream/avscamera/DMFT/AvsCameraDMFT.h index 27b8607b..d5c26f5a 100644 --- a/avstream/avscamera/DMFT/AvsCameraDMFT.h +++ b/avstream/avscamera/DMFT/AvsCameraDMFT.h @@ -226,11 +226,6 @@ public: static HRESULT CreateInstance( REFIID iid, void **ppMFT); - - __inline BOOL isPhotoModePhotoSequence() - { - return m_PhotoModeIsPhotoSequence; - } __inline DWORD GetQueueId() { @@ -305,11 +300,9 @@ protected: private: ULONG m_InputPinCount; ULONG m_OutputPinCount; - ULONG m_CustomPinCount; DeviceStreamState m_StreamingState; CBasePinArray m_OutPins; CBasePinArray m_InPins; - BOOL m_PhotoModeIsPhotoSequence; // used to store if the filter is in photo sequence or not long m_nRefCount; // Reference count CCritSec m_critSec; // Control lock.. taken only durign state change operations ComPtr <IUnknown> m_spDeviceManagerUnk; // D3D Manager set, when MFT_MESSAGE_SET_D3D_MANAGER is called through ProcessMessage |
