#ifndef ENCODER_H #define ENCODER_H #include class Encoder { public: Encoder(); virtual ~Encoder(); protected: private: MFXVideoSession *mfxVideoSession; MFXVideoENCODE *mfxVideoENCODE; }; #endif // ENCODER_H