You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

533 lines
18KB

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