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.

254 lines
9.1KB

  1. /*
  2. * Copyright (c) 2010 Brandon Mintern
  3. * Copyright (c) 2007 Bobby Bingham
  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. * video fade filter
  24. * based heavily on vf_negate.c by Bobby Bingham
  25. */
  26. #include "libavutil/avstring.h"
  27. #include "libavutil/common.h"
  28. #include "libavutil/eval.h"
  29. #include "libavutil/opt.h"
  30. #include "libavutil/pixdesc.h"
  31. #include "avfilter.h"
  32. #include "drawutils.h"
  33. #include "internal.h"
  34. #include "formats.h"
  35. #include "internal.h"
  36. #include "video.h"
  37. #define R 0
  38. #define G 1
  39. #define B 2
  40. #define A 3
  41. #define Y 0
  42. #define U 1
  43. #define V 2
  44. #define FADE_IN 0
  45. #define FADE_OUT 1
  46. typedef struct {
  47. const AVClass *class;
  48. int type;
  49. int factor, fade_per_frame;
  50. int start_frame, nb_frames;
  51. unsigned int frame_index, stop_frame;
  52. int hsub, vsub, bpp;
  53. unsigned int black_level, black_level_scaled;
  54. uint8_t is_packed_rgb;
  55. uint8_t rgba_map[4];
  56. int alpha;
  57. } FadeContext;
  58. static av_cold int init(AVFilterContext *ctx)
  59. {
  60. FadeContext *fade = ctx->priv;
  61. fade->fade_per_frame = (1 << 16) / fade->nb_frames;
  62. if (fade->type == FADE_IN) {
  63. fade->factor = 0;
  64. } else if (fade->type == FADE_OUT) {
  65. fade->fade_per_frame = -fade->fade_per_frame;
  66. fade->factor = (1 << 16);
  67. }
  68. fade->stop_frame = fade->start_frame + fade->nb_frames;
  69. av_log(ctx, AV_LOG_VERBOSE,
  70. "type:%s start_frame:%d nb_frames:%d alpha:%d\n",
  71. fade->type == FADE_IN ? "in" : "out", fade->start_frame,
  72. fade->nb_frames, fade->alpha);
  73. return 0;
  74. }
  75. static int query_formats(AVFilterContext *ctx)
  76. {
  77. static const enum AVPixelFormat pix_fmts[] = {
  78. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  79. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  80. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
  81. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  82. AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P,
  83. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
  84. AV_PIX_FMT_ARGB, AV_PIX_FMT_ABGR,
  85. AV_PIX_FMT_RGBA, AV_PIX_FMT_BGRA,
  86. AV_PIX_FMT_NONE
  87. };
  88. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  89. return 0;
  90. }
  91. const static enum AVPixelFormat studio_level_pix_fmts[] = {
  92. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  93. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  94. AV_PIX_FMT_YUV440P,
  95. AV_PIX_FMT_NONE
  96. };
  97. static int config_props(AVFilterLink *inlink)
  98. {
  99. FadeContext *fade = inlink->dst->priv;
  100. const AVPixFmtDescriptor *pixdesc = av_pix_fmt_desc_get(inlink->format);
  101. fade->hsub = pixdesc->log2_chroma_w;
  102. fade->vsub = pixdesc->log2_chroma_h;
  103. fade->bpp = av_get_bits_per_pixel(pixdesc) >> 3;
  104. fade->alpha &= pixdesc->flags & PIX_FMT_ALPHA;
  105. fade->is_packed_rgb = ff_fill_rgba_map(fade->rgba_map, inlink->format) >= 0;
  106. /* use CCIR601/709 black level for studio-level pixel non-alpha components */
  107. fade->black_level =
  108. ff_fmt_is_in(inlink->format, studio_level_pix_fmts) && !fade->alpha ? 16 : 0;
  109. /* 32768 = 1 << 15, it is an integer representation
  110. * of 0.5 and is for rounding. */
  111. fade->black_level_scaled = (fade->black_level << 16) + 32768;
  112. return 0;
  113. }
  114. static void fade_plane(int y, int h, int w,
  115. int fade_factor, int black_level, int black_level_scaled,
  116. uint8_t offset, uint8_t step, int bytes_per_plane,
  117. uint8_t *data, int line_size)
  118. {
  119. uint8_t *p;
  120. int i, j;
  121. /* luma, alpha or rgb plane */
  122. for (i = 0; i < h; i++) {
  123. p = data + offset + (y+i) * line_size;
  124. for (j = 0; j < w * bytes_per_plane; j++) {
  125. /* fade->factor is using 16 lower-order bits for decimal places. */
  126. *p = ((*p - black_level) * fade_factor + black_level_scaled) >> 16;
  127. p+=step;
  128. }
  129. }
  130. }
  131. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  132. {
  133. FadeContext *fade = inlink->dst->priv;
  134. uint8_t *p;
  135. int i, j, plane;
  136. if (fade->factor < UINT16_MAX) {
  137. if (fade->alpha) {
  138. // alpha only
  139. plane = fade->is_packed_rgb ? 0 : A; // alpha is on plane 0 for packed formats
  140. // or plane 3 for planar formats
  141. fade_plane(0, frame->height, inlink->w,
  142. fade->factor, fade->black_level, fade->black_level_scaled,
  143. fade->is_packed_rgb ? fade->rgba_map[A] : 0, // alpha offset for packed formats
  144. fade->is_packed_rgb ? 4 : 1, // pixstep for 8 bit packed formats
  145. 1, frame->data[plane], frame->linesize[plane]);
  146. } else {
  147. /* luma or rgb plane */
  148. fade_plane(0, frame->height, inlink->w,
  149. fade->factor, fade->black_level, fade->black_level_scaled,
  150. 0, 1, // offset & pixstep for Y plane or RGB packed format
  151. fade->bpp, frame->data[0], frame->linesize[0]);
  152. if (frame->data[1] && frame->data[2]) {
  153. /* chroma planes */
  154. for (plane = 1; plane < 3; plane++) {
  155. for (i = 0; i < frame->height; i++) {
  156. p = frame->data[plane] + (i >> fade->vsub) * frame->linesize[plane];
  157. for (j = 0; j < inlink->w >> fade->hsub; j++) {
  158. /* 8421367 = ((128 << 1) + 1) << 15. It is an integer
  159. * representation of 128.5. The .5 is for rounding
  160. * purposes. */
  161. *p = ((*p - 128) * fade->factor + 8421367) >> 16;
  162. p++;
  163. }
  164. }
  165. }
  166. }
  167. }
  168. }
  169. if (fade->frame_index >= fade->start_frame &&
  170. fade->frame_index <= fade->stop_frame)
  171. fade->factor += fade->fade_per_frame;
  172. fade->factor = av_clip_uint16(fade->factor);
  173. fade->frame_index++;
  174. return ff_filter_frame(inlink->dst->outputs[0], frame);
  175. }
  176. #define OFFSET(x) offsetof(FadeContext, x)
  177. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  178. static const AVOption fade_options[] = {
  179. { "type", "'in' or 'out' for fade-in/fade-out", OFFSET(type), AV_OPT_TYPE_INT, { .i64 = FADE_IN }, FADE_IN, FADE_OUT, FLAGS, "type" },
  180. { "t", "'in' or 'out' for fade-in/fade-out", OFFSET(type), AV_OPT_TYPE_INT, { .i64 = FADE_IN }, FADE_IN, FADE_OUT, FLAGS, "type" },
  181. { "in", "fade-in", 0, AV_OPT_TYPE_CONST, { .i64 = FADE_IN }, .unit = "type" },
  182. { "out", "fade-out", 0, AV_OPT_TYPE_CONST, { .i64 = FADE_OUT }, .unit = "type" },
  183. { "start_frame", "Number of the first frame to which to apply the effect.",
  184. OFFSET(start_frame), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  185. { "s", "Number of the first frame to which to apply the effect.",
  186. OFFSET(start_frame), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  187. { "nb_frames", "Number of frames to which the effect should be applied.",
  188. OFFSET(nb_frames), AV_OPT_TYPE_INT, { .i64 = 25 }, 0, INT_MAX, FLAGS },
  189. { "n", "Number of frames to which the effect should be applied.",
  190. OFFSET(nb_frames), AV_OPT_TYPE_INT, { .i64 = 25 }, 0, INT_MAX, FLAGS },
  191. { "alpha", "fade alpha if it is available on the input", OFFSET(alpha), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 1, FLAGS },
  192. { NULL },
  193. };
  194. AVFILTER_DEFINE_CLASS(fade);
  195. static const AVFilterPad avfilter_vf_fade_inputs[] = {
  196. {
  197. .name = "default",
  198. .type = AVMEDIA_TYPE_VIDEO,
  199. .config_props = config_props,
  200. .get_video_buffer = ff_null_get_video_buffer,
  201. .filter_frame = filter_frame,
  202. .needs_writable = 1,
  203. },
  204. { NULL }
  205. };
  206. static const AVFilterPad avfilter_vf_fade_outputs[] = {
  207. {
  208. .name = "default",
  209. .type = AVMEDIA_TYPE_VIDEO,
  210. },
  211. { NULL }
  212. };
  213. AVFilter avfilter_vf_fade = {
  214. .name = "fade",
  215. .description = NULL_IF_CONFIG_SMALL("Fade in/out input video."),
  216. .init = init,
  217. .priv_size = sizeof(FadeContext),
  218. .priv_class = &fade_class,
  219. .query_formats = query_formats,
  220. .inputs = avfilter_vf_fade_inputs,
  221. .outputs = avfilter_vf_fade_outputs,
  222. };