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.

205 lines
6.1KB

  1. /*
  2. * Copyright (C) 2004 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <math.h>
  21. #include "libavutil/eval.h"
  22. #include "libavutil/imgutils.h"
  23. #include "libavutil/pixdesc.h"
  24. #include "libavutil/opt.h"
  25. #include "libavutil/video_enc_params.h"
  26. #include "avfilter.h"
  27. #include "formats.h"
  28. #include "internal.h"
  29. #include "video.h"
  30. typedef struct QPContext {
  31. const AVClass *class;
  32. char *qp_expr_str;
  33. int8_t lut[257];
  34. int h, qstride;
  35. int evaluate_per_mb;
  36. } QPContext;
  37. static const char *const var_names[] = { "known", "qp", "x", "y", "w", "h", NULL };
  38. #define OFFSET(x) offsetof(QPContext, x)
  39. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  40. static const AVOption qp_options[] = {
  41. { "qp", "set qp expression", OFFSET(qp_expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
  42. { NULL }
  43. };
  44. AVFILTER_DEFINE_CLASS(qp);
  45. static int config_input(AVFilterLink *inlink)
  46. {
  47. AVFilterContext *ctx = inlink->dst;
  48. QPContext *s = ctx->priv;
  49. int i;
  50. int ret;
  51. AVExpr *e = NULL;
  52. if (!s->qp_expr_str)
  53. return 0;
  54. ret = av_expr_parse(&e, s->qp_expr_str, var_names, NULL, NULL, NULL, NULL, 0, ctx);
  55. if (ret < 0)
  56. return ret;
  57. s->h = (inlink->h + 15) >> 4;
  58. s->qstride = (inlink->w + 15) >> 4;
  59. for (i = -129; i < 128; i++) {
  60. double var_values[] = { i != -129, i, NAN, NAN, s->qstride, s->h, 0};
  61. double temp_val = av_expr_eval(e, var_values, NULL);
  62. if (isnan(temp_val)) {
  63. if(strchr(s->qp_expr_str, 'x') || strchr(s->qp_expr_str, 'y'))
  64. s->evaluate_per_mb = 1;
  65. else {
  66. av_expr_free(e);
  67. return AVERROR(EINVAL);
  68. }
  69. }
  70. s->lut[i + 129] = lrintf(temp_val);
  71. }
  72. av_expr_free(e);
  73. return 0;
  74. }
  75. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  76. {
  77. AVFilterContext *ctx = inlink->dst;
  78. AVFilterLink *outlink = ctx->outputs[0];
  79. QPContext *s = ctx->priv;
  80. AVFrame *out = NULL;
  81. int ret;
  82. AVFrameSideData *sd_in;
  83. AVVideoEncParams *par_in = NULL;
  84. int8_t in_qp_global = 0;
  85. AVVideoEncParams *par_out;
  86. if (!s->qp_expr_str || ctx->is_disabled)
  87. return ff_filter_frame(outlink, in);
  88. sd_in = av_frame_get_side_data(in, AV_FRAME_DATA_VIDEO_ENC_PARAMS);
  89. if (sd_in && sd_in->size >= sizeof(AVVideoEncParams)) {
  90. par_in = (AVVideoEncParams*)sd_in->data;
  91. // we accept the input QP table only if it is of the MPEG2 type
  92. // and contains either no blocks at all or 16x16 macroblocks
  93. if (par_in->type == AV_VIDEO_ENC_PARAMS_MPEG2 &&
  94. (par_in->nb_blocks == s->h * s->qstride || !par_in->nb_blocks)) {
  95. in_qp_global = par_in->qp;
  96. if (!par_in->nb_blocks)
  97. par_in = NULL;
  98. } else
  99. par_in = NULL;
  100. }
  101. out = av_frame_clone(in);
  102. if (!out) {
  103. ret = AVERROR(ENOMEM);
  104. goto fail;
  105. }
  106. par_out = av_video_enc_params_create_side_data(out, AV_VIDEO_ENC_PARAMS_MPEG2,
  107. (s->evaluate_per_mb || sd_in) ?
  108. s->h * s->qstride : 0);
  109. if (!par_out) {
  110. ret = AVERROR(ENOMEM);
  111. goto fail;
  112. }
  113. #define BLOCK_QP_DELTA(block_idx) \
  114. (par_in ? av_video_enc_params_block(par_in, block_idx)->delta_qp : 0)
  115. if (s->evaluate_per_mb) {
  116. int y, x;
  117. for (y = 0; y < s->h; y++)
  118. for (x = 0; x < s->qstride; x++) {
  119. unsigned int block_idx = y * s->qstride + x;
  120. AVVideoBlockParams *b = av_video_enc_params_block(par_out, block_idx);
  121. int qp = sd_in ? in_qp_global + BLOCK_QP_DELTA(block_idx) : NAN;
  122. double var_values[] = { !!sd_in, qp, x, y, s->qstride, s->h, 0};
  123. double temp_val;
  124. ret = av_expr_parse_and_eval(&temp_val, s->qp_expr_str,
  125. var_names, var_values,
  126. NULL, NULL, NULL, NULL, 0, 0, ctx);
  127. if (ret < 0)
  128. goto fail;
  129. b->delta_qp = lrintf(temp_val);
  130. }
  131. } else if (sd_in) {
  132. int y, x;
  133. for (y = 0; y < s->h; y++)
  134. for (x = 0; x < s->qstride; x++) {
  135. unsigned int block_idx = y * s->qstride + x;
  136. AVVideoBlockParams *b = av_video_enc_params_block(par_out, block_idx);
  137. b->delta_qp = s->lut[129 + (int8_t)(in_qp_global + BLOCK_QP_DELTA(block_idx))];
  138. }
  139. } else {
  140. par_out->qp = s->lut[0];
  141. }
  142. ret = ff_filter_frame(outlink, out);
  143. out = NULL;
  144. fail:
  145. av_frame_free(&in);
  146. av_frame_free(&out);
  147. return ret;
  148. }
  149. static const AVFilterPad qp_inputs[] = {
  150. {
  151. .name = "default",
  152. .type = AVMEDIA_TYPE_VIDEO,
  153. .filter_frame = filter_frame,
  154. .config_props = config_input,
  155. },
  156. { NULL }
  157. };
  158. static const AVFilterPad qp_outputs[] = {
  159. {
  160. .name = "default",
  161. .type = AVMEDIA_TYPE_VIDEO,
  162. },
  163. { NULL }
  164. };
  165. AVFilter ff_vf_qp = {
  166. .name = "qp",
  167. .description = NULL_IF_CONFIG_SMALL("Change video quantization parameters."),
  168. .priv_size = sizeof(QPContext),
  169. .inputs = qp_inputs,
  170. .outputs = qp_outputs,
  171. .priv_class = &qp_class,
  172. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
  173. };