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.

132 lines
4.1KB

  1. /*
  2. * Copyright (c) 2003 Rich Felker
  3. * Copyright (c) 2012 Stefano Sabatini
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (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 GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * field filter, based on libmpcodecs/vf_field.c by Rich Felker
  24. */
  25. #include "libavutil/opt.h"
  26. #include "libavutil/pixdesc.h"
  27. #include "avfilter.h"
  28. #include "internal.h"
  29. enum FieldType { FIELD_TYPE_TOP = 0, FIELD_TYPE_BOTTOM };
  30. typedef struct {
  31. const AVClass *class;
  32. enum FieldType type;
  33. int nb_planes; ///< number of planes of the current format
  34. } FieldContext;
  35. #define OFFSET(x) offsetof(FieldContext, x)
  36. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  37. static const AVOption field_options[] = {
  38. {"type", "set field type (top or bottom)", OFFSET(type), AV_OPT_TYPE_INT, {.i64=FIELD_TYPE_TOP}, 0, 1, FLAGS, "field_type" },
  39. {"top", "select top field", 0, AV_OPT_TYPE_CONST, {.i64=FIELD_TYPE_TOP}, INT_MIN, INT_MAX, FLAGS, "field_type"},
  40. {"bottom", "select bottom field", 0, AV_OPT_TYPE_CONST, {.i64=FIELD_TYPE_BOTTOM}, INT_MIN, INT_MAX, FLAGS, "field_type"},
  41. {NULL}
  42. };
  43. AVFILTER_DEFINE_CLASS(field);
  44. static av_cold int init(AVFilterContext *ctx, const char *args)
  45. {
  46. FieldContext *field = ctx->priv;
  47. static const char *shorthand[] = { "type", NULL };
  48. field->class = &field_class;
  49. av_opt_set_defaults(field);
  50. return av_opt_set_from_string(field, args, shorthand, "=", ":");
  51. }
  52. static int config_props_output(AVFilterLink *outlink)
  53. {
  54. AVFilterContext *ctx = outlink->src;
  55. FieldContext *field = ctx->priv;
  56. AVFilterLink *inlink = ctx->inputs[0];
  57. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  58. int i;
  59. for (i = 0; i < desc->nb_components; i++)
  60. field->nb_planes = FFMAX(field->nb_planes, desc->comp[i].plane);
  61. field->nb_planes++;
  62. outlink->w = inlink->w;
  63. outlink->h = (inlink->h + (field->type == FIELD_TYPE_TOP)) / 2;
  64. av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d type:%s -> w:%d h:%d\n",
  65. inlink->w, inlink->h, field->type == FIELD_TYPE_BOTTOM ? "bottom" : "top",
  66. outlink->w, outlink->h);
  67. return 0;
  68. }
  69. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
  70. {
  71. FieldContext *field = inlink->dst->priv;
  72. AVFilterLink *outlink = inlink->dst->outputs[0];
  73. int i;
  74. inpicref->video->h = outlink->h;
  75. inpicref->video->interlaced = 0;
  76. for (i = 0; i < field->nb_planes; i++) {
  77. if (field->type == FIELD_TYPE_BOTTOM)
  78. inpicref->data[i] = inpicref->data[i] + inpicref->linesize[i];
  79. inpicref->linesize[i] = 2 * inpicref->linesize[i];
  80. }
  81. return ff_filter_frame(outlink, inpicref);
  82. }
  83. static const AVFilterPad field_inputs[] = {
  84. {
  85. .name = "default",
  86. .type = AVMEDIA_TYPE_VIDEO,
  87. .get_video_buffer = ff_null_get_video_buffer,
  88. .filter_frame = filter_frame,
  89. },
  90. { NULL }
  91. };
  92. static const AVFilterPad field_outputs[] = {
  93. {
  94. .name = "default",
  95. .type = AVMEDIA_TYPE_VIDEO,
  96. .config_props = config_props_output,
  97. },
  98. { NULL }
  99. };
  100. AVFilter avfilter_vf_field = {
  101. .name = "field",
  102. .description = NULL_IF_CONFIG_SMALL("Extract a field from the input video."),
  103. .priv_size = sizeof(FieldContext),
  104. .init = init,
  105. .inputs = field_inputs,
  106. .outputs = field_outputs,
  107. .priv_class = &field_class,
  108. };