⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atmooutputfilter.h

📁 VLC Player Source Code
💻 H
字号:
/* * AtmoOutputFilter.h: Post Processor for the color data retrieved from a CAtmoInput * * mostly 1:1 from Linux-src "filter.c" copied * * See the README.txt file for copyright information and how to reach the author(s). * * $Id$ */#ifndef _AtmoOutputFilter_h_#define _AtmoOutputFilter_h_#include "AtmoConfig.h"#include "AtmoDefs.h"class CAtmoOutputFilter{private:  tColorPacket filter_input;  // input of the filter  tColorPacket filter_output; // output of the filter  void PercentFilter(ATMO_BOOL init);  void MeanFilter(ATMO_BOOL init);  CAtmoConfig *m_pAtmoConfig;public:public:    CAtmoOutputFilter(CAtmoConfig *atmoConfig);    virtual ~CAtmoOutputFilter(void);    void ResetFilter(void);    tColorPacket Filtering(tColorPacket ColorPacket);};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -