vf_spp.c 15 KB

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