MythTV master
ClassicSceneChangeDetector.h
Go to the documentation of this file.
1#ifndef CLASSICSCENECHANGEDETECTOR_H
2#define CLASSICSCENECHANGEDETECTOR_H
3
5
6class Histogram;
7
9{
10 public:
11 ClassicSceneChangeDetector(unsigned int width, unsigned int height,
12 unsigned int commdetectborder, unsigned int xspacing,
13 unsigned int yspacing);
14 virtual void deleteLater(void);
15
16 void processFrame(MythVideoFrame* frame) override; // SceneChangeDetectorBase
17
18 private:
20
21 private:
24 unsigned int m_frameNumber {0};
26 unsigned int m_xspacing, m_yspacing;
27 unsigned int m_commdetectborder;
28};
29
30#endif // CLASSICSCENECHANGEDETECTOR_H
31
32/* vim: set expandtab tabstop=4 shiftwidth=4: */
ClassicSceneChangeDetector(unsigned int width, unsigned int height, unsigned int commdetectborder, unsigned int xspacing, unsigned int yspacing)
void processFrame(MythVideoFrame *frame) override