#ifndef ENCODEVIDEOMANAGER_H
|
#define ENCODEVIDEOMANAGER_H
|
#include <basic/pipe/TimerElement.h>
|
#include "EncodeVideo.h"
|
|
class EncodeVideoManager: public TimerElement
|
{
|
public:
|
EncodeVideoManager();
|
~EncodeVideoManager();
|
private:
|
virtual void timerFunc();
|
|
private:
|
HiredisTool m_hiredisTool;
|
std::vector<EncodeVideo*> m_newEncodeVideoVec;
|
|
};
|
|
#endif // NEWENCODEVIDEOMANAGER_H
|