1 |
|
|
/* |
2 |
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> |
3 |
|
|
* Copyright (c) 2014 Clément Bœsch <u pkh me> |
4 |
|
|
* |
5 |
|
|
* This file is part of FFmpeg. |
6 |
|
|
* |
7 |
|
|
* FFmpeg is free software; you can redistribute it and/or |
8 |
|
|
* modify it under the terms of the GNU Lesser General Public |
9 |
|
|
* License as published by the Free Software Foundation; either |
10 |
|
|
* version 2.1 of the License, or (at your option) any later version. |
11 |
|
|
* |
12 |
|
|
* FFmpeg is distributed in the hope that it will be useful, |
13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 |
|
|
* Lesser General Public License for more details. |
16 |
|
|
* |
17 |
|
|
* You should have received a copy of the GNU Lesser General Public |
18 |
|
|
* License along with FFmpeg; if not, write to the Free Software |
19 |
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 |
|
|
*/ |
21 |
|
|
|
22 |
|
|
/** |
23 |
|
|
* @file |
24 |
|
|
* Codec debug viewer filter. |
25 |
|
|
* |
26 |
|
|
* All the MV drawing code from Michael Niedermayer is extracted from |
27 |
|
|
* libavcodec/mpegvideo.c. |
28 |
|
|
* |
29 |
|
|
* TODO: segmentation |
30 |
|
|
*/ |
31 |
|
|
|
32 |
|
|
#include "libavutil/imgutils.h" |
33 |
|
|
#include "libavutil/motion_vector.h" |
34 |
|
|
#include "libavutil/opt.h" |
35 |
|
|
#include "avfilter.h" |
36 |
|
|
#include "qp_table.h" |
37 |
|
|
#include "internal.h" |
38 |
|
|
|
39 |
|
|
#define MV_P_FOR (1<<0) |
40 |
|
|
#define MV_B_FOR (1<<1) |
41 |
|
|
#define MV_B_BACK (1<<2) |
42 |
|
|
#define MV_TYPE_FOR (1<<0) |
43 |
|
|
#define MV_TYPE_BACK (1<<1) |
44 |
|
|
#define FRAME_TYPE_I (1<<0) |
45 |
|
|
#define FRAME_TYPE_P (1<<1) |
46 |
|
|
#define FRAME_TYPE_B (1<<2) |
47 |
|
|
|
48 |
|
|
typedef struct CodecViewContext { |
49 |
|
|
const AVClass *class; |
50 |
|
|
unsigned mv; |
51 |
|
|
unsigned frame_type; |
52 |
|
|
unsigned mv_type; |
53 |
|
|
int hsub, vsub; |
54 |
|
|
int qp; |
55 |
|
|
} CodecViewContext; |
56 |
|
|
|
57 |
|
|
#define OFFSET(x) offsetof(CodecViewContext, x) |
58 |
|
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
59 |
|
|
#define CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
60 |
|
|
|
61 |
|
|
static const AVOption codecview_options[] = { |
62 |
|
|
{ "mv", "set motion vectors to visualize", OFFSET(mv), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, FLAGS, "mv" }, |
63 |
|
|
CONST("pf", "forward predicted MVs of P-frames", MV_P_FOR, "mv"), |
64 |
|
|
CONST("bf", "forward predicted MVs of B-frames", MV_B_FOR, "mv"), |
65 |
|
|
CONST("bb", "backward predicted MVs of B-frames", MV_B_BACK, "mv"), |
66 |
|
|
{ "qp", NULL, OFFSET(qp), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, .flags = FLAGS }, |
67 |
|
|
{ "mv_type", "set motion vectors type", OFFSET(mv_type), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, FLAGS, "mv_type" }, |
68 |
|
|
{ "mvt", "set motion vectors type", OFFSET(mv_type), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, FLAGS, "mv_type" }, |
69 |
|
|
CONST("fp", "forward predicted MVs", MV_TYPE_FOR, "mv_type"), |
70 |
|
|
CONST("bp", "backward predicted MVs", MV_TYPE_BACK, "mv_type"), |
71 |
|
|
{ "frame_type", "set frame types to visualize motion vectors of", OFFSET(frame_type), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, FLAGS, "frame_type" }, |
72 |
|
|
{ "ft", "set frame types to visualize motion vectors of", OFFSET(frame_type), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, FLAGS, "frame_type" }, |
73 |
|
|
CONST("if", "I-frames", FRAME_TYPE_I, "frame_type"), |
74 |
|
|
CONST("pf", "P-frames", FRAME_TYPE_P, "frame_type"), |
75 |
|
|
CONST("bf", "B-frames", FRAME_TYPE_B, "frame_type"), |
76 |
|
|
{ NULL } |
77 |
|
|
}; |
78 |
|
|
|
79 |
|
|
AVFILTER_DEFINE_CLASS(codecview); |
80 |
|
|
|
81 |
|
2 |
static int query_formats(AVFilterContext *ctx) |
82 |
|
|
{ |
83 |
|
|
// TODO: we can probably add way more pixel formats without any other |
84 |
|
|
// changes; anything with 8-bit luma in first plane should be working |
85 |
|
|
static const enum AVPixelFormat pix_fmts[] = {AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE}; |
86 |
|
2 |
AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts); |
87 |
✗✓ |
2 |
if (!fmts_list) |
88 |
|
|
return AVERROR(ENOMEM); |
89 |
|
2 |
return ff_set_common_formats(ctx, fmts_list); |
90 |
|
|
} |
91 |
|
|
|
92 |
|
17331 |
static int clip_line(int *sx, int *sy, int *ex, int *ey, int maxx) |
93 |
|
|
{ |
94 |
✓✓ |
17331 |
if(*sx > *ex) |
95 |
|
5175 |
return clip_line(ex, ey, sx, sy, maxx); |
96 |
|
|
|
97 |
✓✓ |
12156 |
if (*sx < 0) { |
98 |
✗✓ |
9 |
if (*ex < 0) |
99 |
|
|
return 1; |
100 |
|
9 |
*sy = *ey + (*sy - *ey) * (int64_t)*ex / (*ex - *sx); |
101 |
|
9 |
*sx = 0; |
102 |
|
|
} |
103 |
|
|
|
104 |
✗✓ |
12156 |
if (*ex > maxx) { |
105 |
|
|
if (*sx > maxx) |
106 |
|
|
return 1; |
107 |
|
|
*ey = *sy + (*ey - *sy) * (int64_t)(maxx - *sx) / (*ex - *sx); |
108 |
|
|
*ex = maxx; |
109 |
|
|
} |
110 |
|
12156 |
return 0; |
111 |
|
|
} |
112 |
|
|
|
113 |
|
|
/** |
114 |
|
|
* Draw a line from (ex, ey) -> (sx, sy). |
115 |
|
|
* @param w width of the image |
116 |
|
|
* @param h height of the image |
117 |
|
|
* @param stride stride/linesize of the image |
118 |
|
|
* @param color color of the arrow |
119 |
|
|
*/ |
120 |
|
6078 |
static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey, |
121 |
|
|
int w, int h, int stride, int color) |
122 |
|
|
{ |
123 |
|
|
int x, y, fr, f; |
124 |
|
|
|
125 |
✗✓ |
6078 |
if (clip_line(&sx, &sy, &ex, &ey, w - 1)) |
126 |
|
|
return; |
127 |
✗✓ |
6078 |
if (clip_line(&sy, &sx, &ey, &ex, h - 1)) |
128 |
|
|
return; |
129 |
|
|
|
130 |
|
6078 |
sx = av_clip(sx, 0, w - 1); |
131 |
|
6078 |
sy = av_clip(sy, 0, h - 1); |
132 |
|
6078 |
ex = av_clip(ex, 0, w - 1); |
133 |
|
6078 |
ey = av_clip(ey, 0, h - 1); |
134 |
|
|
|
135 |
|
6078 |
buf[sy * stride + sx] += color; |
136 |
|
|
|
137 |
✓✓ |
6078 |
if (FFABS(ex - sx) > FFABS(ey - sy)) { |
138 |
✓✓ |
1182 |
if (sx > ex) { |
139 |
|
887 |
FFSWAP(int, sx, ex); |
140 |
|
887 |
FFSWAP(int, sy, ey); |
141 |
|
|
} |
142 |
|
1182 |
buf += sx + sy * stride; |
143 |
|
1182 |
ex -= sx; |
144 |
|
1182 |
f = ((ey - sy) << 16) / ex; |
145 |
✓✓ |
16943 |
for (x = 0; x <= ex; x++) { |
146 |
|
15761 |
y = (x * f) >> 16; |
147 |
|
15761 |
fr = (x * f) & 0xFFFF; |
148 |
|
15761 |
buf[ y * stride + x] += (color * (0x10000 - fr)) >> 16; |
149 |
✓✓ |
15761 |
if(fr) buf[(y + 1) * stride + x] += (color * fr ) >> 16; |
150 |
|
|
} |
151 |
|
|
} else { |
152 |
✓✓ |
4896 |
if (sy > ey) { |
153 |
|
2168 |
FFSWAP(int, sx, ex); |
154 |
|
2168 |
FFSWAP(int, sy, ey); |
155 |
|
|
} |
156 |
|
4896 |
buf += sx + sy * stride; |
157 |
|
4896 |
ey -= sy; |
158 |
✓✓ |
4896 |
if (ey) |
159 |
|
2647 |
f = ((ex - sx) << 16) / ey; |
160 |
|
|
else |
161 |
|
2249 |
f = 0; |
162 |
✓✓ |
19576 |
for(y= 0; y <= ey; y++){ |
163 |
|
14680 |
x = (y*f) >> 16; |
164 |
|
14680 |
fr = (y*f) & 0xFFFF; |
165 |
|
14680 |
buf[y * stride + x ] += (color * (0x10000 - fr)) >> 16; |
166 |
✓✓ |
14680 |
if(fr) buf[y * stride + x + 1] += (color * fr ) >> 16; |
167 |
|
|
} |
168 |
|
|
} |
169 |
|
|
} |
170 |
|
|
|
171 |
|
|
/** |
172 |
|
|
* Draw an arrow from (ex, ey) -> (sx, sy). |
173 |
|
|
* @param w width of the image |
174 |
|
|
* @param h height of the image |
175 |
|
|
* @param stride stride/linesize of the image |
176 |
|
|
* @param color color of the arrow |
177 |
|
|
*/ |
178 |
|
3560 |
static void draw_arrow(uint8_t *buf, int sx, int sy, int ex, |
179 |
|
|
int ey, int w, int h, int stride, int color, int tail, int direction) |
180 |
|
|
{ |
181 |
|
|
int dx,dy; |
182 |
|
|
|
183 |
✓✓ |
3560 |
if (direction) { |
184 |
|
1164 |
FFSWAP(int, sx, ex); |
185 |
|
1164 |
FFSWAP(int, sy, ey); |
186 |
|
|
} |
187 |
|
|
|
188 |
|
3560 |
sx = av_clip(sx, -100, w + 100); |
189 |
|
3560 |
sy = av_clip(sy, -100, h + 100); |
190 |
|
3560 |
ex = av_clip(ex, -100, w + 100); |
191 |
|
3560 |
ey = av_clip(ey, -100, h + 100); |
192 |
|
|
|
193 |
|
3560 |
dx = ex - sx; |
194 |
|
3560 |
dy = ey - sy; |
195 |
|
|
|
196 |
✓✓ |
3560 |
if (dx * dx + dy * dy > 3 * 3) { |
197 |
|
1259 |
int rx = dx + dy; |
198 |
|
1259 |
int ry = -dx + dy; |
199 |
|
1259 |
int length = sqrt((rx * rx + ry * ry) << 8); |
200 |
|
|
|
201 |
|
|
// FIXME subpixel accuracy |
202 |
✓✓ |
1259 |
rx = ROUNDED_DIV(rx * 3 << 4, length); |
203 |
✓✓ |
1259 |
ry = ROUNDED_DIV(ry * 3 << 4, length); |
204 |
|
|
|
205 |
✗✓ |
1259 |
if (tail) { |
206 |
|
|
rx = -rx; |
207 |
|
|
ry = -ry; |
208 |
|
|
} |
209 |
|
|
|
210 |
|
1259 |
draw_line(buf, sx, sy, sx + rx, sy + ry, w, h, stride, color); |
211 |
|
1259 |
draw_line(buf, sx, sy, sx - ry, sy + rx, w, h, stride, color); |
212 |
|
|
} |
213 |
|
3560 |
draw_line(buf, sx, sy, ex, ey, w, h, stride, color); |
214 |
|
3560 |
} |
215 |
|
|
|
216 |
|
67 |
static int filter_frame(AVFilterLink *inlink, AVFrame *frame) |
217 |
|
|
{ |
218 |
|
67 |
AVFilterContext *ctx = inlink->dst; |
219 |
|
67 |
CodecViewContext *s = ctx->priv; |
220 |
|
67 |
AVFilterLink *outlink = ctx->outputs[0]; |
221 |
|
|
|
222 |
✗✓ |
67 |
if (s->qp) { |
223 |
|
|
int qstride, qp_type, ret; |
224 |
|
|
int8_t *qp_table; |
225 |
|
|
|
226 |
|
|
ret = ff_qp_table_extract(frame, &qp_table, &qstride, NULL, &qp_type); |
227 |
|
|
if (ret < 0) { |
228 |
|
|
av_frame_free(&frame); |
229 |
|
|
return ret; |
230 |
|
|
} |
231 |
|
|
|
232 |
|
|
if (qp_table) { |
233 |
|
|
int x, y; |
234 |
|
|
const int w = AV_CEIL_RSHIFT(frame->width, s->hsub); |
235 |
|
|
const int h = AV_CEIL_RSHIFT(frame->height, s->vsub); |
236 |
|
|
uint8_t *pu = frame->data[1]; |
237 |
|
|
uint8_t *pv = frame->data[2]; |
238 |
|
|
const int lzu = frame->linesize[1]; |
239 |
|
|
const int lzv = frame->linesize[2]; |
240 |
|
|
|
241 |
|
|
for (y = 0; y < h; y++) { |
242 |
|
|
for (x = 0; x < w; x++) { |
243 |
|
|
const int qp = ff_norm_qscale(qp_table[(y >> 3) * qstride + (x >> 3)], qp_type) * 128/31; |
244 |
|
|
pu[x] = pv[x] = qp; |
245 |
|
|
} |
246 |
|
|
pu += lzu; |
247 |
|
|
pv += lzv; |
248 |
|
|
} |
249 |
|
|
} |
250 |
|
|
av_freep(&qp_table); |
251 |
|
|
} |
252 |
|
|
|
253 |
✗✓✗✗
|
67 |
if (s->mv || s->mv_type) { |
254 |
|
67 |
AVFrameSideData *sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS); |
255 |
✓✓ |
67 |
if (sd) { |
256 |
|
|
int i; |
257 |
|
31 |
const AVMotionVector *mvs = (const AVMotionVector *)sd->data; |
258 |
✗✓✗✗
|
31 |
const int is_iframe = (s->frame_type & FRAME_TYPE_I) && frame->pict_type == AV_PICTURE_TYPE_I; |
259 |
✗✓✗✗
|
31 |
const int is_pframe = (s->frame_type & FRAME_TYPE_P) && frame->pict_type == AV_PICTURE_TYPE_P; |
260 |
✗✓✗✗
|
31 |
const int is_bframe = (s->frame_type & FRAME_TYPE_B) && frame->pict_type == AV_PICTURE_TYPE_B; |
261 |
|
|
|
262 |
✓✓ |
3591 |
for (i = 0; i < sd->size / sizeof(*mvs); i++) { |
263 |
|
3560 |
const AVMotionVector *mv = &mvs[i]; |
264 |
|
3560 |
const int direction = mv->source > 0; |
265 |
|
|
|
266 |
✗✓ |
3560 |
if (s->mv_type) { |
267 |
|
|
const int is_fp = direction == 0 && (s->mv_type & MV_TYPE_FOR); |
268 |
|
|
const int is_bp = direction == 1 && (s->mv_type & MV_TYPE_BACK); |
269 |
|
|
|
270 |
|
|
if ((!s->frame_type && (is_fp || is_bp)) || |
271 |
|
|
is_iframe && is_fp || is_iframe && is_bp || |
272 |
|
|
is_pframe && is_fp || |
273 |
|
|
is_bframe && is_fp || is_bframe && is_bp) |
274 |
|
|
draw_arrow(frame->data[0], mv->dst_x, mv->dst_y, mv->src_x, mv->src_y, |
275 |
|
|
frame->width, frame->height, frame->linesize[0], |
276 |
|
|
100, 0, direction); |
277 |
✓✗ |
3560 |
} else if (s->mv) |
278 |
✓✓✓✗ ✓✓✓✓
|
3560 |
if ((direction == 0 && (s->mv & MV_P_FOR) && frame->pict_type == AV_PICTURE_TYPE_P) || |
279 |
✓✗✗✓ ✓✗ |
1936 |
(direction == 0 && (s->mv & MV_B_FOR) && frame->pict_type == AV_PICTURE_TYPE_B) || |
280 |
✓✗✓✗
|
1164 |
(direction == 1 && (s->mv & MV_B_BACK) && frame->pict_type == AV_PICTURE_TYPE_B)) |
281 |
|
3560 |
draw_arrow(frame->data[0], mv->dst_x, mv->dst_y, mv->src_x, mv->src_y, |
282 |
|
3560 |
frame->width, frame->height, frame->linesize[0], |
283 |
|
|
100, 0, direction); |
284 |
|
|
} |
285 |
|
|
} |
286 |
|
|
} |
287 |
|
|
|
288 |
|
67 |
return ff_filter_frame(outlink, frame); |
289 |
|
|
} |
290 |
|
|
|
291 |
|
2 |
static int config_input(AVFilterLink *inlink) |
292 |
|
|
{ |
293 |
|
2 |
AVFilterContext *ctx = inlink->dst; |
294 |
|
2 |
CodecViewContext *s = ctx->priv; |
295 |
|
2 |
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); |
296 |
|
|
|
297 |
|
2 |
s->hsub = desc->log2_chroma_w; |
298 |
|
2 |
s->vsub = desc->log2_chroma_h; |
299 |
|
2 |
return 0; |
300 |
|
|
} |
301 |
|
|
|
302 |
|
|
static const AVFilterPad codecview_inputs[] = { |
303 |
|
|
{ |
304 |
|
|
.name = "default", |
305 |
|
|
.type = AVMEDIA_TYPE_VIDEO, |
306 |
|
|
.filter_frame = filter_frame, |
307 |
|
|
.config_props = config_input, |
308 |
|
|
.needs_writable = 1, |
309 |
|
|
}, |
310 |
|
|
{ NULL } |
311 |
|
|
}; |
312 |
|
|
|
313 |
|
|
static const AVFilterPad codecview_outputs[] = { |
314 |
|
|
{ |
315 |
|
|
.name = "default", |
316 |
|
|
.type = AVMEDIA_TYPE_VIDEO, |
317 |
|
|
}, |
318 |
|
|
{ NULL } |
319 |
|
|
}; |
320 |
|
|
|
321 |
|
|
AVFilter ff_vf_codecview = { |
322 |
|
|
.name = "codecview", |
323 |
|
|
.description = NULL_IF_CONFIG_SMALL("Visualize information about some codecs."), |
324 |
|
|
.priv_size = sizeof(CodecViewContext), |
325 |
|
|
.query_formats = query_formats, |
326 |
|
|
.inputs = codecview_inputs, |
327 |
|
|
.outputs = codecview_outputs, |
328 |
|
|
.priv_class = &codecview_class, |
329 |
|
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, |
330 |
|
|
}; |