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.

262 lines
9.2KB

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