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.

112 lines
3.3KB

  1. /*
  2. * Copyright (c) 2013 Paul B Mahol
  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 "libavutil/pixdesc.h"
  21. #include "avfilter.h"
  22. #include "internal.h"
  23. typedef struct {
  24. int nb_planes;
  25. double ts_unit;
  26. } SeparateFieldsContext;
  27. static int config_props_output(AVFilterLink *outlink)
  28. {
  29. AVFilterContext *ctx = outlink->src;
  30. SeparateFieldsContext *sf = ctx->priv;
  31. AVFilterLink *inlink = ctx->inputs[0];
  32. sf->nb_planes = av_pix_fmt_count_planes(inlink->format);
  33. if (inlink->h & 1) {
  34. av_log(ctx, AV_LOG_ERROR, "height must be even\n");
  35. return AVERROR_INVALIDDATA;
  36. }
  37. outlink->time_base.num = inlink->time_base.num;
  38. outlink->time_base.den = inlink->time_base.den * 2;
  39. outlink->frame_rate.num = inlink->frame_rate.num * 2;
  40. outlink->frame_rate.den = inlink->frame_rate.den;
  41. outlink->w = inlink->w;
  42. outlink->h = inlink->h / 2;
  43. sf->ts_unit = av_q2d(av_inv_q(av_mul_q(outlink->frame_rate, outlink->time_base)));
  44. return 0;
  45. }
  46. static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
  47. {
  48. AVFilterContext *ctx = inlink->dst;
  49. SeparateFieldsContext *sf = ctx->priv;
  50. AVFilterLink *outlink = ctx->outputs[0];
  51. AVFrame *second;
  52. int i, ret;
  53. inpicref->height = outlink->h;
  54. inpicref->interlaced_frame = 0;
  55. second = av_frame_clone(inpicref);
  56. if (!second)
  57. return AVERROR(ENOMEM);
  58. for (i = 0; i < sf->nb_planes; i++) {
  59. if (!inpicref->top_field_first)
  60. inpicref->data[i] = inpicref->data[i] + inpicref->linesize[i];
  61. else
  62. second->data[i] = second->data[i] + second->linesize[i];
  63. inpicref->linesize[i] *= 2;
  64. second->linesize[i] *= 2;
  65. }
  66. inpicref->pts = outlink->frame_count * sf->ts_unit;
  67. ret = ff_filter_frame(outlink, inpicref);
  68. if (ret < 0)
  69. return ret;
  70. second->pts = outlink->frame_count * sf->ts_unit;
  71. return ff_filter_frame(outlink, second);
  72. }
  73. static const AVFilterPad separatefields_inputs[] = {
  74. {
  75. .name = "default",
  76. .type = AVMEDIA_TYPE_VIDEO,
  77. .filter_frame = filter_frame,
  78. },
  79. { NULL }
  80. };
  81. static const AVFilterPad separatefields_outputs[] = {
  82. {
  83. .name = "default",
  84. .type = AVMEDIA_TYPE_VIDEO,
  85. .config_props = config_props_output,
  86. },
  87. { NULL }
  88. };
  89. AVFilter avfilter_vf_separatefields = {
  90. .name = "separatefields",
  91. .description = NULL_IF_CONFIG_SMALL("Split input video frames into fields."),
  92. .priv_size = sizeof(SeparateFieldsContext),
  93. .inputs = separatefields_inputs,
  94. .outputs = separatefields_outputs,
  95. };