1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
/*
* video.h: A program for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __video_h_
#define __video_h_
#include "global.h"
#define LOGO_MAXHEIGHT 250
#define LOGO_MAXWIDTH 480
#define LOGO_DEFHEIGHT 100
#define LOGO_DEFWIDTH 192
#define LOGO_DEFHDWIDTH 288
#define LOGO_DEFHDHEIGHT 180
#define LOGO_VMAXCOUNT 3 // count of IFrames for detection of "logo visible"
#define LOGO_IMAXCOUNT 5 // count of IFrames for detection of "logo invisible"
#define LOGO_VMARK 0.5 // percantage of pixels for visible
#define LOGO_IMARK 0.15 // percentage of pixels for invisible
enum
{
LOGO_ERROR=-3,
LOGO_UNINITIALIZED=-2,
LOGO_INVISIBLE=-1,
LOGO_NOCHANGE=0,
LOGO_VISIBLE=1
};
enum
{
HBORDER_UNINITIALIZED=-2,
HBORDER_INVISIBLE=-1,
HBORDER_VISIBLE=1
};
enum
{
VBORDER_UNINITIALIZED=-2,
VBORDER_INVISIBLE=-1,
VBORDER_VISIBLE=1
};
#define MINBORDERSECS 60
enum
{
OV_BEFORE=0,
OV_AFTER=1
};
class cMarkAdOverlap
{
private:
MarkAdContext *macontext;
typedef int simpleHistogram[256];
typedef struct
{
int framenumber;
simpleHistogram histogram;
} histbuffer;
histbuffer *histbuf[2];
int histcnt[2];
int histframes[2];
int lastframenumber;
MarkAdPos result;
int similarCutOff;
int similarMaxCnt;
bool areSimilar(simpleHistogram &hist1, simpleHistogram &hist2);
void getHistogram(simpleHistogram &dest);
MarkAdPos *Detect();
void Clear();
public:
cMarkAdOverlap(MarkAdContext *maContext);
~cMarkAdOverlap();
MarkAdPos *Process(int FrameNumber, int Frames, bool BeforeAd, bool H264);
};
class cMarkAdLogo
{
private:
enum
{
TOP_LEFT,
TOP_RIGHT,
BOTTOM_LEFT,
BOTTOM_RIGHT
};
int LOGOHEIGHT; // max. 140
int LOGOWIDTH; // 192-288
#define MAXPIXEL LOGO_MAXWIDTH*LOGO_MAXHEIGHT
struct areaT
{
#ifdef VDRDEBUG
uchar source[4][MAXPIXEL]; // original picture
#endif
uchar sobel[4][MAXPIXEL]; // monochrome picture with edges (after sobel)
uchar mask[4][MAXPIXEL]; // monochrome mask of logo
uchar result[4][MAXPIXEL]; // result of sobel + mask
int rpixel[4]; // black pixel in result
int mpixel[4]; // black pixel in mask
int status; // status = LOGO on, off, uninitialized
int framenumber; // start/stop frame
int counter; // how many logo on, offs detected?
int corner; // which corner
int intensity; // intensity (higher -> brighter)
MarkAdAspectRatio aspectratio; // aspectratio
bool valid[4]; // logo mask valid?
} area;
int GX[3][3];
int GY[3][3];
MarkAdContext *macontext;
bool pixfmt_info;
int SobelPlane(int plane); // do sobel operation on plane
int Detect(int framenumber, int *logoframenumber); // ret 1 = logo, 0 = unknown, -1 = no logo
int Load(const char *directory, char *file, int plane);
void Save(int framenumber, uchar picture[4][MAXPIXEL], int plane);
public:
cMarkAdLogo(MarkAdContext *maContext);
int Process(int FrameNumber, int *LogoFrameNumber);
int Status()
{
return area.status;
}
void SetStatusLogoInvisible()
{
if (area.status==LOGO_VISIBLE)
area.status=LOGO_INVISIBLE;
}
void SetStatusUninitialized()
{
if (area.status!=LOGO_UNINITIALIZED)
area.status=LOGO_UNINITIALIZED;
}
void Clear();
};
class cMarkAdBlackBordersHoriz
{
private:
int borderstatus;
int borderframenumber;
MarkAdContext *macontext;
public:
cMarkAdBlackBordersHoriz(MarkAdContext *maContext);
int Process(int FrameNumber,int *BorderFrameNumber);
int Status()
{
return borderstatus;
}
void SetStatusBorderInvisible() {
borderstatus=HBORDER_INVISIBLE;
borderframenumber=-1;
}
void Clear();
};
class cMarkAdBlackBordersVert
{
private:
int borderstatus;
int borderframenumber;
MarkAdContext *macontext;
public:
cMarkAdBlackBordersVert(MarkAdContext *maContext);
int Process(int FrameNumber,int *BorderFrameNumber);
int Status()
{
return borderstatus;
}
void SetStatusBorderInvisible() {
borderstatus=VBORDER_INVISIBLE;
borderframenumber=-1;
}
void Clear();
};
class cMarkAdVideo
{
private:
MarkAdContext *macontext;
MarkAdMarks marks;
MarkAdAspectRatio aspectratio;
cMarkAdBlackBordersHoriz *hborder;
cMarkAdBlackBordersVert *vborder;
cMarkAdLogo *logo;
cMarkAdOverlap *overlap;
void resetmarks();
bool addmark(int type, int position, MarkAdAspectRatio *before=NULL,
MarkAdAspectRatio *after=NULL);
bool aspectratiochange(MarkAdAspectRatio &a, MarkAdAspectRatio &b, bool &start);
int framelast;
int framebeforelast;
public:
cMarkAdVideo(MarkAdContext *maContext);
~cMarkAdVideo();
MarkAdPos *ProcessOverlap(int FrameNumber, int Frames, bool BeforeAd, bool H264);
MarkAdMarks *Process(int FrameNumber, int FrameNumberNext);
void Clear();
};
#endif
|