vf_pp.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*
  2. * Copyright (c) 2002 A'rpi
  3. * Copyright (C) 2012 Clément Bœsch
  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. * libpostproc filter, ported from MPlayer.
  24. */
  25. #include "libavutil/avassert.h"
  26. #include "libavutil/opt.h"
  27. #include "internal.h"
  28. #include "libpostproc/postprocess.h"
  29. typedef struct {
  30. const AVClass *class;
  31. char *subfilters;
  32. int mode_id;
  33. pp_mode *modes[PP_QUALITY_MAX + 1];
  34. void *pp_ctx;
  35. } PPFilterContext;
  36. #define OFFSET(x) offsetof(PPFilterContext, x)
  37. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  38. static const AVOption pp_options[] = {
  39. { "subfilters", "set postprocess subfilters", OFFSET(subfilters), AV_OPT_TYPE_STRING, {.str="de"}, .flags = FLAGS },
  40. { NULL }
  41. };
  42. AVFILTER_DEFINE_CLASS(pp);
  43. static av_cold int pp_init(AVFilterContext *ctx)
  44. {
  45. int i;
  46. PPFilterContext *pp = ctx->priv;
  47. for (i = 0; i <= PP_QUALITY_MAX; i++) {
  48. pp->modes[i] = pp_get_mode_by_name_and_quality(pp->subfilters, i);
  49. if (!pp->modes[i])
  50. return AVERROR_EXTERNAL;
  51. }
  52. pp->mode_id = PP_QUALITY_MAX;
  53. return 0;
  54. }
  55. static int pp_process_command(AVFilterContext *ctx, const char *cmd, const char *args,
  56. char *res, int res_len, int flags)
  57. {
  58. PPFilterContext *pp = ctx->priv;
  59. if (!strcmp(cmd, "quality")) {
  60. pp->mode_id = av_clip(strtol(args, NULL, 10), 0, PP_QUALITY_MAX);
  61. return 0;
  62. }
  63. return AVERROR(ENOSYS);
  64. }
  65. static int pp_query_formats(AVFilterContext *ctx)
  66. {
  67. static const enum PixelFormat pix_fmts[] = {
  68. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVJ420P,
  69. AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVJ422P,
  70. AV_PIX_FMT_YUV411P,
  71. AV_PIX_FMT_GBRP,
  72. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVJ444P,
  73. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  74. AV_PIX_FMT_GRAY8,
  75. AV_PIX_FMT_NONE
  76. };
  77. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  78. return 0;
  79. }
  80. static int pp_config_props(AVFilterLink *inlink)
  81. {
  82. int flags = PP_CPU_CAPS_AUTO;
  83. PPFilterContext *pp = inlink->dst->priv;
  84. switch (inlink->format) {
  85. case AV_PIX_FMT_GRAY8:
  86. case AV_PIX_FMT_YUVJ420P:
  87. case AV_PIX_FMT_YUV420P: flags |= PP_FORMAT_420; break;
  88. case AV_PIX_FMT_YUVJ422P:
  89. case AV_PIX_FMT_YUV422P: flags |= PP_FORMAT_422; break;
  90. case AV_PIX_FMT_YUV411P: flags |= PP_FORMAT_411; break;
  91. case AV_PIX_FMT_GBRP:
  92. case AV_PIX_FMT_YUVJ444P:
  93. case AV_PIX_FMT_YUV444P: flags |= PP_FORMAT_444; break;
  94. case AV_PIX_FMT_YUVJ440P:
  95. case AV_PIX_FMT_YUV440P: flags |= PP_FORMAT_440; break;
  96. default: av_assert0(0);
  97. }
  98. pp->pp_ctx = pp_get_context(inlink->w, inlink->h, flags);
  99. if (!pp->pp_ctx)
  100. return AVERROR(ENOMEM);
  101. return 0;
  102. }
  103. static int pp_filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
  104. {
  105. AVFilterContext *ctx = inlink->dst;
  106. PPFilterContext *pp = ctx->priv;
  107. AVFilterLink *outlink = ctx->outputs[0];
  108. const int aligned_w = FFALIGN(outlink->w, 8);
  109. const int aligned_h = FFALIGN(outlink->h, 8);
  110. AVFrame *outbuf;
  111. int qstride, qp_type;
  112. int8_t *qp_table ;
  113. outbuf = ff_get_video_buffer(outlink, aligned_w, aligned_h);
  114. if (!outbuf) {
  115. av_frame_free(&inbuf);
  116. return AVERROR(ENOMEM);
  117. }
  118. av_frame_copy_props(outbuf, inbuf);
  119. outbuf->width = inbuf->width;
  120. outbuf->height = inbuf->height;
  121. qp_table = av_frame_get_qp_table(inbuf, &qstride, &qp_type);
  122. pp_postprocess((const uint8_t **)inbuf->data, inbuf->linesize,
  123. outbuf->data, outbuf->linesize,
  124. aligned_w, outlink->h,
  125. qp_table,
  126. qstride,
  127. pp->modes[pp->mode_id],
  128. pp->pp_ctx,
  129. outbuf->pict_type | (qp_type ? PP_PICT_TYPE_QP2 : 0));
  130. av_frame_free(&inbuf);
  131. return ff_filter_frame(outlink, outbuf);
  132. }
  133. static av_cold void pp_uninit(AVFilterContext *ctx)
  134. {
  135. int i;
  136. PPFilterContext *pp = ctx->priv;
  137. for (i = 0; i <= PP_QUALITY_MAX; i++)
  138. pp_free_mode(pp->modes[i]);
  139. if (pp->pp_ctx)
  140. pp_free_context(pp->pp_ctx);
  141. }
  142. static const AVFilterPad pp_inputs[] = {
  143. {
  144. .name = "default",
  145. .type = AVMEDIA_TYPE_VIDEO,
  146. .config_props = pp_config_props,
  147. .filter_frame = pp_filter_frame,
  148. },
  149. { NULL }
  150. };
  151. static const AVFilterPad pp_outputs[] = {
  152. {
  153. .name = "default",
  154. .type = AVMEDIA_TYPE_VIDEO,
  155. },
  156. { NULL }
  157. };
  158. AVFilter ff_vf_pp = {
  159. .name = "pp",
  160. .description = NULL_IF_CONFIG_SMALL("Filter video using libpostproc."),
  161. .priv_size = sizeof(PPFilterContext),
  162. .init = pp_init,
  163. .uninit = pp_uninit,
  164. .query_formats = pp_query_formats,
  165. .inputs = pp_inputs,
  166. .outputs = pp_outputs,
  167. .process_command = pp_process_command,
  168. .priv_class = &pp_class,
  169. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  170. };