| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * Copyright (c) 2012 Fredrik Mellbin | ||
| 3 | * Copyright (c) 2013 Clément Bœsch | ||
| 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 | * Fieldmatching filter, ported from VFM filter (VapourSynth) by Clément. | ||
| 25 | * Fredrik Mellbin is the author of the VIVTC/VFM filter, which is itself a | ||
| 26 | * light clone of the TIVTC/TFM (AviSynth) filter written by Kevin Stone | ||
| 27 | * (tritical), the original author. | ||
| 28 | * | ||
| 29 | * @see http://bengal.missouri.edu/~kes25c/ | ||
| 30 | * @see http://www.vapoursynth.com/about/ | ||
| 31 | */ | ||
| 32 | |||
| 33 | #include <inttypes.h> | ||
| 34 | |||
| 35 | #include "libavutil/avassert.h" | ||
| 36 | #include "libavutil/imgutils.h" | ||
| 37 | #include "libavutil/mem.h" | ||
| 38 | #include "libavutil/opt.h" | ||
| 39 | #include "libavutil/timestamp.h" | ||
| 40 | #include "avfilter.h" | ||
| 41 | #include "filters.h" | ||
| 42 | #include "formats.h" | ||
| 43 | #include "video.h" | ||
| 44 | |||
| 45 | #define INPUT_MAIN 0 | ||
| 46 | #define INPUT_CLEANSRC 1 | ||
| 47 | |||
| 48 | enum fieldmatch_parity { | ||
| 49 | FM_PARITY_AUTO = -1, | ||
| 50 | FM_PARITY_BOTTOM = 0, | ||
| 51 | FM_PARITY_TOP = 1, | ||
| 52 | }; | ||
| 53 | |||
| 54 | enum matching_mode { | ||
| 55 | MODE_PC, | ||
| 56 | MODE_PC_N, | ||
| 57 | MODE_PC_U, | ||
| 58 | MODE_PC_N_UB, | ||
| 59 | MODE_PCN, | ||
| 60 | MODE_PCN_UB, | ||
| 61 | NB_MODE | ||
| 62 | }; | ||
| 63 | |||
| 64 | enum comb_matching_mode { | ||
| 65 | COMBMATCH_NONE, | ||
| 66 | COMBMATCH_SC, | ||
| 67 | COMBMATCH_FULL, | ||
| 68 | NB_COMBMATCH | ||
| 69 | }; | ||
| 70 | |||
| 71 | enum comb_dbg { | ||
| 72 | COMBDBG_NONE, | ||
| 73 | COMBDBG_PCN, | ||
| 74 | COMBDBG_PCNUB, | ||
| 75 | NB_COMBDBG | ||
| 76 | }; | ||
| 77 | |||
| 78 | typedef struct FieldMatchContext { | ||
| 79 | const AVClass *class; | ||
| 80 | |||
| 81 | AVFrame *prv, *src, *nxt; ///< main sliding window of 3 frames | ||
| 82 | AVFrame *prv2, *src2, *nxt2; ///< sliding window of the optional second stream | ||
| 83 | int got_frame[2]; ///< frame request flag for each input stream | ||
| 84 | int hsub[2], vsub[2]; ///< chroma subsampling values | ||
| 85 | int bpc; ///< bytes per component | ||
| 86 | uint32_t eof; ///< bitmask for end of stream | ||
| 87 | int64_t lastscdiff; | ||
| 88 | int64_t lastn; | ||
| 89 | |||
| 90 | /* options */ | ||
| 91 | int order; | ||
| 92 | int ppsrc; | ||
| 93 | int mode; ///< matching_mode | ||
| 94 | int field; | ||
| 95 | int mchroma; | ||
| 96 | int y0, y1; | ||
| 97 | int64_t scthresh; | ||
| 98 | double scthresh_flt; | ||
| 99 | int combmatch; ///< comb_matching_mode | ||
| 100 | int combdbg; | ||
| 101 | int cthresh; | ||
| 102 | int chroma; | ||
| 103 | int blockx, blocky; | ||
| 104 | int combpel; | ||
| 105 | |||
| 106 | /* misc buffers */ | ||
| 107 | uint8_t *map_data[4]; | ||
| 108 | int map_linesize[4]; | ||
| 109 | uint8_t *cmask_data[4]; | ||
| 110 | int cmask_linesize[4]; | ||
| 111 | int *c_array; | ||
| 112 | int tpitchy, tpitchuv; | ||
| 113 | uint8_t *tbuffer; | ||
| 114 | } FieldMatchContext; | ||
| 115 | |||
| 116 | #define OFFSET(x) offsetof(FieldMatchContext, x) | ||
| 117 | #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | ||
| 118 | |||
| 119 | static const AVOption fieldmatch_options[] = { | ||
| 120 | { "order", "specify the assumed field order", OFFSET(order), AV_OPT_TYPE_INT, {.i64=FM_PARITY_AUTO}, -1, 1, FLAGS, .unit = "order" }, | ||
| 121 | { "auto", "auto detect parity", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_AUTO}, INT_MIN, INT_MAX, FLAGS, .unit = "order" }, | ||
| 122 | { "bff", "assume bottom field first", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_BOTTOM}, INT_MIN, INT_MAX, FLAGS, .unit = "order" }, | ||
| 123 | { "tff", "assume top field first", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_TOP}, INT_MIN, INT_MAX, FLAGS, .unit = "order" }, | ||
| 124 | { "mode", "set the matching mode or strategy to use", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=MODE_PC_N}, MODE_PC, NB_MODE-1, FLAGS, .unit = "mode" }, | ||
| 125 | { "pc", "2-way match (p/c)", 0, AV_OPT_TYPE_CONST, {.i64=MODE_PC}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" }, | ||
| 126 | { "pc_n", "2-way match + 3rd match on combed (p/c + u)", 0, AV_OPT_TYPE_CONST, {.i64=MODE_PC_N}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" }, | ||
| 127 | { "pc_u", "2-way match + 3rd match (same order) on combed (p/c + u)", 0, AV_OPT_TYPE_CONST, {.i64=MODE_PC_U}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" }, | ||
| 128 | { "pc_n_ub", "2-way match + 3rd match on combed + 4th/5th matches if still combed (p/c + u + u/b)", 0, AV_OPT_TYPE_CONST, {.i64=MODE_PC_N_UB}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" }, | ||
| 129 | { "pcn", "3-way match (p/c/n)", 0, AV_OPT_TYPE_CONST, {.i64=MODE_PCN}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" }, | ||
| 130 | { "pcn_ub", "3-way match + 4th/5th matches on combed (p/c/n + u/b)", 0, AV_OPT_TYPE_CONST, {.i64=MODE_PCN_UB}, INT_MIN, INT_MAX, FLAGS, .unit = "mode" }, | ||
| 131 | { "ppsrc", "mark main input as a pre-processed input and activate clean source input stream", OFFSET(ppsrc), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS }, | ||
| 132 | { "field", "set the field to match from", OFFSET(field), AV_OPT_TYPE_INT, {.i64=FM_PARITY_AUTO}, -1, 1, FLAGS, .unit = "field" }, | ||
| 133 | { "auto", "automatic (same value as 'order')", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_AUTO}, INT_MIN, INT_MAX, FLAGS, .unit = "field" }, | ||
| 134 | { "bottom", "bottom field", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_BOTTOM}, INT_MIN, INT_MAX, FLAGS, .unit = "field" }, | ||
| 135 | { "top", "top field", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_TOP}, INT_MIN, INT_MAX, FLAGS, .unit = "field" }, | ||
| 136 | { "mchroma", "set whether or not chroma is included during the match comparisons", OFFSET(mchroma), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS }, | ||
| 137 | { "y0", "define an exclusion band which excludes the lines between y0 and y1 from the field matching decision", OFFSET(y0), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS }, | ||
| 138 | { "y1", "define an exclusion band which excludes the lines between y0 and y1 from the field matching decision", OFFSET(y1), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS }, | ||
| 139 | { "scthresh", "set scene change detection threshold", OFFSET(scthresh_flt), AV_OPT_TYPE_DOUBLE, {.dbl=12}, 0, 100, FLAGS }, | ||
| 140 | { "combmatch", "set combmatching mode", OFFSET(combmatch), AV_OPT_TYPE_INT, {.i64=COMBMATCH_SC}, COMBMATCH_NONE, NB_COMBMATCH-1, FLAGS, .unit = "combmatching" }, | ||
| 141 | { "none", "disable combmatching", 0, AV_OPT_TYPE_CONST, {.i64=COMBMATCH_NONE}, INT_MIN, INT_MAX, FLAGS, .unit = "combmatching" }, | ||
| 142 | { "sc", "enable combmatching only on scene change", 0, AV_OPT_TYPE_CONST, {.i64=COMBMATCH_SC}, INT_MIN, INT_MAX, FLAGS, .unit = "combmatching" }, | ||
| 143 | { "full", "enable combmatching all the time", 0, AV_OPT_TYPE_CONST, {.i64=COMBMATCH_FULL}, INT_MIN, INT_MAX, FLAGS, .unit = "combmatching" }, | ||
| 144 | { "combdbg", "enable comb debug", OFFSET(combdbg), AV_OPT_TYPE_INT, {.i64=COMBDBG_NONE}, COMBDBG_NONE, NB_COMBDBG-1, FLAGS, .unit = "dbglvl" }, | ||
| 145 | { "none", "no forced calculation", 0, AV_OPT_TYPE_CONST, {.i64=COMBDBG_NONE}, INT_MIN, INT_MAX, FLAGS, .unit = "dbglvl" }, | ||
| 146 | { "pcn", "calculate p/c/n", 0, AV_OPT_TYPE_CONST, {.i64=COMBDBG_PCN}, INT_MIN, INT_MAX, FLAGS, .unit = "dbglvl" }, | ||
| 147 | { "pcnub", "calculate p/c/n/u/b", 0, AV_OPT_TYPE_CONST, {.i64=COMBDBG_PCNUB}, INT_MIN, INT_MAX, FLAGS, .unit = "dbglvl" }, | ||
| 148 | { "cthresh", "set the area combing threshold used for combed frame detection", OFFSET(cthresh), AV_OPT_TYPE_INT, {.i64= 9}, -1, 0xff, FLAGS }, | ||
| 149 | { "chroma", "set whether or not chroma is considered in the combed frame decision", OFFSET(chroma), AV_OPT_TYPE_BOOL,{.i64= 0}, 0, 1, FLAGS }, | ||
| 150 | { "blockx", "set the x-axis size of the window used during combed frame detection", OFFSET(blockx), AV_OPT_TYPE_INT, {.i64=16}, 4, 1<<9, FLAGS }, | ||
| 151 | { "blocky", "set the y-axis size of the window used during combed frame detection", OFFSET(blocky), AV_OPT_TYPE_INT, {.i64=16}, 4, 1<<9, FLAGS }, | ||
| 152 | { "combpel", "set the number of combed pixels inside any of the blocky by blockx size blocks on the frame for the frame to be detected as combed", OFFSET(combpel), AV_OPT_TYPE_INT, {.i64=80}, 0, INT_MAX, FLAGS }, | ||
| 153 | { NULL } | ||
| 154 | }; | ||
| 155 | |||
| 156 | AVFILTER_DEFINE_CLASS(fieldmatch); | ||
| 157 | |||
| 158 | 1564 | static int get_width(const FieldMatchContext *fm, const AVFrame *f, int plane, int input) | |
| 159 | { | ||
| 160 |
2/2✓ Branch 0 taken 896 times.
✓ Branch 1 taken 668 times.
|
1564 | return plane ? AV_CEIL_RSHIFT(f->width, fm->hsub[input]) : f->width; |
| 161 | } | ||
| 162 | |||
| 163 | 1564 | static int get_height(const FieldMatchContext *fm, const AVFrame *f, int plane, int input) | |
| 164 | { | ||
| 165 |
2/2✓ Branch 0 taken 896 times.
✓ Branch 1 taken 668 times.
|
1564 | return plane ? AV_CEIL_RSHIFT(f->height, fm->vsub[input]) : f->height; |
| 166 | } | ||
| 167 | |||
| 168 | 135 | static int64_t luma_abs_diff(const AVFrame *f1, const AVFrame *f2) | |
| 169 | { | ||
| 170 | int x, y; | ||
| 171 | 135 | const uint8_t *srcp1 = f1->data[0]; | |
| 172 | 135 | const uint8_t *srcp2 = f2->data[0]; | |
| 173 | 135 | const int src1_linesize = f1->linesize[0]; | |
| 174 | 135 | const int src2_linesize = f2->linesize[0]; | |
| 175 | 135 | const int width = f1->width; | |
| 176 | 135 | const int height = f1->height; | |
| 177 | 135 | int64_t acc = 0; | |
| 178 | |||
| 179 |
2/2✓ Branch 0 taken 38880 times.
✓ Branch 1 taken 135 times.
|
39015 | for (y = 0; y < height; y++) { |
| 180 |
2/2✓ Branch 0 taken 13685760 times.
✓ Branch 1 taken 38880 times.
|
13724640 | for (x = 0; x < width; x++) |
| 181 | 13685760 | acc += abs(srcp1[x] - srcp2[x]); | |
| 182 | 38880 | srcp1 += src1_linesize; | |
| 183 | 38880 | srcp2 += src2_linesize; | |
| 184 | } | ||
| 185 | 135 | return acc; | |
| 186 | } | ||
| 187 | |||
| 188 | 610 | static void fill_buf(uint8_t *data, int w, int h, int linesize, uint8_t v) | |
| 189 | { | ||
| 190 | int y; | ||
| 191 | |||
| 192 |
2/2✓ Branch 0 taken 156960 times.
✓ Branch 1 taken 610 times.
|
157570 | for (y = 0; y < h; y++) { |
| 193 | 156960 | memset(data, v, w); | |
| 194 | 156960 | data += linesize; | |
| 195 | } | ||
| 196 | 610 | } | |
| 197 | |||
| 198 | 220 | static int calc_combed_score(const FieldMatchContext *fm, const AVFrame *src) | |
| 199 | { | ||
| 200 | 220 | int x, y, plane, max_v = 0; | |
| 201 | 220 | const int cthresh = fm->cthresh; | |
| 202 | 220 | const int cthresh6 = cthresh * 6; | |
| 203 | |||
| 204 |
3/4✗ Branch 0 not taken.
✓ Branch 1 taken 440 times.
✓ Branch 2 taken 220 times.
✓ Branch 3 taken 220 times.
|
440 | for (plane = 0; plane < (fm->chroma ? 3 : 1); plane++) { |
| 205 | 220 | const uint8_t *srcp = src->data[plane]; | |
| 206 | 220 | const int src_linesize = src->linesize[plane]; | |
| 207 | 220 | const int width = get_width (fm, src, plane, INPUT_MAIN); | |
| 208 | 220 | const int height = get_height(fm, src, plane, INPUT_MAIN); | |
| 209 | 220 | uint8_t *cmkp = fm->cmask_data[plane]; | |
| 210 | 220 | const int cmk_linesize = fm->cmask_linesize[plane]; | |
| 211 | |||
| 212 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 220 times.
|
220 | if (cthresh < 0) { |
| 213 | ✗ | fill_buf(cmkp, width, height, cmk_linesize, 0xff); | |
| 214 | ✗ | continue; | |
| 215 | } | ||
| 216 | 220 | fill_buf(cmkp, width, height, cmk_linesize, 0); | |
| 217 | |||
| 218 | /* [1 -3 4 -3 1] vertical filter */ | ||
| 219 | #define FILTER(xm2, xm1, xp1, xp2) \ | ||
| 220 | abs( 4 * srcp[x] \ | ||
| 221 | -3 * (srcp[x + (xm1)*src_linesize] + srcp[x + (xp1)*src_linesize]) \ | ||
| 222 | + (srcp[x + (xm2)*src_linesize] + srcp[x + (xp2)*src_linesize])) > cthresh6 | ||
| 223 | |||
| 224 | /* first line */ | ||
| 225 |
2/2✓ Branch 0 taken 77440 times.
✓ Branch 1 taken 220 times.
|
77660 | for (x = 0; x < width; x++) { |
| 226 | 77440 | const int s1 = abs(srcp[x] - srcp[x + src_linesize]); | |
| 227 |
4/4✓ Branch 0 taken 41535 times.
✓ Branch 1 taken 35905 times.
✓ Branch 2 taken 40180 times.
✓ Branch 3 taken 1355 times.
|
77440 | if (s1 > cthresh && FILTER(2, 1, 1, 2)) |
| 228 | 40180 | cmkp[x] = 0xff; | |
| 229 | } | ||
| 230 | 220 | srcp += src_linesize; | |
| 231 | 220 | cmkp += cmk_linesize; | |
| 232 | |||
| 233 | /* second line */ | ||
| 234 |
2/2✓ Branch 0 taken 77440 times.
✓ Branch 1 taken 220 times.
|
77660 | for (x = 0; x < width; x++) { |
| 235 | 77440 | const int s1 = abs(srcp[x] - srcp[x - src_linesize]); | |
| 236 | 77440 | const int s2 = abs(srcp[x] - srcp[x + src_linesize]); | |
| 237 |
6/6✓ Branch 0 taken 41535 times.
✓ Branch 1 taken 35905 times.
✓ Branch 2 taken 37459 times.
✓ Branch 3 taken 4076 times.
✓ Branch 4 taken 37099 times.
✓ Branch 5 taken 360 times.
|
77440 | if (s1 > cthresh && s2 > cthresh && FILTER(2, -1, 1, 2)) |
| 238 | 37099 | cmkp[x] = 0xff; | |
| 239 | } | ||
| 240 | 220 | srcp += src_linesize; | |
| 241 | 220 | cmkp += cmk_linesize; | |
| 242 | |||
| 243 | /* all lines minus first two and last two */ | ||
| 244 |
2/2✓ Branch 0 taken 62480 times.
✓ Branch 1 taken 220 times.
|
62700 | for (y = 2; y < height-2; y++) { |
| 245 |
2/2✓ Branch 0 taken 21992960 times.
✓ Branch 1 taken 62480 times.
|
22055440 | for (x = 0; x < width; x++) { |
| 246 | 21992960 | const int s1 = abs(srcp[x] - srcp[x - src_linesize]); | |
| 247 | 21992960 | const int s2 = abs(srcp[x] - srcp[x + src_linesize]); | |
| 248 |
6/6✓ Branch 0 taken 12008290 times.
✓ Branch 1 taken 9984670 times.
✓ Branch 2 taken 10342405 times.
✓ Branch 3 taken 1665885 times.
✓ Branch 4 taken 9768879 times.
✓ Branch 5 taken 573526 times.
|
21992960 | if (s1 > cthresh && s2 > cthresh && FILTER(-2, -1, 1, 2)) |
| 249 | 9768879 | cmkp[x] = 0xff; | |
| 250 | } | ||
| 251 | 62480 | srcp += src_linesize; | |
| 252 | 62480 | cmkp += cmk_linesize; | |
| 253 | } | ||
| 254 | |||
| 255 | /* before-last line */ | ||
| 256 |
2/2✓ Branch 0 taken 77440 times.
✓ Branch 1 taken 220 times.
|
77660 | for (x = 0; x < width; x++) { |
| 257 | 77440 | const int s1 = abs(srcp[x] - srcp[x - src_linesize]); | |
| 258 | 77440 | const int s2 = abs(srcp[x] - srcp[x + src_linesize]); | |
| 259 |
6/6✓ Branch 0 taken 41719 times.
✓ Branch 1 taken 35721 times.
✓ Branch 2 taken 33941 times.
✓ Branch 3 taken 7778 times.
✓ Branch 4 taken 30781 times.
✓ Branch 5 taken 3160 times.
|
77440 | if (s1 > cthresh && s2 > cthresh && FILTER(-2, -1, 1, -2)) |
| 260 | 30781 | cmkp[x] = 0xff; | |
| 261 | } | ||
| 262 | 220 | srcp += src_linesize; | |
| 263 | 220 | cmkp += cmk_linesize; | |
| 264 | |||
| 265 | /* last line */ | ||
| 266 |
2/2✓ Branch 0 taken 77440 times.
✓ Branch 1 taken 220 times.
|
77660 | for (x = 0; x < width; x++) { |
| 267 | 77440 | const int s1 = abs(srcp[x] - srcp[x - src_linesize]); | |
| 268 |
4/4✓ Branch 0 taken 40462 times.
✓ Branch 1 taken 36978 times.
✓ Branch 2 taken 35380 times.
✓ Branch 3 taken 5082 times.
|
77440 | if (s1 > cthresh && FILTER(-2, -1, -1, -2)) |
| 269 | 35380 | cmkp[x] = 0xff; | |
| 270 | } | ||
| 271 | } | ||
| 272 | |||
| 273 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 220 times.
|
220 | if (fm->chroma) { |
| 274 | ✗ | uint8_t *cmkp = fm->cmask_data[0]; | |
| 275 | ✗ | uint8_t *cmkpU = fm->cmask_data[1]; | |
| 276 | ✗ | uint8_t *cmkpV = fm->cmask_data[2]; | |
| 277 | ✗ | const int width = AV_CEIL_RSHIFT(src->width, fm->hsub[INPUT_MAIN]); | |
| 278 | ✗ | const int height = AV_CEIL_RSHIFT(src->height, fm->vsub[INPUT_MAIN]); | |
| 279 | ✗ | const int cmk_linesize = fm->cmask_linesize[0] << 1; | |
| 280 | ✗ | const int cmk_linesizeUV = fm->cmask_linesize[2]; | |
| 281 | ✗ | uint8_t *cmkpp = cmkp - (cmk_linesize>>1); | |
| 282 | ✗ | uint8_t *cmkpn = cmkp + (cmk_linesize>>1); | |
| 283 | ✗ | uint8_t *cmkpnn = cmkp + cmk_linesize; | |
| 284 | ✗ | for (y = 1; y < height - 1; y++) { | |
| 285 | ✗ | cmkpp += cmk_linesize; | |
| 286 | ✗ | cmkp += cmk_linesize; | |
| 287 | ✗ | cmkpn += cmk_linesize; | |
| 288 | ✗ | cmkpnn += cmk_linesize; | |
| 289 | ✗ | cmkpV += cmk_linesizeUV; | |
| 290 | ✗ | cmkpU += cmk_linesizeUV; | |
| 291 | ✗ | for (x = 1; x < width - 1; x++) { | |
| 292 | #define HAS_FF_AROUND(p, lz) (p[(x)-1 - (lz)] == 0xff || p[(x) - (lz)] == 0xff || p[(x)+1 - (lz)] == 0xff || \ | ||
| 293 | p[(x)-1 ] == 0xff || p[(x)+1 ] == 0xff || \ | ||
| 294 | p[(x)-1 + (lz)] == 0xff || p[(x) + (lz)] == 0xff || p[(x)+1 + (lz)] == 0xff) | ||
| 295 | ✗ | if ((cmkpV[x] == 0xff && HAS_FF_AROUND(cmkpV, cmk_linesizeUV)) || | |
| 296 | ✗ | (cmkpU[x] == 0xff && HAS_FF_AROUND(cmkpU, cmk_linesizeUV))) { | |
| 297 | ✗ | ((uint16_t*)cmkp)[x] = 0xffff; | |
| 298 | ✗ | ((uint16_t*)cmkpn)[x] = 0xffff; | |
| 299 | ✗ | if (y&1) ((uint16_t*)cmkpp)[x] = 0xffff; | |
| 300 | ✗ | else ((uint16_t*)cmkpnn)[x] = 0xffff; | |
| 301 | } | ||
| 302 | } | ||
| 303 | } | ||
| 304 | } | ||
| 305 | |||
| 306 | { | ||
| 307 | 220 | const int blockx = fm->blockx; | |
| 308 | 220 | const int blocky = fm->blocky; | |
| 309 | 220 | const int xhalf = blockx/2; | |
| 310 | 220 | const int yhalf = blocky/2; | |
| 311 | 220 | const int cmk_linesize = fm->cmask_linesize[0]; | |
| 312 | 220 | const uint8_t *cmkp = fm->cmask_data[0] + cmk_linesize; | |
| 313 | 220 | const int width = src->width; | |
| 314 | 220 | const int height = src->height; | |
| 315 | 220 | const int xblocks = ((width+xhalf)/blockx) + 1; | |
| 316 | 220 | const int xblocks4 = xblocks<<2; | |
| 317 | 220 | const int yblocks = ((height+yhalf)/blocky) + 1; | |
| 318 | 220 | int *c_array = fm->c_array; | |
| 319 | 220 | const int arraysize = (xblocks*yblocks)<<2; | |
| 320 | 220 | int heighta = (height/(blocky/2))*(blocky/2); | |
| 321 | 220 | const int widtha = (width /(blockx/2))*(blockx/2); | |
| 322 |
1/2✓ Branch 0 taken 220 times.
✗ Branch 1 not taken.
|
220 | if (heighta == height) |
| 323 | 220 | heighta = height - yhalf; | |
| 324 | 220 | memset(c_array, 0, arraysize * sizeof(*c_array)); | |
| 325 | |||
| 326 | #define C_ARRAY_ADD(v) do { \ | ||
| 327 | const int box1 = (x / blockx) * 4; \ | ||
| 328 | const int box2 = ((x + xhalf) / blockx) * 4; \ | ||
| 329 | c_array[temp1 + box1 ] += v; \ | ||
| 330 | c_array[temp1 + box2 + 1] += v; \ | ||
| 331 | c_array[temp2 + box1 + 2] += v; \ | ||
| 332 | c_array[temp2 + box2 + 3] += v; \ | ||
| 333 | } while (0) | ||
| 334 | |||
| 335 | #define VERTICAL_HALF(y_start, y_end) do { \ | ||
| 336 | for (y = y_start; y < y_end; y++) { \ | ||
| 337 | const int temp1 = (y / blocky) * xblocks4; \ | ||
| 338 | const int temp2 = ((y + yhalf) / blocky) * xblocks4; \ | ||
| 339 | for (x = 0; x < width; x++) \ | ||
| 340 | if (cmkp[x - cmk_linesize] == 0xff && \ | ||
| 341 | cmkp[x ] == 0xff && \ | ||
| 342 | cmkp[x + cmk_linesize] == 0xff) \ | ||
| 343 | C_ARRAY_ADD(1); \ | ||
| 344 | cmkp += cmk_linesize; \ | ||
| 345 | } \ | ||
| 346 | } while (0) | ||
| 347 | |||
| 348 |
10/10✓ Branch 0 taken 261066 times.
✓ Branch 1 taken 281014 times.
✓ Branch 2 taken 252355 times.
✓ Branch 3 taken 8711 times.
✓ Branch 4 taken 247367 times.
✓ Branch 5 taken 4988 times.
✓ Branch 6 taken 542080 times.
✓ Branch 7 taken 1540 times.
✓ Branch 8 taken 1540 times.
✓ Branch 9 taken 220 times.
|
543840 | VERTICAL_HALF(1, yhalf); |
| 349 | |||
| 350 |
2/2✓ Branch 0 taken 7480 times.
✓ Branch 1 taken 220 times.
|
7700 | for (y = yhalf; y < heighta; y += yhalf) { |
| 351 | 7480 | const int temp1 = (y / blocky) * xblocks4; | |
| 352 | 7480 | const int temp2 = ((y + yhalf) / blocky) * xblocks4; | |
| 353 | |||
| 354 |
2/2✓ Branch 0 taken 329120 times.
✓ Branch 1 taken 7480 times.
|
336600 | for (x = 0; x < widtha; x += xhalf) { |
| 355 | 329120 | const uint8_t *cmkp_tmp = cmkp + x; | |
| 356 | 329120 | int u, v, sum = 0; | |
| 357 |
2/2✓ Branch 0 taken 2632960 times.
✓ Branch 1 taken 329120 times.
|
2962080 | for (u = 0; u < yhalf; u++) { |
| 358 |
2/2✓ Branch 0 taken 21063680 times.
✓ Branch 1 taken 2632960 times.
|
23696640 | for (v = 0; v < xhalf; v++) |
| 359 |
2/2✓ Branch 0 taken 9365808 times.
✓ Branch 1 taken 11697872 times.
|
21063680 | if (cmkp_tmp[v - cmk_linesize] == 0xff && |
| 360 |
2/2✓ Branch 0 taken 8453820 times.
✓ Branch 1 taken 911988 times.
|
9365808 | cmkp_tmp[v ] == 0xff && |
| 361 |
2/2✓ Branch 0 taken 7819534 times.
✓ Branch 1 taken 634286 times.
|
8453820 | cmkp_tmp[v + cmk_linesize] == 0xff) |
| 362 | 7819534 | sum++; | |
| 363 | 2632960 | cmkp_tmp += cmk_linesize; | |
| 364 | } | ||
| 365 |
2/2✓ Branch 0 taken 200837 times.
✓ Branch 1 taken 128283 times.
|
329120 | if (sum) |
| 366 | 200837 | C_ARRAY_ADD(sum); | |
| 367 | } | ||
| 368 | |||
| 369 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 7480 times.
|
7480 | for (x = widtha; x < width; x++) { |
| 370 | ✗ | const uint8_t *cmkp_tmp = cmkp + x; | |
| 371 | ✗ | int u, sum = 0; | |
| 372 | ✗ | for (u = 0; u < yhalf; u++) { | |
| 373 | ✗ | if (cmkp_tmp[-cmk_linesize] == 0xff && | |
| 374 | ✗ | cmkp_tmp[ 0] == 0xff && | |
| 375 | ✗ | cmkp_tmp[ cmk_linesize] == 0xff) | |
| 376 | ✗ | sum++; | |
| 377 | ✗ | cmkp_tmp += cmk_linesize; | |
| 378 | } | ||
| 379 | ✗ | if (sum) | |
| 380 | ✗ | C_ARRAY_ADD(sum); | |
| 381 | } | ||
| 382 | |||
| 383 | 7480 | cmkp += cmk_linesize * yhalf; | |
| 384 | } | ||
| 385 | |||
| 386 |
10/10✓ Branch 0 taken 219284 times.
✓ Branch 1 taken 322796 times.
✓ Branch 2 taken 188226 times.
✓ Branch 3 taken 31058 times.
✓ Branch 4 taken 170775 times.
✓ Branch 5 taken 17451 times.
✓ Branch 6 taken 542080 times.
✓ Branch 7 taken 1540 times.
✓ Branch 8 taken 1540 times.
✓ Branch 9 taken 220 times.
|
543840 | VERTICAL_HALF(heighta, height - 1); |
| 387 | |||
| 388 |
2/2✓ Branch 0 taken 384560 times.
✓ Branch 1 taken 220 times.
|
384780 | for (x = 0; x < arraysize; x++) |
| 389 |
2/2✓ Branch 0 taken 971 times.
✓ Branch 1 taken 383589 times.
|
384560 | if (c_array[x] > max_v) |
| 390 | 971 | max_v = c_array[x]; | |
| 391 | } | ||
| 392 | 220 | return max_v; | |
| 393 | } | ||
| 394 | |||
| 395 | // the secret is that tbuffer is an interlaced, offset subset of all the lines | ||
| 396 | 390 | static void build_abs_diff_mask(const uint8_t *prvp, int prv_linesize, | |
| 397 | const uint8_t *nxtp, int nxt_linesize, | ||
| 398 | uint8_t *tbuffer, int tbuf_linesize, | ||
| 399 | int width, int height) | ||
| 400 | { | ||
| 401 | int y, x; | ||
| 402 | |||
| 403 | 390 | prvp -= prv_linesize; | |
| 404 | 390 | nxtp -= nxt_linesize; | |
| 405 |
2/2✓ Branch 0 taken 46800 times.
✓ Branch 1 taken 390 times.
|
47190 | for (y = 0; y < height; y++) { |
| 406 |
2/2✓ Branch 0 taken 12025728 times.
✓ Branch 1 taken 46800 times.
|
12072528 | for (x = 0; x < width; x++) |
| 407 | 12025728 | tbuffer[x] = FFABS(prvp[x] - nxtp[x]); | |
| 408 | 46800 | prvp += prv_linesize; | |
| 409 | 46800 | nxtp += nxt_linesize; | |
| 410 | 46800 | tbuffer += tbuf_linesize; | |
| 411 | } | ||
| 412 | 390 | } | |
| 413 | |||
| 414 | /** | ||
| 415 | * Build a map over which pixels differ a lot/a little | ||
| 416 | */ | ||
| 417 | 390 | static void build_diff_map(FieldMatchContext *fm, | |
| 418 | const uint8_t *prvp, int prv_linesize, | ||
| 419 | const uint8_t *nxtp, int nxt_linesize, | ||
| 420 | uint8_t *dstp, int dst_linesize, int height, | ||
| 421 | int width, int plane) | ||
| 422 | { | ||
| 423 | int x, y, u, diff, count; | ||
| 424 |
2/2✓ Branch 0 taken 260 times.
✓ Branch 1 taken 130 times.
|
390 | int tpitch = plane ? fm->tpitchuv : fm->tpitchy; |
| 425 | 390 | const uint8_t *dp = fm->tbuffer + tpitch; | |
| 426 | |||
| 427 | 390 | build_abs_diff_mask(prvp, prv_linesize, nxtp, nxt_linesize, | |
| 428 | fm->tbuffer, tpitch, width, height>>1); | ||
| 429 | |||
| 430 |
2/2✓ Branch 0 taken 46020 times.
✓ Branch 1 taken 390 times.
|
46410 | for (y = 2; y < height - 2; y += 2) { |
| 431 |
2/2✓ Branch 0 taken 11750648 times.
✓ Branch 1 taken 46020 times.
|
11796668 | for (x = 1; x < width - 1; x++) { |
| 432 | 11750648 | diff = dp[x]; | |
| 433 |
2/2✓ Branch 0 taken 8730010 times.
✓ Branch 1 taken 3020638 times.
|
11750648 | if (diff > 3) { |
| 434 |
4/4✓ Branch 0 taken 17951849 times.
✓ Branch 1 taken 29955 times.
✓ Branch 2 taken 9251794 times.
✓ Branch 3 taken 8700055 times.
|
17981804 | for (count = 0, u = x-1; u < x+2 && count < 2; u++) { |
| 435 | 9251794 | count += dp[u-tpitch] > 3; | |
| 436 | 9251794 | count += dp[u ] > 3; | |
| 437 | 9251794 | count += dp[u+tpitch] > 3; | |
| 438 | } | ||
| 439 |
2/2✓ Branch 0 taken 8722083 times.
✓ Branch 1 taken 7927 times.
|
8730010 | if (count > 1) { |
| 440 | 8722083 | dstp[x] = 1; | |
| 441 |
2/2✓ Branch 0 taken 5460375 times.
✓ Branch 1 taken 3261708 times.
|
8722083 | if (diff > 19) { |
| 442 | 5460375 | int upper = 0, lower = 0; | |
| 443 |
4/4✓ Branch 0 taken 16381125 times.
✓ Branch 1 taken 1828737 times.
✓ Branch 2 taken 12749487 times.
✓ Branch 3 taken 3631638 times.
|
18209862 | for (count = 0, u = x-1; u < x+2 && count < 6; u++) { |
| 444 |
2/2✓ Branch 0 taken 9792913 times.
✓ Branch 1 taken 2956574 times.
|
12749487 | if (dp[u-tpitch] > 19) { count++; upper = 1; } |
| 445 |
2/2✓ Branch 0 taken 11577399 times.
✓ Branch 1 taken 1172088 times.
|
12749487 | if (dp[u ] > 19) count++; |
| 446 |
2/2✓ Branch 0 taken 9811153 times.
✓ Branch 1 taken 2938334 times.
|
12749487 | if (dp[u+tpitch] > 19) { count++; lower = 1; } |
| 447 | } | ||
| 448 |
2/2✓ Branch 0 taken 5022758 times.
✓ Branch 1 taken 437617 times.
|
5460375 | if (count > 3) { |
| 449 |
4/4✓ Branch 0 taken 4798461 times.
✓ Branch 1 taken 224297 times.
✓ Branch 2 taken 4554450 times.
✓ Branch 3 taken 244011 times.
|
5022758 | if (upper && lower) { |
| 450 | 4554450 | dstp[x] |= 1<<1; | |
| 451 | } else { | ||
| 452 | 468308 | int upper2 = 0, lower2 = 0; | |
| 453 |
4/4✓ Branch 0 taken 4613034 times.
✓ Branch 1 taken 46960 times.
✓ Branch 2 taken 4191686 times.
✓ Branch 3 taken 468308 times.
|
4659994 | for (u = FFMAX(x-4,0); u < FFMIN(x+5,width); u++) { |
| 454 |
4/4✓ Branch 0 taken 4164662 times.
✓ Branch 1 taken 27024 times.
✓ Branch 2 taken 1979996 times.
✓ Branch 3 taken 2184666 times.
|
4191686 | if (y != 2 && dp[u-2*tpitch] > 19) upper2 = 1; |
| 455 |
2/2✓ Branch 0 taken 1848510 times.
✓ Branch 1 taken 2343176 times.
|
4191686 | if ( dp[u- tpitch] > 19) upper = 1; |
| 456 |
2/2✓ Branch 0 taken 1813784 times.
✓ Branch 1 taken 2377902 times.
|
4191686 | if ( dp[u+ tpitch] > 19) lower = 1; |
| 457 |
4/4✓ Branch 0 taken 4154009 times.
✓ Branch 1 taken 37677 times.
✓ Branch 2 taken 1981974 times.
✓ Branch 3 taken 2172035 times.
|
4191686 | if (y != height-4 && dp[u+2*tpitch] > 19) lower2 = 1; |
| 458 | } | ||
| 459 |
8/8✓ Branch 0 taken 410829 times.
✓ Branch 1 taken 57479 times.
✓ Branch 2 taken 71226 times.
✓ Branch 3 taken 339603 times.
✓ Branch 4 taken 6440 times.
✓ Branch 5 taken 64786 times.
✓ Branch 6 taken 57479 times.
✓ Branch 7 taken 6440 times.
|
468308 | if ((upper && (lower || upper2)) || |
| 460 |
3/4✓ Branch 0 taken 57479 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 51083 times.
✓ Branch 3 taken 6396 times.
|
57479 | (lower && (upper || lower2))) |
| 461 | 455472 | dstp[x] |= 1<<1; | |
| 462 |
2/2✓ Branch 0 taken 9145 times.
✓ Branch 1 taken 3691 times.
|
12836 | else if (count > 5) |
| 463 | 9145 | dstp[x] |= 1<<2; | |
| 464 | } | ||
| 465 | } | ||
| 466 | } | ||
| 467 | } | ||
| 468 | } | ||
| 469 | } | ||
| 470 | 46020 | dp += tpitch; | |
| 471 | 46020 | dstp += dst_linesize; | |
| 472 | } | ||
| 473 | 390 | } | |
| 474 | |||
| 475 | enum { mP, mC, mN, mB, mU }; | ||
| 476 | |||
| 477 | 780 | static int get_field_base(int match, int field) | |
| 478 | { | ||
| 479 |
1/2✓ Branch 0 taken 780 times.
✗ Branch 1 not taken.
|
780 | return match < 3 ? 2 - field : 1 + field; |
| 480 | } | ||
| 481 | |||
| 482 | 780 | static AVFrame *select_frame(FieldMatchContext *fm, int match) | |
| 483 | { | ||
| 484 |
3/4✓ Branch 0 taken 390 times.
✓ Branch 1 taken 390 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 390 times.
|
780 | if (match == mP || match == mB) return fm->prv; |
| 485 |
2/4✓ Branch 0 taken 390 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 390 times.
|
390 | else if (match == mN || match == mU) return fm->nxt; |
| 486 | 390 | else /* match == mC */ return fm->src; | |
| 487 | } | ||
| 488 | |||
| 489 | 130 | static int compare_fields(FieldMatchContext *fm, int match1, int match2, int field) | |
| 490 | { | ||
| 491 | int plane, ret; | ||
| 492 | 130 | uint64_t accumPc = 0, accumPm = 0, accumPml = 0; | |
| 493 | 130 | uint64_t accumNc = 0, accumNm = 0, accumNml = 0; | |
| 494 | int norm1, norm2, mtn1, mtn2; | ||
| 495 | float c1, c2, mr; | ||
| 496 | 130 | const AVFrame *src = fm->src; | |
| 497 | |||
| 498 |
3/4✓ Branch 0 taken 520 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 390 times.
✓ Branch 3 taken 130 times.
|
520 | for (plane = 0; plane < (fm->mchroma ? 3 : 1); plane++) { |
| 499 | int x, y, temp1, temp2, fbase; | ||
| 500 | const AVFrame *prev, *next; | ||
| 501 | 390 | uint8_t *mapp = fm->map_data[plane]; | |
| 502 | 390 | int map_linesize = fm->map_linesize[plane]; | |
| 503 | 390 | const uint8_t *srcp = src->data[plane]; | |
| 504 | 390 | const int src_linesize = src->linesize[plane]; | |
| 505 | 390 | const int srcf_linesize = src_linesize << 1; | |
| 506 | int prv_linesize, nxt_linesize; | ||
| 507 | int prvf_linesize, nxtf_linesize; | ||
| 508 | 390 | const int width = get_width (fm, src, plane, INPUT_MAIN); | |
| 509 | 390 | const int height = get_height(fm, src, plane, INPUT_MAIN); | |
| 510 |
2/2✓ Branch 0 taken 260 times.
✓ Branch 1 taken 130 times.
|
390 | const int y0a = fm->y0 >> (plane ? fm->vsub[INPUT_MAIN] : 0); |
| 511 |
2/2✓ Branch 0 taken 260 times.
✓ Branch 1 taken 130 times.
|
390 | const int y1a = fm->y1 >> (plane ? fm->vsub[INPUT_MAIN] : 0); |
| 512 |
2/2✓ Branch 0 taken 260 times.
✓ Branch 1 taken 130 times.
|
390 | const int startx = (plane == 0 ? 8 : 8 >> fm->hsub[INPUT_MAIN]); |
| 513 | 390 | const int stopx = width - startx; | |
| 514 | const uint8_t *srcpf, *srcf, *srcnf; | ||
| 515 | const uint8_t *prvpf, *prvnf, *nxtpf, *nxtnf; | ||
| 516 | |||
| 517 | 390 | fill_buf(mapp, width, height, map_linesize, 0); | |
| 518 | |||
| 519 | /* match1 */ | ||
| 520 | 390 | fbase = get_field_base(match1, field); | |
| 521 | 390 | srcf = srcp + (fbase + 1) * src_linesize; | |
| 522 | 390 | srcpf = srcf - srcf_linesize; | |
| 523 | 390 | srcnf = srcf + srcf_linesize; | |
| 524 | 390 | mapp = mapp + fbase * map_linesize; | |
| 525 | 390 | prev = select_frame(fm, match1); | |
| 526 | 390 | prv_linesize = prev->linesize[plane]; | |
| 527 | 390 | prvf_linesize = prv_linesize << 1; | |
| 528 | 390 | prvpf = prev->data[plane] + fbase * prv_linesize; // previous frame, previous field | |
| 529 | 390 | prvnf = prvpf + prvf_linesize; // previous frame, next field | |
| 530 | |||
| 531 | /* match2 */ | ||
| 532 | 390 | fbase = get_field_base(match2, field); | |
| 533 | 390 | next = select_frame(fm, match2); | |
| 534 | 390 | nxt_linesize = next->linesize[plane]; | |
| 535 | 390 | nxtf_linesize = nxt_linesize << 1; | |
| 536 | 390 | nxtpf = next->data[plane] + fbase * nxt_linesize; // next frame, previous field | |
| 537 | 390 | nxtnf = nxtpf + nxtf_linesize; // next frame, next field | |
| 538 | |||
| 539 | 390 | map_linesize <<= 1; | |
| 540 |
3/8✗ Branch 0 not taken.
✓ Branch 1 taken 390 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 390 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 390 times.
|
390 | if ((match1 >= 3 && field == 1) || (match1 < 3 && field != 1)) |
| 541 | ✗ | build_diff_map(fm, prvpf, prvf_linesize, nxtpf, nxtf_linesize, | |
| 542 | mapp, map_linesize, height, width, plane); | ||
| 543 | else | ||
| 544 | 390 | build_diff_map(fm, prvnf, prvf_linesize, nxtnf, nxtf_linesize, | |
| 545 | mapp + map_linesize, map_linesize, height, width, plane); | ||
| 546 | |||
| 547 |
2/2✓ Branch 0 taken 46020 times.
✓ Branch 1 taken 390 times.
|
46410 | for (y = 2; y < height - 2; y += 2) { |
| 548 |
1/6✗ Branch 0 not taken.
✓ Branch 1 taken 46020 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
46020 | if (y0a == y1a || y < y0a || y > y1a) { |
| 549 |
2/2✓ Branch 0 taken 11304384 times.
✓ Branch 1 taken 46020 times.
|
11350404 | for (x = startx; x < stopx; x++) { |
| 550 |
4/4✓ Branch 0 taken 2987915 times.
✓ Branch 1 taken 8316469 times.
✓ Branch 2 taken 811027 times.
✓ Branch 3 taken 2176888 times.
|
11304384 | if (mapp[x] > 0 || mapp[x + map_linesize] > 0) { |
| 551 | 9127496 | temp1 = srcpf[x] + (srcf[x] << 2) + srcnf[x]; // [1 4 1] | |
| 552 | |||
| 553 | 9127496 | temp2 = abs(3 * (prvpf[x] + prvnf[x]) - temp1); | |
| 554 |
5/6✓ Branch 0 taken 3925691 times.
✓ Branch 1 taken 5201805 times.
✓ Branch 2 taken 195901 times.
✓ Branch 3 taken 3729790 times.
✓ Branch 4 taken 195901 times.
✗ Branch 5 not taken.
|
9127496 | if (temp2 > 23 && ((mapp[x]&1) || (mapp[x + map_linesize]&1))) |
| 555 | 3925691 | accumPc += temp2; | |
| 556 |
2/2✓ Branch 0 taken 3357735 times.
✓ Branch 1 taken 5769761 times.
|
9127496 | if (temp2 > 42) { |
| 557 |
4/4✓ Branch 0 taken 855982 times.
✓ Branch 1 taken 2501753 times.
✓ Branch 2 taken 191399 times.
✓ Branch 3 taken 664583 times.
|
3357735 | if ((mapp[x]&2) || (mapp[x + map_linesize]&2)) |
| 558 | 2693152 | accumPm += temp2; | |
| 559 |
4/4✓ Branch 0 taken 3356596 times.
✓ Branch 1 taken 1139 times.
✓ Branch 2 taken 388 times.
✓ Branch 3 taken 3356208 times.
|
3357735 | if ((mapp[x]&4) || (mapp[x + map_linesize]&4)) |
| 560 | 1527 | accumPml += temp2; | |
| 561 | } | ||
| 562 | |||
| 563 | 9127496 | temp2 = abs(3 * (nxtpf[x] + nxtnf[x]) - temp1); | |
| 564 |
5/6✓ Branch 0 taken 6710599 times.
✓ Branch 1 taken 2416897 times.
✓ Branch 2 taken 601052 times.
✓ Branch 3 taken 6109547 times.
✓ Branch 4 taken 601052 times.
✗ Branch 5 not taken.
|
9127496 | if (temp2 > 23 && ((mapp[x]&1) || (mapp[x + map_linesize]&1))) |
| 565 | 6710599 | accumNc += temp2; | |
| 566 |
2/2✓ Branch 0 taken 5902128 times.
✓ Branch 1 taken 3225368 times.
|
9127496 | if (temp2 > 42) { |
| 567 |
4/4✓ Branch 0 taken 2737945 times.
✓ Branch 1 taken 3164183 times.
✓ Branch 2 taken 494968 times.
✓ Branch 3 taken 2242977 times.
|
5902128 | if ((mapp[x]&2) || (mapp[x + map_linesize]&2)) |
| 568 | 3659151 | accumNm += temp2; | |
| 569 |
4/4✓ Branch 0 taken 5894779 times.
✓ Branch 1 taken 7349 times.
✓ Branch 2 taken 3278 times.
✓ Branch 3 taken 5891501 times.
|
5902128 | if ((mapp[x]&4) || (mapp[x + map_linesize]&4)) |
| 570 | 10627 | accumNml += temp2; | |
| 571 | } | ||
| 572 | } | ||
| 573 | } | ||
| 574 | } | ||
| 575 | 46020 | prvpf += prvf_linesize; | |
| 576 | 46020 | prvnf += prvf_linesize; | |
| 577 | 46020 | srcpf += srcf_linesize; | |
| 578 | 46020 | srcf += srcf_linesize; | |
| 579 | 46020 | srcnf += srcf_linesize; | |
| 580 | 46020 | nxtpf += nxtf_linesize; | |
| 581 | 46020 | nxtnf += nxtf_linesize; | |
| 582 | 46020 | mapp += map_linesize; | |
| 583 | } | ||
| 584 | } | ||
| 585 | |||
| 586 |
6/8✓ Branch 0 taken 11 times.
✓ Branch 1 taken 119 times.
✓ Branch 2 taken 10 times.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 10 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 10 times.
|
130 | if (accumPm < 500 && accumNm < 500 && (accumPml >= 500 || accumNml >= 500) && |
| 587 | ✗ | FFMAX(accumPml,accumNml) > 3*FFMIN(accumPml,accumNml)) { | |
| 588 | ✗ | accumPm = accumPml; | |
| 589 | ✗ | accumNm = accumNml; | |
| 590 | } | ||
| 591 | |||
| 592 | 130 | norm1 = (int)((accumPc / 6.0f) + 0.5f); | |
| 593 | 130 | norm2 = (int)((accumNc / 6.0f) + 0.5f); | |
| 594 | 130 | mtn1 = (int)((accumPm / 6.0f) + 0.5f); | |
| 595 | 130 | mtn2 = (int)((accumNm / 6.0f) + 0.5f); | |
| 596 |
6/6✓ Branch 0 taken 45 times.
✓ Branch 1 taken 85 times.
✓ Branch 2 taken 120 times.
✓ Branch 3 taken 10 times.
✓ Branch 4 taken 45 times.
✓ Branch 5 taken 75 times.
|
130 | c1 = ((float)FFMAX(norm1,norm2)) / ((float)FFMAX(FFMIN(norm1,norm2),1)); |
| 597 |
6/6✓ Branch 0 taken 50 times.
✓ Branch 1 taken 80 times.
✓ Branch 2 taken 120 times.
✓ Branch 3 taken 10 times.
✓ Branch 4 taken 50 times.
✓ Branch 5 taken 70 times.
|
130 | c2 = ((float)FFMAX(mtn1, mtn2)) / ((float)FFMAX(FFMIN(mtn1, mtn2), 1)); |
| 598 |
6/6✓ Branch 0 taken 50 times.
✓ Branch 1 taken 80 times.
✓ Branch 2 taken 120 times.
✓ Branch 3 taken 10 times.
✓ Branch 4 taken 45 times.
✓ Branch 5 taken 75 times.
|
130 | mr = ((float)FFMAX(mtn1, mtn2)) / ((float)FFMAX(FFMAX(norm1,norm2),1)); |
| 599 |
10/10✓ Branch 0 taken 14 times.
✓ Branch 1 taken 116 times.
✓ Branch 2 taken 4 times.
✓ Branch 3 taken 10 times.
✓ Branch 4 taken 52 times.
✓ Branch 5 taken 68 times.
✓ Branch 6 taken 12 times.
✓ Branch 7 taken 40 times.
✓ Branch 8 taken 10 times.
✓ Branch 9 taken 12 times.
|
130 | if (((mtn1 >= 500 || mtn2 >= 500) && (mtn1*2 < mtn2*1 || mtn2*2 < mtn1*1)) || |
| 600 |
7/8✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
✓ Branch 2 taken 11 times.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 7 times.
✓ Branch 5 taken 4 times.
✓ Branch 6 taken 10 times.
✓ Branch 7 taken 7 times.
|
22 | ((mtn1 >= 1000 || mtn2 >= 1000) && (mtn1*3 < mtn2*2 || mtn2*3 < mtn1*2)) || |
| 601 |
7/8✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
✓ Branch 2 taken 6 times.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 4 times.
✓ Branch 5 taken 2 times.
✓ Branch 6 taken 10 times.
✓ Branch 7 taken 4 times.
|
17 | ((mtn1 >= 2000 || mtn2 >= 2000) && (mtn1*5 < mtn2*4 || mtn2*5 < mtn1*4)) || |
| 602 |
3/4✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
✓ Branch 2 taken 3 times.
✓ Branch 3 taken 1 times.
|
14 | ((mtn1 >= 4000 || mtn2 >= 4000) && c2 > c1)) |
| 603 |
2/2✓ Branch 0 taken 49 times.
✓ Branch 1 taken 70 times.
|
119 | ret = mtn1 > mtn2 ? match2 : match1; |
| 604 |
5/8✓ Branch 0 taken 1 times.
✓ Branch 1 taken 10 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 1 times.
|
11 | else if (mr > 0.005 && FFMAX(mtn1, mtn2) > 150 && (mtn1*2 < mtn2*1 || mtn2*2 < mtn1*1)) |
| 605 | ✗ | ret = mtn1 > mtn2 ? match2 : match1; | |
| 606 | else | ||
| 607 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
|
11 | ret = norm1 > norm2 ? match2 : match1; |
| 608 | 130 | return ret; | |
| 609 | } | ||
| 610 | |||
| 611 | 318 | static void copy_fields(const FieldMatchContext *fm, AVFrame *dst, | |
| 612 | const AVFrame *src, int field, int input) | ||
| 613 | { | ||
| 614 | int plane; | ||
| 615 |
4/6✓ Branch 0 taken 1272 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 954 times.
✓ Branch 3 taken 318 times.
✓ Branch 4 taken 954 times.
✗ Branch 5 not taken.
|
1272 | for (plane = 0; plane < 4 && src->data[plane] && src->linesize[plane]; plane++) { |
| 616 | 954 | const int plane_h = get_height(fm, src, plane, input); | |
| 617 |
2/2✓ Branch 0 taken 477 times.
✓ Branch 1 taken 477 times.
|
954 | const int nb_copy_fields = (plane_h >> 1) + (field ? 0 : (plane_h & 1)); |
| 618 | 954 | av_image_copy_plane(dst->data[plane] + field*dst->linesize[plane], dst->linesize[plane] << 1, | |
| 619 | 954 | src->data[plane] + field*src->linesize[plane], src->linesize[plane] << 1, | |
| 620 | 954 | get_width(fm, src, plane, input) * fm->bpc, nb_copy_fields); | |
| 621 | } | ||
| 622 | 318 | } | |
| 623 | |||
| 624 | 159 | static AVFrame *create_weave_frame(AVFilterContext *ctx, int match, int field, | |
| 625 | const AVFrame *prv, AVFrame *src, const AVFrame *nxt, int input) | ||
| 626 | { | ||
| 627 | AVFrame *dst; | ||
| 628 | 159 | FieldMatchContext *fm = ctx->priv; | |
| 629 | |||
| 630 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
|
159 | if (match == mC) { |
| 631 | ✗ | dst = av_frame_clone(src); | |
| 632 | } else { | ||
| 633 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
|
159 | AVFilterLink *link = input == INPUT_CLEANSRC ? ctx->outputs[0] : ctx->inputs[INPUT_MAIN]; |
| 634 | |||
| 635 | 159 | dst = ff_get_video_buffer(link, link->w, link->h); | |
| 636 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
|
159 | if (!dst) |
| 637 | ✗ | return NULL; | |
| 638 | 159 | av_frame_copy_props(dst, src); | |
| 639 | |||
| 640 |
2/5✓ Branch 0 taken 49 times.
✓ Branch 1 taken 110 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
|
159 | switch (match) { |
| 641 | 49 | case mP: copy_fields(fm, dst, src, 1-field, input); copy_fields(fm, dst, prv, field, input); break; | |
| 642 | 110 | case mN: copy_fields(fm, dst, src, 1-field, input); copy_fields(fm, dst, nxt, field, input); break; | |
| 643 | ✗ | case mB: copy_fields(fm, dst, src, field, input); copy_fields(fm, dst, prv, 1-field, input); break; | |
| 644 | ✗ | case mU: copy_fields(fm, dst, src, field, input); copy_fields(fm, dst, nxt, 1-field, input); break; | |
| 645 | ✗ | default: av_assert0(0); | |
| 646 | } | ||
| 647 | } | ||
| 648 | 159 | return dst; | |
| 649 | } | ||
| 650 | |||
| 651 | 110 | static int checkmm(AVFilterContext *ctx, int *combs, int m1, int m2, | |
| 652 | AVFrame **gen_frames, int field) | ||
| 653 | { | ||
| 654 | 110 | const FieldMatchContext *fm = ctx->priv; | |
| 655 | |||
| 656 | #define LOAD_COMB(mid) do { \ | ||
| 657 | if (combs[mid] < 0) { \ | ||
| 658 | if (!gen_frames[mid]) \ | ||
| 659 | gen_frames[mid] = create_weave_frame(ctx, mid, field, \ | ||
| 660 | fm->prv, fm->src, fm->nxt, \ | ||
| 661 | INPUT_MAIN); \ | ||
| 662 | combs[mid] = calc_combed_score(fm, gen_frames[mid]); \ | ||
| 663 | } \ | ||
| 664 | } while (0) | ||
| 665 | |||
| 666 |
3/4✓ Branch 0 taken 110 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 49 times.
✓ Branch 3 taken 61 times.
|
110 | LOAD_COMB(m1); |
| 667 |
2/4✓ Branch 0 taken 110 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 110 times.
✗ Branch 3 not taken.
|
110 | LOAD_COMB(m2); |
| 668 | |||
| 669 |
2/6✓ Branch 0 taken 110 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 110 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
110 | if ((combs[m2] * 3 < combs[m1] || (combs[m2] * 2 < combs[m1] && combs[m1] > fm->combpel)) && |
| 670 | ✗ | abs(combs[m2] - combs[m1]) >= 30 && combs[m2] < fm->combpel) | |
| 671 | ✗ | return m2; | |
| 672 | else | ||
| 673 | 110 | return m1; | |
| 674 | } | ||
| 675 | |||
| 676 | static const int fxo0m[] = { mP, mC, mN, mB, mU }; | ||
| 677 | static const int fxo1m[] = { mN, mC, mP, mU, mB }; | ||
| 678 | |||
| 679 | 135 | static int filter_frame(AVFilterLink *inlink, AVFrame *in) | |
| 680 | { | ||
| 681 | 135 | AVFilterContext *ctx = inlink->dst; | |
| 682 | 135 | AVFilterLink *outlink = ctx->outputs[0]; | |
| 683 | 135 | FilterLink *outl = ff_filter_link(outlink); | |
| 684 | 135 | FieldMatchContext *fm = ctx->priv; | |
| 685 | 135 | int combs[] = { -1, -1, -1, -1, -1 }; | |
| 686 | 135 | int order, field, i, match, interlaced_frame, sc = 0, ret = 0; | |
| 687 | const int *fxo; | ||
| 688 | 135 | AVFrame *gen_frames[] = { NULL, NULL, NULL, NULL, NULL }; | |
| 689 | 135 | AVFrame *dst = NULL; | |
| 690 | |||
| 691 | /* update frames queue(s) */ | ||
| 692 | #define SLIDING_FRAME_WINDOW(prv, src, nxt) do { \ | ||
| 693 | if (prv != src) /* 2nd loop exception (1st has prv==src and we don't want to loose src) */ \ | ||
| 694 | av_frame_free(&prv); \ | ||
| 695 | prv = src; \ | ||
| 696 | src = nxt; \ | ||
| 697 | if (in) \ | ||
| 698 | nxt = in; \ | ||
| 699 | if (!prv) \ | ||
| 700 | prv = src; \ | ||
| 701 | if (!prv) /* received only one frame at that point */ \ | ||
| 702 | return 0; \ | ||
| 703 | av_assert0(prv && src && nxt); \ | ||
| 704 | } while (0) | ||
| 705 |
1/2✓ Branch 0 taken 135 times.
✗ Branch 1 not taken.
|
135 | if (FF_INLINK_IDX(inlink) == INPUT_MAIN) { |
| 706 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 135 times.
|
135 | av_assert0(fm->got_frame[INPUT_MAIN] == 0); |
| 707 |
10/14✓ Branch 0 taken 120 times.
✓ Branch 1 taken 15 times.
✓ Branch 3 taken 135 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 10 times.
✓ Branch 6 taken 125 times.
✓ Branch 7 taken 5 times.
✓ Branch 8 taken 130 times.
✓ Branch 9 taken 130 times.
✗ Branch 10 not taken.
✓ Branch 11 taken 130 times.
✗ Branch 12 not taken.
✗ Branch 13 not taken.
✓ Branch 14 taken 130 times.
|
135 | SLIDING_FRAME_WINDOW(fm->prv, fm->src, fm->nxt); |
| 708 | 130 | fm->got_frame[INPUT_MAIN] = 1; | |
| 709 | } else { | ||
| 710 | ✗ | av_assert0(fm->got_frame[INPUT_CLEANSRC] == 0); | |
| 711 | ✗ | SLIDING_FRAME_WINDOW(fm->prv2, fm->src2, fm->nxt2); | |
| 712 | ✗ | fm->got_frame[INPUT_CLEANSRC] = 1; | |
| 713 | } | ||
| 714 |
2/6✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 130 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
130 | if (!fm->got_frame[INPUT_MAIN] || (fm->ppsrc && !fm->got_frame[INPUT_CLEANSRC])) |
| 715 | ✗ | return 0; | |
| 716 | 130 | fm->got_frame[INPUT_MAIN] = fm->got_frame[INPUT_CLEANSRC] = 0; | |
| 717 | 130 | in = fm->src; | |
| 718 | |||
| 719 | /* parity */ | ||
| 720 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
260 | order = fm->order != FM_PARITY_AUTO ? fm->order : ((in->flags & AV_FRAME_FLAG_INTERLACED) ? |
| 721 |
3/4✓ Branch 0 taken 95 times.
✓ Branch 1 taken 35 times.
✓ Branch 2 taken 95 times.
✗ Branch 3 not taken.
|
130 | !!(in->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST) : 1); |
| 722 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | field = fm->field != FM_PARITY_AUTO ? fm->field : order; |
| 723 |
2/8✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 130 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
|
130 | av_assert0(order == 0 || order == 1 || field == 0 || field == 1); |
| 724 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | fxo = field ^ order ? fxo1m : fxo0m; |
| 725 | |||
| 726 | /* debug mode: we generate all the fields combinations and their associated | ||
| 727 | * combed score. XXX: inject as frame metadata? */ | ||
| 728 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | if (fm->combdbg) { |
| 729 | ✗ | for (i = 0; i < FF_ARRAY_ELEMS(combs); i++) { | |
| 730 | ✗ | if (i > mN && fm->combdbg == COMBDBG_PCN) | |
| 731 | ✗ | break; | |
| 732 | ✗ | gen_frames[i] = create_weave_frame(ctx, i, field, fm->prv, fm->src, fm->nxt, INPUT_MAIN); | |
| 733 | ✗ | if (!gen_frames[i]) { | |
| 734 | ✗ | ret = AVERROR(ENOMEM); | |
| 735 | ✗ | goto fail; | |
| 736 | } | ||
| 737 | ✗ | combs[i] = calc_combed_score(fm, gen_frames[i]); | |
| 738 | } | ||
| 739 | ✗ | av_log(ctx, AV_LOG_INFO, "COMBS: %3d %3d %3d %3d %3d\n", | |
| 740 | combs[0], combs[1], combs[2], combs[3], combs[4]); | ||
| 741 | } else { | ||
| 742 | 130 | gen_frames[mC] = av_frame_clone(fm->src); | |
| 743 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | if (!gen_frames[mC]) { |
| 744 | ✗ | ret = AVERROR(ENOMEM); | |
| 745 | ✗ | goto fail; | |
| 746 | } | ||
| 747 | } | ||
| 748 | |||
| 749 | /* p/c selection and optional 3-way p/c/n matches */ | ||
| 750 | 130 | match = compare_fields(fm, fxo[mC], fxo[mP], field); | |
| 751 |
2/4✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 130 times.
|
130 | if (fm->mode == MODE_PCN || fm->mode == MODE_PCN_UB) |
| 752 | ✗ | match = compare_fields(fm, match, fxo[mN], field); | |
| 753 | |||
| 754 | /* scene change check */ | ||
| 755 |
1/2✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
|
130 | if (fm->combmatch == COMBMATCH_SC) { |
| 756 |
2/2✓ Branch 0 taken 60 times.
✓ Branch 1 taken 70 times.
|
130 | if (fm->lastn == outl->frame_count_in - 1) { |
| 757 |
2/2✓ Branch 0 taken 45 times.
✓ Branch 1 taken 15 times.
|
60 | if (fm->lastscdiff > fm->scthresh) |
| 758 | 45 | sc = 1; | |
| 759 |
2/2✓ Branch 1 taken 20 times.
✓ Branch 2 taken 50 times.
|
70 | } else if (luma_abs_diff(fm->prv, fm->src) > fm->scthresh) { |
| 760 | 20 | sc = 1; | |
| 761 | } | ||
| 762 | |||
| 763 |
2/2✓ Branch 0 taken 65 times.
✓ Branch 1 taken 65 times.
|
130 | if (!sc) { |
| 764 | 65 | fm->lastn = outl->frame_count_in; | |
| 765 | 65 | fm->lastscdiff = luma_abs_diff(fm->src, fm->nxt); | |
| 766 | 65 | sc = fm->lastscdiff > fm->scthresh; | |
| 767 | } | ||
| 768 | } | ||
| 769 | |||
| 770 |
4/6✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 130 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 110 times.
✓ Branch 5 taken 20 times.
|
130 | if (fm->combmatch == COMBMATCH_FULL || (fm->combmatch == COMBMATCH_SC && sc)) { |
| 771 |
1/7✗ Branch 0 not taken.
✓ Branch 1 taken 110 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
|
110 | switch (fm->mode) { |
| 772 | /* 2-way p/c matches */ | ||
| 773 | ✗ | case MODE_PC: | |
| 774 | ✗ | match = checkmm(ctx, combs, match, match == fxo[mP] ? fxo[mC] : fxo[mP], gen_frames, field); | |
| 775 | ✗ | break; | |
| 776 | 110 | case MODE_PC_N: | |
| 777 | 110 | match = checkmm(ctx, combs, match, fxo[mN], gen_frames, field); | |
| 778 | 110 | break; | |
| 779 | ✗ | case MODE_PC_U: | |
| 780 | ✗ | match = checkmm(ctx, combs, match, fxo[mU], gen_frames, field); | |
| 781 | ✗ | break; | |
| 782 | ✗ | case MODE_PC_N_UB: | |
| 783 | ✗ | match = checkmm(ctx, combs, match, fxo[mN], gen_frames, field); | |
| 784 | ✗ | match = checkmm(ctx, combs, match, fxo[mU], gen_frames, field); | |
| 785 | ✗ | match = checkmm(ctx, combs, match, fxo[mB], gen_frames, field); | |
| 786 | ✗ | break; | |
| 787 | /* 3-way p/c/n matches */ | ||
| 788 | ✗ | case MODE_PCN: | |
| 789 | ✗ | match = checkmm(ctx, combs, match, match == fxo[mP] ? fxo[mC] : fxo[mP], gen_frames, field); | |
| 790 | ✗ | break; | |
| 791 | ✗ | case MODE_PCN_UB: | |
| 792 | ✗ | match = checkmm(ctx, combs, match, fxo[mU], gen_frames, field); | |
| 793 | ✗ | match = checkmm(ctx, combs, match, fxo[mB], gen_frames, field); | |
| 794 | ✗ | break; | |
| 795 | ✗ | default: | |
| 796 | ✗ | av_assert0(0); | |
| 797 | } | ||
| 798 | } | ||
| 799 | |||
| 800 | /* keep fields as-is if not matched properly */ | ||
| 801 | 130 | interlaced_frame = combs[match] >= fm->combpel; | |
| 802 |
3/4✓ Branch 0 taken 110 times.
✓ Branch 1 taken 20 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 110 times.
|
130 | if (interlaced_frame && fm->combmatch == COMBMATCH_FULL) { |
| 803 | ✗ | match = mC; | |
| 804 | } | ||
| 805 | |||
| 806 | /* get output frame and drop the others */ | ||
| 807 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | if (fm->ppsrc) { |
| 808 | /* field matching was based on a filtered/post-processed input, we now | ||
| 809 | * pick the untouched fields from the clean source */ | ||
| 810 | ✗ | dst = create_weave_frame(ctx, match, field, fm->prv2, fm->src2, fm->nxt2, INPUT_CLEANSRC); | |
| 811 | } else { | ||
| 812 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | if (!gen_frames[match]) { // XXX: is that possible? |
| 813 | ✗ | dst = create_weave_frame(ctx, match, field, fm->prv, fm->src, fm->nxt, INPUT_MAIN); | |
| 814 | } else { | ||
| 815 | 130 | dst = gen_frames[match]; | |
| 816 | 130 | gen_frames[match] = NULL; | |
| 817 | } | ||
| 818 | } | ||
| 819 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
|
130 | if (!dst) { |
| 820 | ✗ | ret = AVERROR(ENOMEM); | |
| 821 | ✗ | goto fail; | |
| 822 | } | ||
| 823 | |||
| 824 | /* mark the frame we are unable to match properly as interlaced so a proper | ||
| 825 | * de-interlacer can take the relay */ | ||
| 826 |
2/2✓ Branch 0 taken 110 times.
✓ Branch 1 taken 20 times.
|
130 | if (interlaced_frame) { |
| 827 | 110 | dst->flags |= AV_FRAME_FLAG_INTERLACED; | |
| 828 | 110 | av_log(ctx, AV_LOG_WARNING, "Frame #%"PRId64" at %s is still interlaced\n", | |
| 829 | 110 | outl->frame_count_in, av_ts2timestr(in->pts, &inlink->time_base)); | |
| 830 |
1/2✓ Branch 0 taken 110 times.
✗ Branch 1 not taken.
|
110 | if (field) |
| 831 | 110 | dst->flags |= AV_FRAME_FLAG_TOP_FIELD_FIRST; | |
| 832 | else | ||
| 833 | ✗ | dst->flags &= ~AV_FRAME_FLAG_TOP_FIELD_FIRST; | |
| 834 | } else | ||
| 835 | 20 | dst->flags &= ~AV_FRAME_FLAG_INTERLACED; | |
| 836 | |||
| 837 | 130 | av_log(ctx, AV_LOG_DEBUG, "SC:%d | COMBS: %3d %3d %3d %3d %3d (combpel=%d)" | |
| 838 | " match=%d combed=%s\n", sc, combs[0], combs[1], combs[2], combs[3], combs[4], | ||
| 839 |
2/2✓ Branch 0 taken 110 times.
✓ Branch 1 taken 20 times.
|
130 | fm->combpel, match, (dst->flags & AV_FRAME_FLAG_INTERLACED) ? "YES" : "NO"); |
| 840 | |||
| 841 | 130 | fail: | |
| 842 |
2/2✓ Branch 0 taken 650 times.
✓ Branch 1 taken 130 times.
|
780 | for (i = 0; i < FF_ARRAY_ELEMS(gen_frames); i++) |
| 843 | 650 | av_frame_free(&gen_frames[i]); | |
| 844 | |||
| 845 |
1/2✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
|
130 | if (ret >= 0) |
| 846 | 130 | return ff_filter_frame(outlink, dst); | |
| 847 | ✗ | return ret; | |
| 848 | } | ||
| 849 | |||
| 850 | 265 | static int activate(AVFilterContext *ctx) | |
| 851 | { | ||
| 852 | 265 | FieldMatchContext *fm = ctx->priv; | |
| 853 | 265 | AVFrame *frame = NULL; | |
| 854 | 265 | int ret = 0, status; | |
| 855 | int64_t pts; | ||
| 856 | |||
| 857 |
1/4✗ Branch 1 not taken.
✓ Branch 2 taken 265 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
265 | FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx); |
| 858 | |||
| 859 |
3/4✓ Branch 0 taken 265 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 135 times.
✓ Branch 3 taken 130 times.
|
530 | if ((fm->got_frame[INPUT_MAIN] == 0) && |
| 860 | 265 | (ret = ff_inlink_consume_frame(ctx->inputs[INPUT_MAIN], &frame)) > 0) { | |
| 861 | 135 | ret = filter_frame(ctx->inputs[INPUT_MAIN], frame); | |
| 862 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 135 times.
|
135 | if (ret < 0) |
| 863 | ✗ | return ret; | |
| 864 | } | ||
| 865 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 265 times.
|
265 | if (ret < 0) |
| 866 | ✗ | return ret; | |
| 867 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 265 times.
|
265 | if (fm->ppsrc && |
| 868 | ✗ | (fm->got_frame[INPUT_CLEANSRC] == 0) && | |
| 869 | ✗ | (ret = ff_inlink_consume_frame(ctx->inputs[INPUT_CLEANSRC], &frame)) > 0) { | |
| 870 | ✗ | ret = filter_frame(ctx->inputs[INPUT_CLEANSRC], frame); | |
| 871 | ✗ | if (ret < 0) | |
| 872 | ✗ | return ret; | |
| 873 | } | ||
| 874 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 265 times.
|
265 | if (ret < 0) { |
| 875 | ✗ | return ret; | |
| 876 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 265 times.
|
265 | } else if (ff_inlink_acknowledge_status(ctx->inputs[INPUT_MAIN], &status, &pts)) { |
| 877 | ✗ | if (status == AVERROR_EOF) { // flushing | |
| 878 | ✗ | fm->eof |= 1 << INPUT_MAIN; | |
| 879 | ✗ | ret = filter_frame(ctx->inputs[INPUT_MAIN], NULL); | |
| 880 | } | ||
| 881 | ✗ | ff_outlink_set_status(ctx->outputs[0], status, pts); | |
| 882 | ✗ | return ret; | |
| 883 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 265 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
|
265 | } else if (fm->ppsrc && ff_inlink_acknowledge_status(ctx->inputs[INPUT_CLEANSRC], &status, &pts)) { |
| 884 | ✗ | if (status == AVERROR_EOF) { // flushing | |
| 885 | ✗ | fm->eof |= 1 << INPUT_CLEANSRC; | |
| 886 | ✗ | ret = filter_frame(ctx->inputs[INPUT_CLEANSRC], NULL); | |
| 887 | } | ||
| 888 | ✗ | ff_outlink_set_status(ctx->outputs[0], status, pts); | |
| 889 | ✗ | return ret; | |
| 890 | } else { | ||
| 891 |
2/2✓ Branch 1 taken 130 times.
✓ Branch 2 taken 135 times.
|
265 | if (ff_outlink_frame_wanted(ctx->outputs[0])) { |
| 892 |
1/2✓ Branch 0 taken 130 times.
✗ Branch 1 not taken.
|
130 | if (fm->got_frame[INPUT_MAIN] == 0) |
| 893 | 130 | ff_inlink_request_frame(ctx->inputs[INPUT_MAIN]); | |
| 894 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 130 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
|
130 | if (fm->ppsrc && (fm->got_frame[INPUT_CLEANSRC] == 0)) |
| 895 | ✗ | ff_inlink_request_frame(ctx->inputs[INPUT_CLEANSRC]); | |
| 896 | } | ||
| 897 | 265 | return 0; | |
| 898 | } | ||
| 899 | } | ||
| 900 | |||
| 901 | 6 | static int query_formats(const AVFilterContext *ctx, | |
| 902 | AVFilterFormatsConfig **cfg_in, | ||
| 903 | AVFilterFormatsConfig **cfg_out) | ||
| 904 | { | ||
| 905 | 6 | const FieldMatchContext *fm = ctx->priv; | |
| 906 | |||
| 907 | static const enum AVPixelFormat pix_fmts[] = { | ||
| 908 | AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, | ||
| 909 | AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, | ||
| 910 | AV_PIX_FMT_NONE | ||
| 911 | }; | ||
| 912 | static const enum AVPixelFormat unproc_pix_fmts[] = { | ||
| 913 | AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, | ||
| 914 | AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, | ||
| 915 | AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, | ||
| 916 | AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, | ||
| 917 | AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ444P, | ||
| 918 | AV_PIX_FMT_YUVJ411P, | ||
| 919 | AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, | ||
| 920 | AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, | ||
| 921 | AV_PIX_FMT_YUV440P10, | ||
| 922 | AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV420P12, | ||
| 923 | AV_PIX_FMT_YUV440P12, | ||
| 924 | AV_PIX_FMT_YUV444P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV420P14, | ||
| 925 | AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, | ||
| 926 | AV_PIX_FMT_NONE | ||
| 927 | }; | ||
| 928 | int ret; | ||
| 929 | |||
| 930 | 6 | AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts); | |
| 931 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 6 times.
|
6 | if (!fmts_list) |
| 932 | ✗ | return AVERROR(ENOMEM); | |
| 933 |
1/2✓ Branch 0 taken 6 times.
✗ Branch 1 not taken.
|
6 | if (!fm->ppsrc) { |
| 934 | 6 | return ff_set_common_formats2(ctx, cfg_in, cfg_out, fmts_list); | |
| 935 | } | ||
| 936 | |||
| 937 | ✗ | if ((ret = ff_formats_ref(fmts_list, &cfg_in[INPUT_MAIN]->formats)) < 0) | |
| 938 | ✗ | return ret; | |
| 939 | ✗ | fmts_list = ff_make_format_list(unproc_pix_fmts); | |
| 940 | ✗ | if (!fmts_list) | |
| 941 | ✗ | return AVERROR(ENOMEM); | |
| 942 | ✗ | if ((ret = ff_formats_ref(fmts_list, &cfg_out[0]->formats)) < 0) | |
| 943 | ✗ | return ret; | |
| 944 | ✗ | if ((ret = ff_formats_ref(fmts_list, &cfg_in[INPUT_CLEANSRC]->formats)) < 0) | |
| 945 | ✗ | return ret; | |
| 946 | ✗ | return 0; | |
| 947 | } | ||
| 948 | |||
| 949 | 5 | static int config_input(AVFilterLink *inlink) | |
| 950 | { | ||
| 951 | int ret; | ||
| 952 | 5 | AVFilterContext *ctx = inlink->dst; | |
| 953 | 5 | FieldMatchContext *fm = ctx->priv; | |
| 954 | 5 | const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format); | |
| 955 | 5 | const int w = inlink->w; | |
| 956 | 5 | const int h = inlink->h; | |
| 957 | |||
| 958 | 5 | fm->scthresh = (int64_t)((w * h * 255.0 * fm->scthresh_flt) / 100.0); | |
| 959 | |||
| 960 |
2/4✓ Branch 1 taken 5 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 5 times.
|
10 | if ((ret = av_image_alloc(fm->map_data, fm->map_linesize, w, h, inlink->format, 32)) < 0 || |
| 961 | 5 | (ret = av_image_alloc(fm->cmask_data, fm->cmask_linesize, w, h, inlink->format, 32)) < 0) | |
| 962 | ✗ | return ret; | |
| 963 | |||
| 964 | 5 | fm->hsub[INPUT_MAIN] = pix_desc->log2_chroma_w; | |
| 965 | 5 | fm->vsub[INPUT_MAIN] = pix_desc->log2_chroma_h; | |
| 966 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
|
5 | if (fm->ppsrc) { |
| 967 | ✗ | pix_desc = av_pix_fmt_desc_get(ctx->inputs[INPUT_CLEANSRC]->format); | |
| 968 | ✗ | fm->hsub[INPUT_CLEANSRC] = pix_desc->log2_chroma_w; | |
| 969 | ✗ | fm->vsub[INPUT_CLEANSRC] = pix_desc->log2_chroma_h; | |
| 970 | } | ||
| 971 | |||
| 972 | 5 | fm->tpitchy = FFALIGN(w, 16); | |
| 973 | 5 | fm->tpitchuv = FFALIGN(w >> 1, 16); | |
| 974 | |||
| 975 | 5 | fm->tbuffer = av_calloc((h/2 + 4) * fm->tpitchy, sizeof(*fm->tbuffer)); | |
| 976 | 10 | fm->c_array = av_malloc_array((((w + fm->blockx/2)/fm->blockx)+1) * | |
| 977 | 5 | (((h + fm->blocky/2)/fm->blocky)+1), | |
| 978 | 4 * sizeof(*fm->c_array)); | ||
| 979 |
2/4✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 5 times.
|
5 | if (!fm->tbuffer || !fm->c_array) |
| 980 | ✗ | return AVERROR(ENOMEM); | |
| 981 | |||
| 982 | 5 | return 0; | |
| 983 | } | ||
| 984 | |||
| 985 | 11 | static av_cold int fieldmatch_init(AVFilterContext *ctx) | |
| 986 | { | ||
| 987 | 11 | const FieldMatchContext *fm = ctx->priv; | |
| 988 | 11 | AVFilterPad pad = { | |
| 989 | .name = "main", | ||
| 990 | .type = AVMEDIA_TYPE_VIDEO, | ||
| 991 | .config_props = config_input, | ||
| 992 | }; | ||
| 993 | int ret; | ||
| 994 | |||
| 995 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 11 times.
|
11 | if ((ret = ff_append_inpad(ctx, &pad)) < 0) |
| 996 | ✗ | return ret; | |
| 997 | |||
| 998 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
|
11 | if (fm->ppsrc) { |
| 999 | ✗ | pad.name = "clean_src"; | |
| 1000 | ✗ | pad.config_props = NULL; | |
| 1001 | ✗ | if ((ret = ff_append_inpad(ctx, &pad)) < 0) | |
| 1002 | ✗ | return ret; | |
| 1003 | } | ||
| 1004 | |||
| 1005 |
1/2✓ Branch 0 taken 11 times.
✗ Branch 1 not taken.
|
11 | if ((fm->blockx & (fm->blockx - 1)) || |
| 1006 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
|
11 | (fm->blocky & (fm->blocky - 1))) { |
| 1007 | ✗ | av_log(ctx, AV_LOG_ERROR, "blockx and blocky settings must be power of two\n"); | |
| 1008 | ✗ | return AVERROR(EINVAL); | |
| 1009 | } | ||
| 1010 | |||
| 1011 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
|
11 | if (fm->combpel > fm->blockx * fm->blocky) { |
| 1012 | ✗ | av_log(ctx, AV_LOG_ERROR, "Combed pixel should not be larger than blockx x blocky\n"); | |
| 1013 | ✗ | return AVERROR(EINVAL); | |
| 1014 | } | ||
| 1015 | |||
| 1016 | 11 | return 0; | |
| 1017 | } | ||
| 1018 | |||
| 1019 | 11 | static av_cold void fieldmatch_uninit(AVFilterContext *ctx) | |
| 1020 | { | ||
| 1021 | 11 | FieldMatchContext *fm = ctx->priv; | |
| 1022 | |||
| 1023 |
2/2✓ Branch 0 taken 5 times.
✓ Branch 1 taken 6 times.
|
11 | if (fm->prv != fm->src) |
| 1024 | 5 | av_frame_free(&fm->prv); | |
| 1025 |
2/2✓ Branch 0 taken 5 times.
✓ Branch 1 taken 6 times.
|
11 | if (fm->nxt != fm->src) |
| 1026 | 5 | av_frame_free(&fm->nxt); | |
| 1027 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
|
11 | if (fm->prv2 != fm->src2) |
| 1028 | ✗ | av_frame_free(&fm->prv2); | |
| 1029 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
|
11 | if (fm->nxt2 != fm->src2) |
| 1030 | ✗ | av_frame_free(&fm->nxt2); | |
| 1031 | 11 | av_frame_free(&fm->src); | |
| 1032 | 11 | av_frame_free(&fm->src2); | |
| 1033 | 11 | av_freep(&fm->map_data[0]); | |
| 1034 | 11 | av_freep(&fm->cmask_data[0]); | |
| 1035 | 11 | av_freep(&fm->tbuffer); | |
| 1036 | 11 | av_freep(&fm->c_array); | |
| 1037 | 11 | } | |
| 1038 | |||
| 1039 | 5 | static int config_output(AVFilterLink *outlink) | |
| 1040 | { | ||
| 1041 | 5 | FilterLink *outl = ff_filter_link(outlink); | |
| 1042 | 5 | AVFilterContext *ctx = outlink->src; | |
| 1043 | 5 | FieldMatchContext *fm = ctx->priv; | |
| 1044 | 5 | const AVFilterLink *inlink = | |
| 1045 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
|
5 | ctx->inputs[fm->ppsrc ? INPUT_CLEANSRC : INPUT_MAIN]; |
| 1046 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
|
5 | FilterLink *inl = ff_filter_link(ctx->inputs[fm->ppsrc ? INPUT_CLEANSRC : INPUT_MAIN]); |
| 1047 | 5 | const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); | |
| 1048 | |||
| 1049 | 5 | fm->bpc = (desc->comp[0].depth + 7) / 8; | |
| 1050 | 5 | outlink->time_base = inlink->time_base; | |
| 1051 | 5 | outlink->sample_aspect_ratio = inlink->sample_aspect_ratio; | |
| 1052 | 5 | outl->frame_rate = inl->frame_rate; | |
| 1053 | 5 | outlink->w = inlink->w; | |
| 1054 | 5 | outlink->h = inlink->h; | |
| 1055 | 5 | return 0; | |
| 1056 | } | ||
| 1057 | |||
| 1058 | static const AVFilterPad fieldmatch_outputs[] = { | ||
| 1059 | { | ||
| 1060 | .name = "default", | ||
| 1061 | .type = AVMEDIA_TYPE_VIDEO, | ||
| 1062 | .config_props = config_output, | ||
| 1063 | }, | ||
| 1064 | }; | ||
| 1065 | |||
| 1066 | const FFFilter ff_vf_fieldmatch = { | ||
| 1067 | .p.name = "fieldmatch", | ||
| 1068 | .p.description = NULL_IF_CONFIG_SMALL("Field matching for inverse telecine."), | ||
| 1069 | .p.priv_class = &fieldmatch_class, | ||
| 1070 | .p.flags = AVFILTER_FLAG_DYNAMIC_INPUTS, | ||
| 1071 | .priv_size = sizeof(FieldMatchContext), | ||
| 1072 | .init = fieldmatch_init, | ||
| 1073 | .activate = activate, | ||
| 1074 | .uninit = fieldmatch_uninit, | ||
| 1075 | FILTER_OUTPUTS(fieldmatch_outputs), | ||
| 1076 | FILTER_QUERY_FUNC2(query_formats), | ||
| 1077 | }; | ||
| 1078 |