14 lines
259 B
C++
14 lines
259 B
C++
#include "analyser.h"
|
|
#include <mist/flv_tag.h> //FLV support
|
|
|
|
class AnalyserFLV : public Analyser{
|
|
public:
|
|
AnalyserFLV(Util::Config &conf);
|
|
bool parsePacket();
|
|
static void init(Util::Config &conf);
|
|
|
|
private:
|
|
FLV::Tag flvData;
|
|
long long filter;
|
|
};
|
|
|