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.

190 lines
5.5KB

  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_YUV444P, AV_PIX_FMT_YUVJ444P,
  72. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  73. AV_PIX_FMT_NONE
  74. };
  75. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  76. return 0;
  77. }
  78. static int pp_config_props(AVFilterLink *inlink)
  79. {
  80. int flags = PP_CPU_CAPS_AUTO;
  81. PPFilterContext *pp = inlink->dst->priv;
  82. switch (inlink->format) {
  83. case AV_PIX_FMT_YUVJ420P:
  84. case AV_PIX_FMT_YUV420P: flags |= PP_FORMAT_420; break;
  85. case AV_PIX_FMT_YUVJ422P:
  86. case AV_PIX_FMT_YUV422P: flags |= PP_FORMAT_422; break;
  87. case AV_PIX_FMT_YUV411P: flags |= PP_FORMAT_411; break;
  88. case AV_PIX_FMT_YUVJ444P:
  89. case AV_PIX_FMT_YUV444P: flags |= PP_FORMAT_444; break;
  90. case AV_PIX_FMT_YUVJ440P:
  91. case AV_PIX_FMT_YUV440P: flags |= PP_FORMAT_440; break;
  92. default: av_assert0(0);
  93. }
  94. pp->pp_ctx = pp_get_context(inlink->w, inlink->h, flags);
  95. if (!pp->pp_ctx)
  96. return AVERROR(ENOMEM);
  97. return 0;
  98. }
  99. static int pp_filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
  100. {
  101. AVFilterContext *ctx = inlink->dst;
  102. PPFilterContext *pp = ctx->priv;
  103. AVFilterLink *outlink = ctx->outputs[0];
  104. const int aligned_w = FFALIGN(outlink->w, 8);
  105. const int aligned_h = FFALIGN(outlink->h, 8);
  106. AVFrame *outbuf;
  107. int qstride, qp_type;
  108. int8_t *qp_table ;
  109. outbuf = ff_get_video_buffer(outlink, aligned_w, aligned_h);
  110. if (!outbuf) {
  111. av_frame_free(&inbuf);
  112. return AVERROR(ENOMEM);
  113. }
  114. av_frame_copy_props(outbuf, inbuf);
  115. outbuf->width = inbuf->width;
  116. outbuf->height = inbuf->height;
  117. qp_table = av_frame_get_qp_table(inbuf, &qstride, &qp_type);
  118. pp_postprocess((const uint8_t **)inbuf->data, inbuf->linesize,
  119. outbuf->data, outbuf->linesize,
  120. aligned_w, outlink->h,
  121. qp_table,
  122. qstride,
  123. pp->modes[pp->mode_id],
  124. pp->pp_ctx,
  125. outbuf->pict_type | (qp_type ? PP_PICT_TYPE_QP2 : 0));
  126. av_frame_free(&inbuf);
  127. return ff_filter_frame(outlink, outbuf);
  128. }
  129. static av_cold void pp_uninit(AVFilterContext *ctx)
  130. {
  131. int i;
  132. PPFilterContext *pp = ctx->priv;
  133. for (i = 0; i <= PP_QUALITY_MAX; i++)
  134. pp_free_mode(pp->modes[i]);
  135. if (pp->pp_ctx)
  136. pp_free_context(pp->pp_ctx);
  137. }
  138. static const AVFilterPad pp_inputs[] = {
  139. {
  140. .name = "default",
  141. .type = AVMEDIA_TYPE_VIDEO,
  142. .config_props = pp_config_props,
  143. .filter_frame = pp_filter_frame,
  144. },
  145. { NULL }
  146. };
  147. static const AVFilterPad pp_outputs[] = {
  148. {
  149. .name = "default",
  150. .type = AVMEDIA_TYPE_VIDEO,
  151. },
  152. { NULL }
  153. };
  154. AVFilter ff_vf_pp = {
  155. .name = "pp",
  156. .description = NULL_IF_CONFIG_SMALL("Filter video using libpostproc."),
  157. .priv_size = sizeof(PPFilterContext),
  158. .init = pp_init,
  159. .uninit = pp_uninit,
  160. .query_formats = pp_query_formats,
  161. .inputs = pp_inputs,
  162. .outputs = pp_outputs,
  163. .process_command = pp_process_command,
  164. .priv_class = &pp_class,
  165. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  166. };