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.

439 lines
15KB

  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. #define OFFSET(x) offsetof(SPPContext, x)
  44. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  45. static const AVOption spp_options[] = {
  46. { "quality", "set quality", OFFSET(log2_count), AV_OPT_TYPE_INT, {.i64 = 3}, 0, MAX_LEVEL, FLAGS },
  47. { "qp", "force a constant quantizer parameter", OFFSET(qp), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 63, FLAGS },
  48. { "mode", "set thresholding mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64 = MODE_HARD}, 0, NB_MODES - 1, FLAGS, "mode" },
  49. { "hard", "hard thresholding", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_HARD}, INT_MIN, INT_MAX, FLAGS, "mode" },
  50. { "soft", "soft thresholding", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_SOFT}, INT_MIN, INT_MAX, FLAGS, "mode" },
  51. { "use_bframe_qp", "use B-frames' QP", OFFSET(use_bframe_qp), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, FLAGS },
  52. { NULL }
  53. };
  54. AVFILTER_DEFINE_CLASS(spp);
  55. // XXX: share between filters?
  56. DECLARE_ALIGNED(8, static const uint8_t, ldither)[8][8] = {
  57. { 0, 48, 12, 60, 3, 51, 15, 63 },
  58. { 32, 16, 44, 28, 35, 19, 47, 31 },
  59. { 8, 56, 4, 52, 11, 59, 7, 55 },
  60. { 40, 24, 36, 20, 43, 27, 39, 23 },
  61. { 2, 50, 14, 62, 1, 49, 13, 61 },
  62. { 34, 18, 46, 30, 33, 17, 45, 29 },
  63. { 10, 58, 6, 54, 9, 57, 5, 53 },
  64. { 42, 26, 38, 22, 41, 25, 37, 21 },
  65. };
  66. static const uint8_t offset[127][2] = {
  67. {0,0},
  68. {0,0}, {4,4}, // quality = 1
  69. {0,0}, {2,2}, {6,4}, {4,6}, // quality = 2
  70. {0,0}, {5,1}, {2,2}, {7,3}, {4,4}, {1,5}, {6,6}, {3,7}, // quality = 3
  71. {0,0}, {4,0}, {1,1}, {5,1}, {3,2}, {7,2}, {2,3}, {6,3}, // quality = 4
  72. {0,4}, {4,4}, {1,5}, {5,5}, {3,6}, {7,6}, {2,7}, {6,7},
  73. {0,0}, {0,2}, {0,4}, {0,6}, {1,1}, {1,3}, {1,5}, {1,7}, // quality = 5
  74. {2,0}, {2,2}, {2,4}, {2,6}, {3,1}, {3,3}, {3,5}, {3,7},
  75. {4,0}, {4,2}, {4,4}, {4,6}, {5,1}, {5,3}, {5,5}, {5,7},
  76. {6,0}, {6,2}, {6,4}, {6,6}, {7,1}, {7,3}, {7,5}, {7,7},
  77. {0,0}, {4,4}, {0,4}, {4,0}, {2,2}, {6,6}, {2,6}, {6,2}, // quality = 6
  78. {0,2}, {4,6}, {0,6}, {4,2}, {2,0}, {6,4}, {2,4}, {6,0},
  79. {1,1}, {5,5}, {1,5}, {5,1}, {3,3}, {7,7}, {3,7}, {7,3},
  80. {1,3}, {5,7}, {1,7}, {5,3}, {3,1}, {7,5}, {3,5}, {7,1},
  81. {0,1}, {4,5}, {0,5}, {4,1}, {2,3}, {6,7}, {2,7}, {6,3},
  82. {0,3}, {4,7}, {0,7}, {4,3}, {2,1}, {6,5}, {2,5}, {6,1},
  83. {1,0}, {5,4}, {1,4}, {5,0}, {3,2}, {7,6}, {3,6}, {7,2},
  84. {1,2}, {5,6}, {1,6}, {5,2}, {3,0}, {7,4}, {3,4}, {7,0},
  85. };
  86. static void hardthresh_c(int16_t dst[64], const int16_t src[64],
  87. int qp, const uint8_t *permutation)
  88. {
  89. int i;
  90. int bias = 0; // FIXME
  91. unsigned threshold1 = qp * ((1<<4) - bias) - 1;
  92. unsigned threshold2 = threshold1 << 1;
  93. memset(dst, 0, 64 * sizeof(dst[0]));
  94. dst[0] = (src[0] + 4) >> 3;
  95. for (i = 1; i < 64; i++) {
  96. int level = src[i];
  97. if (((unsigned)(level + threshold1)) > threshold2) {
  98. const int j = permutation[i];
  99. dst[j] = (level + 4) >> 3;
  100. }
  101. }
  102. }
  103. static void softthresh_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. if (level > 0) dst[j] = (level - threshold1 + 4) >> 3;
  117. else dst[j] = (level + threshold1 + 4) >> 3;
  118. }
  119. }
  120. }
  121. static void store_slice_c(uint8_t *dst, const int16_t *src,
  122. int dst_linesize, int src_linesize,
  123. int width, int height, int log2_scale,
  124. const uint8_t dither[8][8])
  125. {
  126. int y, x;
  127. #define STORE(pos) do { \
  128. temp = ((src[x + y*src_linesize + pos] << log2_scale) + d[pos]) >> 6; \
  129. if (temp & 0x100) \
  130. temp = ~(temp >> 31); \
  131. dst[x + y*dst_linesize + pos] = temp; \
  132. } while (0)
  133. for (y = 0; y < height; y++) {
  134. const uint8_t *d = dither[y];
  135. for (x = 0; x < width; x += 8) {
  136. int temp;
  137. STORE(0);
  138. STORE(1);
  139. STORE(2);
  140. STORE(3);
  141. STORE(4);
  142. STORE(5);
  143. STORE(6);
  144. STORE(7);
  145. }
  146. }
  147. }
  148. static inline void add_block(int16_t *dst, int linesize, const int16_t block[64])
  149. {
  150. int y;
  151. for (y = 0; y < 8; y++) {
  152. *(uint32_t *)&dst[0 + y*linesize] += *(uint32_t *)&block[0 + y*8];
  153. *(uint32_t *)&dst[2 + y*linesize] += *(uint32_t *)&block[2 + y*8];
  154. *(uint32_t *)&dst[4 + y*linesize] += *(uint32_t *)&block[4 + y*8];
  155. *(uint32_t *)&dst[6 + y*linesize] += *(uint32_t *)&block[6 + y*8];
  156. }
  157. }
  158. // XXX: export the function?
  159. static inline int norm_qscale(int qscale, int type)
  160. {
  161. switch (type) {
  162. case FF_QSCALE_TYPE_MPEG1: return qscale;
  163. case FF_QSCALE_TYPE_MPEG2: return qscale >> 1;
  164. case FF_QSCALE_TYPE_H264: return qscale >> 2;
  165. case FF_QSCALE_TYPE_VP56: return (63 - qscale + 2) >> 2;
  166. }
  167. return qscale;
  168. }
  169. static void filter(SPPContext *p, uint8_t *dst, uint8_t *src,
  170. int dst_linesize, int src_linesize, int width, int height,
  171. const uint8_t *qp_table, int qp_stride, int is_luma)
  172. {
  173. int x, y, i;
  174. const int count = 1 << p->log2_count;
  175. const int linesize = is_luma ? p->temp_linesize : FFALIGN(width+16, 16);
  176. DECLARE_ALIGNED(16, uint64_t, block_align)[32];
  177. int16_t *block = (int16_t *)block_align;
  178. int16_t *block2 = (int16_t *)(block_align + 16);
  179. for (y = 0; y < height; y++) {
  180. int index = 8 + 8*linesize + y*linesize;
  181. memcpy(p->src + index, src + y*src_linesize, width);
  182. for (x = 0; x < 8; x++) {
  183. p->src[index - x - 1] = p->src[index + x ];
  184. p->src[index + width + x ] = p->src[index + width - x - 1];
  185. }
  186. }
  187. for (y = 0; y < 8; y++) {
  188. memcpy(p->src + ( 7-y)*linesize, p->src + ( y+8)*linesize, linesize);
  189. memcpy(p->src + (height+8+y)*linesize, p->src + (height-y+7)*linesize, linesize);
  190. }
  191. for (y = 0; y < height + 8; y += 8) {
  192. memset(p->temp + (8 + y) * linesize, 0, 8 * linesize * sizeof(*p->temp));
  193. for (x = 0; x < width + 8; x += 8) {
  194. int qp;
  195. if (p->qp) {
  196. qp = p->qp;
  197. } else{
  198. const int qps = 3 + is_luma;
  199. qp = qp_table[(FFMIN(x, width - 1) >> qps) + (FFMIN(y, height - 1) >> qps) * qp_stride];
  200. qp = FFMAX(1, norm_qscale(qp, p->qscale_type));
  201. }
  202. for (i = 0; i < count; i++) {
  203. const int x1 = x + offset[i + count - 1][0];
  204. const int y1 = y + offset[i + count - 1][1];
  205. const int index = x1 + y1*linesize;
  206. p->pdsp.get_pixels(block, p->src + index, linesize);
  207. p->fdsp.fdct(block);
  208. p->requantize(block2, block, qp, p->idsp.idct_permutation);
  209. p->idsp.idct(block2);
  210. add_block(p->temp + index, linesize, block2);
  211. }
  212. }
  213. if (y)
  214. p->store_slice(dst + (y - 8) * dst_linesize, p->temp + 8 + y*linesize,
  215. dst_linesize, linesize, width,
  216. FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count,
  217. ldither);
  218. }
  219. }
  220. static int query_formats(AVFilterContext *ctx)
  221. {
  222. static const enum PixelFormat pix_fmts[] = {
  223. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  224. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  225. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  226. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
  227. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
  228. AV_PIX_FMT_NONE
  229. };
  230. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  231. return 0;
  232. }
  233. static int config_input(AVFilterLink *inlink)
  234. {
  235. SPPContext *spp = inlink->dst->priv;
  236. const int h = FFALIGN(inlink->h + 16, 16);
  237. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  238. spp->hsub = desc->log2_chroma_w;
  239. spp->vsub = desc->log2_chroma_h;
  240. spp->temp_linesize = FFALIGN(inlink->w + 16, 16);
  241. spp->temp = av_malloc_array(spp->temp_linesize, h * sizeof(*spp->temp));
  242. spp->src = av_malloc_array(spp->temp_linesize, h * sizeof(*spp->src));
  243. if (!spp->use_bframe_qp) {
  244. /* we are assuming here the qp blocks will not be smaller that 16x16 */
  245. spp->non_b_qp_alloc_size = FF_CEIL_RSHIFT(inlink->w, 4) * FF_CEIL_RSHIFT(inlink->h, 4);
  246. spp->non_b_qp_table = av_calloc(spp->non_b_qp_alloc_size, sizeof(*spp->non_b_qp_table));
  247. if (!spp->non_b_qp_table)
  248. return AVERROR(ENOMEM);
  249. }
  250. if (!spp->temp || !spp->src)
  251. return AVERROR(ENOMEM);
  252. return 0;
  253. }
  254. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  255. {
  256. AVFilterContext *ctx = inlink->dst;
  257. SPPContext *spp = ctx->priv;
  258. AVFilterLink *outlink = ctx->outputs[0];
  259. AVFrame *out = in;
  260. int qp_stride = 0;
  261. const int8_t *qp_table = NULL;
  262. /* if we are not in a constant user quantizer mode and we don't want to use
  263. * the quantizers from the B-frames (B-frames often have a higher QP), we
  264. * need to save the qp table from the last non B-frame; this is what the
  265. * following code block does */
  266. if (!spp->qp) {
  267. qp_table = av_frame_get_qp_table(in, &qp_stride, &spp->qscale_type);
  268. if (qp_table && !spp->use_bframe_qp && in->pict_type != AV_PICTURE_TYPE_B) {
  269. int w, h;
  270. /* if the qp stride is not set, it means the QP are only defined on
  271. * a line basis */
  272. if (!qp_stride) {
  273. w = FF_CEIL_RSHIFT(inlink->w, 4);
  274. h = 1;
  275. } else {
  276. w = FF_CEIL_RSHIFT(qp_stride, 4);
  277. h = FF_CEIL_RSHIFT(inlink->h, 4);
  278. }
  279. av_assert0(w * h <= spp->non_b_qp_alloc_size);
  280. memcpy(spp->non_b_qp_table, qp_table, w * h);
  281. }
  282. }
  283. if (spp->log2_count && !ctx->is_disabled) {
  284. if (!spp->use_bframe_qp && spp->non_b_qp_table)
  285. qp_table = spp->non_b_qp_table;
  286. if (qp_table || spp->qp) {
  287. const int cw = FF_CEIL_RSHIFT(inlink->w, spp->hsub);
  288. const int ch = FF_CEIL_RSHIFT(inlink->h, spp->vsub);
  289. /* get a new frame if in-place is not possible or if the dimensions
  290. * are not multiple of 8 */
  291. if (!av_frame_is_writable(in) || (inlink->w & 7) || (inlink->h & 7)) {
  292. const int aligned_w = FFALIGN(inlink->w, 8);
  293. const int aligned_h = FFALIGN(inlink->h, 8);
  294. out = ff_get_video_buffer(outlink, aligned_w, aligned_h);
  295. if (!out) {
  296. av_frame_free(&in);
  297. return AVERROR(ENOMEM);
  298. }
  299. av_frame_copy_props(out, in);
  300. out->width = in->width;
  301. out->height = in->height;
  302. }
  303. filter(spp, out->data[0], in->data[0], out->linesize[0], in->linesize[0], inlink->w, inlink->h, qp_table, qp_stride, 1);
  304. filter(spp, out->data[1], in->data[1], out->linesize[1], in->linesize[1], cw, ch, qp_table, qp_stride, 0);
  305. filter(spp, out->data[2], in->data[2], out->linesize[2], in->linesize[2], cw, ch, qp_table, qp_stride, 0);
  306. emms_c();
  307. }
  308. }
  309. if (in != out) {
  310. if (in->data[3])
  311. av_image_copy_plane(out->data[3], out->linesize[3],
  312. in ->data[3], in ->linesize[3],
  313. inlink->w, inlink->h);
  314. av_frame_free(&in);
  315. }
  316. return ff_filter_frame(outlink, out);
  317. }
  318. static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
  319. char *res, int res_len, int flags)
  320. {
  321. SPPContext *spp = ctx->priv;
  322. if (!strcmp(cmd, "level")) {
  323. if (!strcmp(args, "max"))
  324. spp->log2_count = MAX_LEVEL;
  325. else
  326. spp->log2_count = av_clip(strtol(args, NULL, 10), 0, MAX_LEVEL);
  327. return 0;
  328. }
  329. return AVERROR(ENOSYS);
  330. }
  331. static av_cold int init(AVFilterContext *ctx)
  332. {
  333. SPPContext *spp = ctx->priv;
  334. spp->avctx = avcodec_alloc_context3(NULL);
  335. if (!spp->avctx)
  336. return AVERROR(ENOMEM);
  337. ff_idctdsp_init(&spp->idsp, spp->avctx);
  338. ff_fdctdsp_init(&spp->fdsp, spp->avctx);
  339. ff_pixblockdsp_init(&spp->pdsp, spp->avctx);
  340. spp->store_slice = store_slice_c;
  341. switch (spp->mode) {
  342. case MODE_HARD: spp->requantize = hardthresh_c; break;
  343. case MODE_SOFT: spp->requantize = softthresh_c; break;
  344. }
  345. if (ARCH_X86)
  346. ff_spp_init_x86(spp);
  347. return 0;
  348. }
  349. static av_cold void uninit(AVFilterContext *ctx)
  350. {
  351. SPPContext *spp = ctx->priv;
  352. av_freep(&spp->temp);
  353. av_freep(&spp->src);
  354. if (spp->avctx) {
  355. avcodec_close(spp->avctx);
  356. av_freep(&spp->avctx);
  357. }
  358. av_freep(&spp->non_b_qp_table);
  359. }
  360. static const AVFilterPad spp_inputs[] = {
  361. {
  362. .name = "default",
  363. .type = AVMEDIA_TYPE_VIDEO,
  364. .config_props = config_input,
  365. .filter_frame = filter_frame,
  366. },
  367. { NULL }
  368. };
  369. static const AVFilterPad spp_outputs[] = {
  370. {
  371. .name = "default",
  372. .type = AVMEDIA_TYPE_VIDEO,
  373. },
  374. { NULL }
  375. };
  376. AVFilter ff_vf_spp = {
  377. .name = "spp",
  378. .description = NULL_IF_CONFIG_SMALL("Apply a simple post processing filter."),
  379. .priv_size = sizeof(SPPContext),
  380. .init = init,
  381. .uninit = uninit,
  382. .query_formats = query_formats,
  383. .inputs = spp_inputs,
  384. .outputs = spp_outputs,
  385. .process_command = process_command,
  386. .priv_class = &spp_class,
  387. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
  388. };