FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavfilter/vf_spp.c
Date: 2024-11-20 23:03:26
Exec Total Coverage
Lines: 142 207 68.6%
Functions: 9 13 69.2%
Branches: 67 141 47.5%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
3 * Copyright (c) 2013 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 modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (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
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 /**
23 * @file
24 * Simple post processing filter
25 *
26 * This implementation is based on an algorithm described in
27 * "Aria Nosratinia Embedded Post-Processing for
28 * Enhancement of Compressed Images (1999)"
29 *
30 * Originally written by Michael Niedermayer for the MPlayer project, and
31 * ported by Clément Bœsch for FFmpeg.
32 */
33
34 #include "libavutil/emms.h"
35 #include "libavutil/imgutils.h"
36 #include "libavutil/mem.h"
37 #include "libavutil/mem_internal.h"
38 #include "libavutil/opt.h"
39 #include "libavutil/pixdesc.h"
40
41 #include "filters.h"
42 #include "qp_table.h"
43 #include "vf_spp.h"
44 #include "video.h"
45
46 enum mode {
47 MODE_HARD,
48 MODE_SOFT,
49 NB_MODES
50 };
51
52 static const AVClass *child_class_iterate(void **iter)
53 {
54 const AVClass *c = *iter ? NULL : avcodec_dct_get_class();
55 *iter = (void*)(uintptr_t)c;
56 return c;
57 }
58
59 4 static void *child_next(void *obj, void *prev)
60 {
61 4 SPPContext *s = obj;
62
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
4 return prev ? NULL : s->dct;
63 }
64
65 #define OFFSET(x) offsetof(SPPContext, x)
66 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
67 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
68 static const AVOption spp_options[] = {
69 { "quality", "set quality", OFFSET(log2_count), AV_OPT_TYPE_INT, {.i64 = 3}, 0, MAX_LEVEL, TFLAGS },
70 { "qp", "force a constant quantizer parameter", OFFSET(qp), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 63, FLAGS },
71 { "mode", "set thresholding mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64 = MODE_HARD}, 0, NB_MODES - 1, FLAGS, .unit = "mode" },
72 { "hard", "hard thresholding", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_HARD}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" },
73 { "soft", "soft thresholding", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_SOFT}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" },
74 { "use_bframe_qp", "use B-frames' QP", OFFSET(use_bframe_qp), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, FLAGS },
75 { NULL }
76 };
77
78 static const AVClass spp_class = {
79 .class_name = "spp",
80 .item_name = av_default_item_name,
81 .option = spp_options,
82 .version = LIBAVUTIL_VERSION_INT,
83 .category = AV_CLASS_CATEGORY_FILTER,
84 .child_class_iterate = child_class_iterate,
85 .child_next = child_next,
86 };
87
88 // XXX: share between filters?
89 DECLARE_ALIGNED(8, static const uint8_t, ldither)[8][8] = {
90 { 0, 48, 12, 60, 3, 51, 15, 63 },
91 { 32, 16, 44, 28, 35, 19, 47, 31 },
92 { 8, 56, 4, 52, 11, 59, 7, 55 },
93 { 40, 24, 36, 20, 43, 27, 39, 23 },
94 { 2, 50, 14, 62, 1, 49, 13, 61 },
95 { 34, 18, 46, 30, 33, 17, 45, 29 },
96 { 10, 58, 6, 54, 9, 57, 5, 53 },
97 { 42, 26, 38, 22, 41, 25, 37, 21 },
98 };
99
100 static const uint8_t offset[128][2] = {
101 {0,0}, // unused
102 {0,0},
103 {0,0}, {4,4}, // quality = 1
104 {0,0}, {2,2}, {6,4}, {4,6}, // quality = 2
105 {0,0}, {5,1}, {2,2}, {7,3}, {4,4}, {1,5}, {6,6}, {3,7}, // quality = 3
106
107 {0,0}, {4,0}, {1,1}, {5,1}, {3,2}, {7,2}, {2,3}, {6,3}, // quality = 4
108 {0,4}, {4,4}, {1,5}, {5,5}, {3,6}, {7,6}, {2,7}, {6,7},
109
110 {0,0}, {0,2}, {0,4}, {0,6}, {1,1}, {1,3}, {1,5}, {1,7}, // quality = 5
111 {2,0}, {2,2}, {2,4}, {2,6}, {3,1}, {3,3}, {3,5}, {3,7},
112 {4,0}, {4,2}, {4,4}, {4,6}, {5,1}, {5,3}, {5,5}, {5,7},
113 {6,0}, {6,2}, {6,4}, {6,6}, {7,1}, {7,3}, {7,5}, {7,7},
114
115 {0,0}, {4,4}, {0,4}, {4,0}, {2,2}, {6,6}, {2,6}, {6,2}, // quality = 6
116 {0,2}, {4,6}, {0,6}, {4,2}, {2,0}, {6,4}, {2,4}, {6,0},
117 {1,1}, {5,5}, {1,5}, {5,1}, {3,3}, {7,7}, {3,7}, {7,3},
118 {1,3}, {5,7}, {1,7}, {5,3}, {3,1}, {7,5}, {3,5}, {7,1},
119 {0,1}, {4,5}, {0,5}, {4,1}, {2,3}, {6,7}, {2,7}, {6,3},
120 {0,3}, {4,7}, {0,7}, {4,3}, {2,1}, {6,5}, {2,5}, {6,1},
121 {1,0}, {5,4}, {1,4}, {5,0}, {3,2}, {7,6}, {3,6}, {7,2},
122 {1,2}, {5,6}, {1,6}, {5,2}, {3,0}, {7,4}, {3,4}, {7,0},
123 };
124
125 101560 static void hardthresh_c(int16_t dst[64], const int16_t src[64],
126 int qp, const uint8_t *permutation)
127 {
128 int i;
129 101560 int bias = 0; // FIXME
130
131 101560 unsigned threshold1 = qp * ((1<<4) - bias) - 1;
132 101560 unsigned threshold2 = threshold1 << 1;
133
134 101560 memset(dst, 0, 64 * sizeof(dst[0]));
135 101560 dst[0] = (src[0] + 4) >> 3;
136
137
2/2
✓ Branch 0 taken 6398280 times.
✓ Branch 1 taken 101560 times.
6499840 for (i = 1; i < 64; i++) {
138 6398280 int level = src[i];
139
2/2
✓ Branch 0 taken 2694078 times.
✓ Branch 1 taken 3704202 times.
6398280 if (((unsigned)(level + threshold1)) > threshold2) {
140 2694078 const int j = permutation[i];
141 2694078 dst[j] = (level + 4) >> 3;
142 }
143 }
144 101560 }
145
146 static void softthresh_c(int16_t dst[64], const int16_t src[64],
147 int qp, const uint8_t *permutation)
148 {
149 int i;
150 int bias = 0; //FIXME
151
152 unsigned threshold1 = qp * ((1<<4) - bias) - 1;
153 unsigned threshold2 = threshold1 << 1;
154
155 memset(dst, 0, 64 * sizeof(dst[0]));
156 dst[0] = (src[0] + 4) >> 3;
157
158 for (i = 1; i < 64; i++) {
159 int level = src[i];
160 if (((unsigned)(level + threshold1)) > threshold2) {
161 const int j = permutation[i];
162 if (level > 0) dst[j] = (level - threshold1 + 4) >> 3;
163 else dst[j] = (level + threshold1 + 4) >> 3;
164 }
165 }
166 }
167
168 360 static void store_slice_c(uint8_t *dst, const int16_t *src,
169 int dst_linesize, int src_linesize,
170 int width, int height, int log2_scale,
171 const uint8_t dither[8][8])
172 {
173 int y, x;
174
175 #define STORE(pos) do { \
176 temp = (src[x + y*src_linesize + pos] * (1 << log2_scale) + d[pos]) >> 6;\
177 if (temp & 0x100) \
178 temp = ~(temp >> 31); \
179 dst[x + y*dst_linesize + pos] = temp; \
180 } while (0)
181
182
2/2
✓ Branch 0 taken 2880 times.
✓ Branch 1 taken 360 times.
3240 for (y = 0; y < height; y++) {
183 2880 const uint8_t *d = dither[y];
184
2/2
✓ Branch 0 taken 95040 times.
✓ Branch 1 taken 2880 times.
97920 for (x = 0; x < width; x += 8) {
185 int temp;
186
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 95040 times.
95040 STORE(0);
187
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 95038 times.
95040 STORE(1);
188
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 95040 times.
95040 STORE(2);
189
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 95040 times.
95040 STORE(3);
190
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 95040 times.
95040 STORE(4);
191
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 95040 times.
95040 STORE(5);
192
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 95039 times.
95040 STORE(6);
193
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 95040 times.
95040 STORE(7);
194 }
195 }
196 360 }
197
198 static void store_slice16_c(uint16_t *dst, const int16_t *src,
199 int dst_linesize, int src_linesize,
200 int width, int height, int log2_scale,
201 const uint8_t dither[8][8], int depth)
202 {
203 int y, x;
204 unsigned int mask = -1<<depth;
205
206 #define STORE16(pos) do { \
207 temp = (src[x + y*src_linesize + pos] * (1 << log2_scale) + (d[pos]>>1)) >> 5; \
208 if (temp & mask ) \
209 temp = ~(temp >> 31); \
210 dst[x + y*dst_linesize + pos] = temp; \
211 } while (0)
212
213 for (y = 0; y < height; y++) {
214 const uint8_t *d = dither[y];
215 for (x = 0; x < width; x += 8) {
216 int temp;
217 STORE16(0);
218 STORE16(1);
219 STORE16(2);
220 STORE16(3);
221 STORE16(4);
222 STORE16(5);
223 STORE16(6);
224 STORE16(7);
225 }
226 }
227 }
228
229 101560 static inline void add_block(uint16_t *dst, int linesize, const int16_t block[64])
230 {
231 int y;
232
233
2/2
✓ Branch 0 taken 812480 times.
✓ Branch 1 taken 101560 times.
914040 for (y = 0; y < 8; y++) {
234 812480 dst[0 + y*linesize] += block[0 + y*8];
235 812480 dst[1 + y*linesize] += block[1 + y*8];
236 812480 dst[2 + y*linesize] += block[2 + y*8];
237 812480 dst[3 + y*linesize] += block[3 + y*8];
238 812480 dst[4 + y*linesize] += block[4 + y*8];
239 812480 dst[5 + y*linesize] += block[5 + y*8];
240 812480 dst[6 + y*linesize] += block[6 + y*8];
241 812480 dst[7 + y*linesize] += block[7 + y*8];
242 }
243 101560 }
244
245 15 static void filter(SPPContext *p, uint8_t *dst, uint8_t *src,
246 int dst_linesize, int src_linesize, int width, int height,
247 const uint8_t *qp_table, int qp_stride, int is_luma, int depth)
248 {
249 int x, y, i;
250 15 const int count = 1 << p->log2_count;
251
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 10 times.
15 const int linesize = is_luma ? p->temp_linesize : FFALIGN(width+16, 16);
252 DECLARE_ALIGNED(16, uint64_t, block_align)[32];
253 15 int16_t *block = (int16_t *)block_align;
254 15 int16_t *block2 = (int16_t *)(block_align + 16);
255 15 uint16_t *psrc16 = (uint16_t*)p->src;
256 15 const int sample_bytes = (depth+7) / 8;
257
258
2/2
✓ Branch 0 taken 2880 times.
✓ Branch 1 taken 15 times.
2895 for (y = 0; y < height; y++) {
259 2880 int index = 8 + 8*linesize + y*linesize;
260 2880 memcpy(p->src + index*sample_bytes, src + y*src_linesize, width*sample_bytes);
261
1/2
✓ Branch 0 taken 2880 times.
✗ Branch 1 not taken.
2880 if (sample_bytes == 1) {
262
2/2
✓ Branch 0 taken 23040 times.
✓ Branch 1 taken 2880 times.
25920 for (x = 0; x < 8; x++) {
263 23040 p->src[index - x - 1] = p->src[index + x ];
264 23040 p->src[index + width + x ] = p->src[index + width - x - 1];
265 }
266 } else {
267 for (x = 0; x < 8; x++) {
268 psrc16[index - x - 1] = psrc16[index + x ];
269 psrc16[index + width + x ] = psrc16[index + width - x - 1];
270 }
271 }
272 }
273
2/2
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 15 times.
135 for (y = 0; y < 8; y++) {
274 120 memcpy(p->src + ( 7-y)*linesize * sample_bytes, p->src + ( y+8)*linesize * sample_bytes, linesize * sample_bytes);
275 120 memcpy(p->src + (height+8+y)*linesize * sample_bytes, p->src + (height-y+7)*linesize * sample_bytes, linesize * sample_bytes);
276 }
277
278
2/2
✓ Branch 0 taken 375 times.
✓ Branch 1 taken 15 times.
390 for (y = 0; y < height + 8; y += 8) {
279 375 memset(p->temp + (8 + y) * linesize, 0, 8 * linesize * sizeof(*p->temp));
280
2/2
✓ Branch 0 taken 12695 times.
✓ Branch 1 taken 375 times.
13070 for (x = 0; x < width + 8; x += 8) {
281 int qp;
282
283
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 12695 times.
12695 if (p->qp) {
284 qp = p->qp;
285 } else{
286 12695 const int qps = 3 + is_luma;
287
4/4
✓ Branch 0 taken 375 times.
✓ Branch 1 taken 12320 times.
✓ Branch 2 taken 455 times.
✓ Branch 3 taken 12240 times.
12695 qp = qp_table[(FFMIN(x, width - 1) >> qps) + (FFMIN(y, height - 1) >> qps) * qp_stride];
288
1/2
✓ Branch 1 taken 12695 times.
✗ Branch 2 not taken.
12695 qp = FFMAX(1, ff_norm_qscale(qp, p->qscale_type));
289 }
290
2/2
✓ Branch 0 taken 101560 times.
✓ Branch 1 taken 12695 times.
114255 for (i = 0; i < count; i++) {
291 101560 const int x1 = x + offset[i + count][0];
292 101560 const int y1 = y + offset[i + count][1];
293 101560 const int index = x1 + y1*linesize;
294 101560 p->dct->get_pixels_unaligned(block, p->src + sample_bytes*index, sample_bytes*linesize);
295 101560 p->dct->fdct(block);
296 101560 p->requantize(block2, block, qp, p->dct->idct_permutation);
297 101560 p->dct->idct(block2);
298 101560 add_block(p->temp + index, linesize, block2);
299 }
300 }
301
2/2
✓ Branch 0 taken 360 times.
✓ Branch 1 taken 15 times.
375 if (y) {
302
1/2
✓ Branch 0 taken 360 times.
✗ Branch 1 not taken.
360 if (sample_bytes == 1) {
303 360 p->store_slice(dst + (y - 8) * dst_linesize, p->temp + 8 + y*linesize,
304 dst_linesize, linesize, width,
305 360 FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count,
306 ldither);
307 } else {
308 store_slice16_c((uint16_t*)(dst + (y - 8) * dst_linesize), p->temp + 8 + y*linesize,
309 dst_linesize/2, linesize, width,
310 FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count,
311 ldither, depth);
312 }
313 }
314 }
315 15 }
316
317 static const enum AVPixelFormat pix_fmts[] = {
318 AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
319 AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
320 AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
321 AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
322 AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
323 AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV422P10,
324 AV_PIX_FMT_YUV420P10,
325 AV_PIX_FMT_YUV444P9, AV_PIX_FMT_YUV422P9,
326 AV_PIX_FMT_YUV420P9,
327 AV_PIX_FMT_GRAY8,
328 AV_PIX_FMT_GBRP,
329 AV_PIX_FMT_GBRP9,
330 AV_PIX_FMT_GBRP10,
331 AV_PIX_FMT_NONE
332 };
333
334 1 static int config_input(AVFilterLink *inlink)
335 {
336 1 SPPContext *s = inlink->dst->priv;
337 1 const int h = FFALIGN(inlink->h + 16, 16);
338 1 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
339 1 const int bps = desc->comp[0].depth;
340
341 1 s->store_slice = store_slice_c;
342
1/3
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
1 switch (s->mode) {
343 1 case MODE_HARD: s->requantize = hardthresh_c; break;
344 case MODE_SOFT: s->requantize = softthresh_c; break;
345 }
346
347 1 av_opt_set_int(s->dct, "bits_per_sample", bps, 0);
348 1 avcodec_dct_init(s->dct);
349
350 #if ARCH_X86
351 1 ff_spp_init_x86(s);
352 #endif
353
354 1 s->hsub = desc->log2_chroma_w;
355 1 s->vsub = desc->log2_chroma_h;
356 1 s->temp_linesize = FFALIGN(inlink->w + 16, 16);
357 1 s->temp = av_malloc_array(s->temp_linesize, h * sizeof(*s->temp));
358 1 s->src = av_malloc_array(s->temp_linesize, h * sizeof(*s->src) * 2);
359
360
2/4
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 1 times.
1 if (!s->temp || !s->src)
361 return AVERROR(ENOMEM);
362 1 return 0;
363 }
364
365 5 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
366 {
367 5 AVFilterContext *ctx = inlink->dst;
368 5 SPPContext *s = ctx->priv;
369 5 AVFilterLink *outlink = ctx->outputs[0];
370 5 AVFrame *out = in;
371 5 int qp_stride = 0;
372 5 int8_t *qp_table = NULL;
373 5 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
374 5 const int depth = desc->comp[0].depth;
375 5 int ret = 0;
376
377 /* if we are not in a constant user quantizer mode and we don't want to use
378 * the quantizers from the B-frames (B-frames often have a higher QP), we
379 * need to save the qp table from the last non B-frame; this is what the
380 * following code block does */
381
4/6
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 5 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
✓ Branch 5 taken 3 times.
5 if (!s->qp && (s->use_bframe_qp || in->pict_type != AV_PICTURE_TYPE_B)) {
382 2 ret = ff_qp_table_extract(in, &qp_table, &qp_stride, NULL, &s->qscale_type);
383
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (ret < 0) {
384 av_frame_free(&in);
385 return ret;
386 }
387
388
2/4
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
2 if (!s->use_bframe_qp && in->pict_type != AV_PICTURE_TYPE_B) {
389 2 av_freep(&s->non_b_qp_table);
390 2 s->non_b_qp_table = qp_table;
391 2 s->non_b_qp_stride = qp_stride;
392 }
393 }
394
395
2/4
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 5 times.
✗ Branch 3 not taken.
5 if (s->log2_count && !ctx->is_disabled) {
396
2/4
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 5 times.
✗ Branch 3 not taken.
5 if (!s->use_bframe_qp && s->non_b_qp_table) {
397 5 qp_table = s->non_b_qp_table;
398 5 qp_stride = s->non_b_qp_stride;
399 }
400
401
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
5 if (qp_table || s->qp) {
402 5 const int cw = AV_CEIL_RSHIFT(inlink->w, s->hsub);
403 5 const int ch = AV_CEIL_RSHIFT(inlink->h, s->vsub);
404
405 /* get a new frame if in-place is not possible or if the dimensions
406 * are not multiple of 8 */
407
3/6
✓ Branch 1 taken 5 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 5 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✓ Branch 6 taken 5 times.
5 if (!av_frame_is_writable(in) || (inlink->w & 7) || (inlink->h & 7)) {
408 const int aligned_w = FFALIGN(inlink->w, 8);
409 const int aligned_h = FFALIGN(inlink->h, 8);
410
411 out = ff_get_video_buffer(outlink, aligned_w, aligned_h);
412 if (!out) {
413 av_frame_free(&in);
414 ret = AVERROR(ENOMEM);
415 goto finish;
416 }
417 av_frame_copy_props(out, in);
418 out->width = in->width;
419 out->height = in->height;
420 }
421
422 5 filter(s, out->data[0], in->data[0], out->linesize[0], in->linesize[0], inlink->w, inlink->h, qp_table, qp_stride, 1, depth);
423
424
1/2
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
5 if (out->data[2]) {
425 5 filter(s, out->data[1], in->data[1], out->linesize[1], in->linesize[1], cw, ch, qp_table, qp_stride, 0, depth);
426 5 filter(s, out->data[2], in->data[2], out->linesize[2], in->linesize[2], cw, ch, qp_table, qp_stride, 0, depth);
427 }
428 5 emms_c();
429 }
430 }
431
432
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
5 if (in != out) {
433 if (in->data[3])
434 av_image_copy_plane(out->data[3], out->linesize[3],
435 in ->data[3], in ->linesize[3],
436 inlink->w, inlink->h);
437 av_frame_free(&in);
438 }
439 5 ret = ff_filter_frame(outlink, out);
440 5 finish:
441
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
5 if (qp_table != s->non_b_qp_table)
442 av_freep(&qp_table);
443 5 return ret;
444 }
445
446 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
447 char *res, int res_len, int flags)
448 {
449 SPPContext *s = ctx->priv;
450
451 if (!strcmp(cmd, "level") || !strcmp(cmd, "quality")) {
452 if (!strcmp(args, "max"))
453 s->log2_count = MAX_LEVEL;
454 else
455 s->log2_count = av_clip(strtol(args, NULL, 10), 0, MAX_LEVEL);
456 return 0;
457 }
458 return AVERROR(ENOSYS);
459 }
460
461 2 static av_cold int preinit(AVFilterContext *ctx)
462 {
463 2 SPPContext *s = ctx->priv;
464
465 2 s->dct = avcodec_dct_alloc();
466
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (!s->dct)
467 return AVERROR(ENOMEM);
468
469 2 return 0;
470 }
471
472 2 static av_cold void uninit(AVFilterContext *ctx)
473 {
474 2 SPPContext *s = ctx->priv;
475
476 2 av_freep(&s->temp);
477 2 av_freep(&s->src);
478 2 av_freep(&s->dct);
479 2 av_freep(&s->non_b_qp_table);
480 2 }
481
482 static const AVFilterPad spp_inputs[] = {
483 {
484 .name = "default",
485 .type = AVMEDIA_TYPE_VIDEO,
486 .config_props = config_input,
487 .filter_frame = filter_frame,
488 },
489 };
490
491 const AVFilter ff_vf_spp = {
492 .name = "spp",
493 .description = NULL_IF_CONFIG_SMALL("Apply a simple post processing filter."),
494 .priv_size = sizeof(SPPContext),
495 .preinit = preinit,
496 .uninit = uninit,
497 FILTER_INPUTS(spp_inputs),
498 FILTER_OUTPUTS(ff_video_default_filterpad),
499 FILTER_PIXFMTS_ARRAY(pix_fmts),
500 .process_command = process_command,
501 .priv_class = &spp_class,
502 .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
503 };
504