]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/atmo/AtmoLiveView.h
enhanced & corrected AtmoLight filter module
[vlc] / modules / video_filter / atmo / AtmoLiveView.h
index 20da086d23e2ddadd65daeef805d683cb1abffe1..9d7f57b4b635e4f3a5c552f2dd480685e70ff8df 100644 (file)
@@ -13,8 +13,6 @@
 #include "AtmoDefs.h"
 
 #if !defined(_ATMO_VLC_PLUGIN_)
-#   include <comdef.h>         
-#   include "AtmoWin_h.h"
 #   include <windows.h>
 #endif
 
@@ -28,32 +26,12 @@ class CAtmoLiveView :  public CThread
 protected:
        virtual DWORD Execute(void);
 
-#if !defined(_ATMO_VLC_PLUGIN_)
-public:
-    STDMETHODIMP setLiveViewSource(enum ComLiveViewSource dwModus);
-    STDMETHODIMP getCurrentLiveViewSource(enum ComLiveViewSource *modus);
-#endif
-
 protected:
     CAtmoDynData *m_pAtmoDynData;
-    CAtmoInput *m_pAtmoInput;
-
-#if !defined(_ATMO_VLC_PLUGIN_)
-    ComLiveViewSource m_LiveViewSource;
-    ComLiveViewSource m_CurrentLiveViewSource;
-    CRITICAL_SECTION m_InputChangeCriticalSection;
-    HANDLE m_InputChangedEvent;
-#endif
 
 public:
     CAtmoLiveView(CAtmoDynData *pAtmoDynData);
     virtual ~CAtmoLiveView(void);
-
-    CAtmoInput *getAtmoInput() { return m_pAtmoInput; }
-
-#if !defined(_ATMO_VLC_PLUGIN_)
-    ComLiveViewSource getLiveViewSource() { return m_CurrentLiveViewSource; }
-#endif
 };
 
 #endif