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.

201 lines
6.9KB

  1. /*
  2. * Copyright (c) 2019 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/common.h"
  21. #include "libavutil/opt.h"
  22. #include "libavutil/pixdesc.h"
  23. #include "avfilter.h"
  24. #include "formats.h"
  25. #include "internal.h"
  26. typedef struct ScrollContext {
  27. const AVClass *class;
  28. float h_speed, v_speed;
  29. float h_pos, v_pos;
  30. float h_ipos, v_ipos;
  31. const AVPixFmtDescriptor *desc;
  32. int nb_planes;
  33. int bytes;
  34. int planewidth[4];
  35. int planeheight[4];
  36. } ScrollContext;
  37. static int query_formats(AVFilterContext *ctx)
  38. {
  39. static const enum AVPixelFormat pix_fmts[] = {
  40. AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV440P,
  41. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P,
  42. AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUV420P,
  43. AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
  44. AV_PIX_FMT_YUVJ411P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  45. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
  46. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
  47. AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV440P12,
  48. AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14,
  49. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  50. AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9,
  51. AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10,
  52. AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16,
  53. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRP9, AV_PIX_FMT_GBRP10,
  54. AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
  55. AV_PIX_FMT_GBRAP, AV_PIX_FMT_GBRAP10, AV_PIX_FMT_GBRAP12, AV_PIX_FMT_GBRAP16,
  56. AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY9, AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY14, AV_PIX_FMT_GRAY16,
  57. AV_PIX_FMT_NONE
  58. };
  59. AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
  60. if (!fmts_list)
  61. return AVERROR(ENOMEM);
  62. return ff_set_common_formats(ctx, fmts_list);
  63. }
  64. static void scroll(ScrollContext *s, AVFrame *in, AVFrame *out)
  65. {
  66. int h_pos, v_pos;
  67. int pos_h[4], pos_v[4];
  68. s->h_pos = fmodf(s->h_pos, in->width);
  69. s->v_pos = fmodf(s->v_pos, in->height);
  70. h_pos = s->h_pos;
  71. v_pos = s->v_pos;
  72. if (h_pos < 0)
  73. h_pos += in->width;
  74. if (v_pos < 0)
  75. v_pos += in->height;
  76. pos_v[1] = pos_v[2] = AV_CEIL_RSHIFT(v_pos, s->desc->log2_chroma_h);
  77. pos_v[0] = pos_v[3] = v_pos;
  78. pos_h[1] = pos_h[2] = AV_CEIL_RSHIFT(h_pos, s->desc->log2_chroma_w) * s->bytes;
  79. pos_h[0] = pos_h[3] = h_pos * s->bytes;
  80. for (int p = 0; p < s->nb_planes; p++) {
  81. const uint8_t *src = in->data[p];
  82. uint8_t *dst = out->data[p];
  83. const int h = s->planeheight[p];
  84. const int w = s->planewidth[p] * s->bytes;
  85. for (int y = 0; y < h; y++) {
  86. int yy = (y + pos_v[p]) % h;
  87. const uint8_t *ssrc = src + yy * in->linesize[p];
  88. if (pos_h[p] < w)
  89. memcpy(dst, ssrc + pos_h[p], w - pos_h[p]);
  90. if (pos_h[p] > 0)
  91. memcpy(dst + w - pos_h[p], ssrc, pos_h[p]);
  92. dst += out->linesize[p];
  93. }
  94. }
  95. s->h_pos += s->h_speed * in->width;
  96. s->v_pos += s->v_speed * in->height;
  97. }
  98. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  99. {
  100. AVFilterContext *ctx = inlink->dst;
  101. ScrollContext *s = ctx->priv;
  102. AVFilterLink *outlink = ctx->outputs[0];
  103. AVFrame *out;
  104. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  105. if (!out) {
  106. av_frame_free(&in);
  107. return AVERROR(ENOMEM);
  108. }
  109. av_frame_copy_props(out, in);
  110. scroll(s, in, out);
  111. av_frame_free(&in);
  112. return ff_filter_frame(outlink, out);
  113. }
  114. static int config_input(AVFilterLink *inlink)
  115. {
  116. AVFilterContext *ctx = inlink->dst;
  117. ScrollContext *s = ctx->priv;
  118. s->desc = av_pix_fmt_desc_get(inlink->format);
  119. s->nb_planes = s->desc->nb_components;
  120. s->bytes = (s->desc->comp[0].depth + 7) >> 3;
  121. s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
  122. s->planeheight[0] = s->planeheight[3] = inlink->h;
  123. s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, s->desc->log2_chroma_w);
  124. s->planewidth[0] = s->planewidth[3] = inlink->w;
  125. s->h_pos = (1.f - s->h_ipos) * inlink->w;
  126. s->v_pos = (1.f - s->v_ipos) * inlink->h;
  127. return 0;
  128. }
  129. #define OFFSET(x) offsetof(ScrollContext, x)
  130. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  131. #define VFT AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
  132. static const AVOption scroll_options[] = {
  133. { "horizontal", "set the horizontal scrolling speed", OFFSET(h_speed), AV_OPT_TYPE_FLOAT, {.dbl=0.}, -1., 1., VFT },
  134. { "h", "set the horizontal scrolling speed", OFFSET(h_speed), AV_OPT_TYPE_FLOAT, {.dbl=0.}, -1., 1., VFT },
  135. { "vertical", "set the vertical scrolling speed", OFFSET(v_speed), AV_OPT_TYPE_FLOAT, {.dbl=0.}, -1., 1., VFT },
  136. { "v", "set the vertical scrolling speed", OFFSET(v_speed), AV_OPT_TYPE_FLOAT, {.dbl=0.}, -1., 1., VFT },
  137. { "hpos", "set initial horizontal position", OFFSET(h_ipos), AV_OPT_TYPE_FLOAT, {.dbl=0.}, 0, 1., FLAGS },
  138. { "vpos", "set initial vertical position", OFFSET(v_ipos), AV_OPT_TYPE_FLOAT, {.dbl=0.}, 0, 1., FLAGS },
  139. { NULL }
  140. };
  141. AVFILTER_DEFINE_CLASS(scroll);
  142. static const AVFilterPad scroll_inputs[] = {
  143. {
  144. .name = "default",
  145. .type = AVMEDIA_TYPE_VIDEO,
  146. .config_props = config_input,
  147. .filter_frame = filter_frame,
  148. },
  149. { NULL }
  150. };
  151. static const AVFilterPad scroll_outputs[] = {
  152. {
  153. .name = "default",
  154. .type = AVMEDIA_TYPE_VIDEO,
  155. },
  156. { NULL }
  157. };
  158. AVFilter ff_vf_scroll = {
  159. .name = "scroll",
  160. .description = NULL_IF_CONFIG_SMALL("Scroll input video."),
  161. .priv_size = sizeof(ScrollContext),
  162. .priv_class = &scroll_class,
  163. .query_formats = query_formats,
  164. .inputs = scroll_inputs,
  165. .outputs = scroll_outputs,
  166. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  167. .process_command = ff_filter_process_command,
  168. };