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.

300 lines
11KB

  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. static const AVOption fade_options[] = {
  57. { "type", "set the fade direction", OFFSET(type), AV_OPT_TYPE_STRING, {.str = "in" }, CHAR_MIN, CHAR_MAX },
  58. { "t", "set the fade direction", OFFSET(type), AV_OPT_TYPE_STRING, {.str = "in" }, CHAR_MIN, CHAR_MAX },
  59. { "start_frame", "set expression of frame to start fading", OFFSET(start_frame), AV_OPT_TYPE_INT, {.dbl = 0 }, 0, INT_MAX },
  60. { "s", "set expression of frame to start fading", OFFSET(start_frame), AV_OPT_TYPE_INT, {.dbl = 0 }, 0, INT_MAX },
  61. { "nb_frames", "set expression for fade duration in frames", OFFSET(nb_frames), AV_OPT_TYPE_INT, {.dbl = 25 }, 0, INT_MAX },
  62. { "n", "set expression for fade duration in frames", OFFSET(nb_frames), AV_OPT_TYPE_INT, {.dbl = 25 }, 0, INT_MAX },
  63. { "alpha", "fade alpha if it is available on the input", OFFSET(alpha), AV_OPT_TYPE_INT, {.dbl = 0 }, 0, 1 },
  64. {NULL},
  65. };
  66. AVFILTER_DEFINE_CLASS(fade);
  67. static av_cold int init(AVFilterContext *ctx, const char *args)
  68. {
  69. FadeContext *fade = ctx->priv;
  70. int ret = 0;
  71. char *args1, *expr, *bufptr = NULL;
  72. fade->class = &fade_class;
  73. av_opt_set_defaults(fade);
  74. if (!(args1 = av_strdup(args))) {
  75. ret = AVERROR(ENOMEM);
  76. goto end;
  77. }
  78. if (expr = av_strtok(args1, ":", &bufptr)) {
  79. av_free(fade->type);
  80. if (!(fade->type = av_strdup(expr))) {
  81. ret = AVERROR(ENOMEM);
  82. goto end;
  83. }
  84. }
  85. if (expr = av_strtok(NULL, ":", &bufptr)) {
  86. if ((ret = av_opt_set(fade, "start_frame", expr, 0)) < 0) {
  87. av_log(ctx, AV_LOG_ERROR,
  88. "Invalid value '%s' for start_frame option\n", expr);
  89. return ret;
  90. }
  91. }
  92. if (expr = av_strtok(NULL, ":", &bufptr)) {
  93. if ((ret = av_opt_set(fade, "nb_frames", expr, 0)) < 0) {
  94. av_log(ctx, AV_LOG_ERROR,
  95. "Invalid value '%s' for nb_frames option\n", expr);
  96. return ret;
  97. }
  98. }
  99. if (bufptr && (ret = av_set_options_string(fade, bufptr, "=", ":")) < 0)
  100. goto end;
  101. fade->fade_per_frame = (1 << 16) / fade->nb_frames;
  102. if (!strcmp(fade->type, "in"))
  103. fade->factor = 0;
  104. else if (!strcmp(fade->type, "out")) {
  105. fade->fade_per_frame = -fade->fade_per_frame;
  106. fade->factor = (1 << 16);
  107. } else {
  108. av_log(ctx, AV_LOG_ERROR,
  109. "Type argument must be 'in' or 'out' but '%s' was specified\n", fade->type);
  110. ret = AVERROR(EINVAL);
  111. goto end;
  112. }
  113. fade->stop_frame = fade->start_frame + fade->nb_frames;
  114. av_log(ctx, AV_LOG_VERBOSE,
  115. "type:%s start_frame:%d nb_frames:%d alpha:%d\n",
  116. fade->type, fade->start_frame, fade->nb_frames, fade->alpha);
  117. end:
  118. av_free(args1);
  119. return ret;
  120. }
  121. static av_cold void uninit(AVFilterContext *ctx)
  122. {
  123. FadeContext *fade = ctx->priv;
  124. av_freep(&fade->type);
  125. }
  126. static int query_formats(AVFilterContext *ctx)
  127. {
  128. static const enum PixelFormat pix_fmts[] = {
  129. PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV420P,
  130. PIX_FMT_YUV411P, PIX_FMT_YUV410P,
  131. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ422P, PIX_FMT_YUVJ420P,
  132. PIX_FMT_YUV440P, PIX_FMT_YUVJ440P,
  133. PIX_FMT_YUVA420P,
  134. PIX_FMT_RGB24, PIX_FMT_BGR24,
  135. PIX_FMT_ARGB, PIX_FMT_ABGR,
  136. PIX_FMT_RGBA, PIX_FMT_BGRA,
  137. PIX_FMT_NONE
  138. };
  139. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  140. return 0;
  141. }
  142. const static enum PixelFormat studio_level_pix_fmts[] = {
  143. PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV420P,
  144. PIX_FMT_YUV411P, PIX_FMT_YUV410P,
  145. PIX_FMT_YUV440P,
  146. PIX_FMT_NONE
  147. };
  148. static enum PixelFormat alpha_pix_fmts[] = {
  149. PIX_FMT_YUVA420P,
  150. PIX_FMT_ARGB, PIX_FMT_ABGR,
  151. PIX_FMT_RGBA, PIX_FMT_BGRA,
  152. PIX_FMT_NONE
  153. };
  154. static int config_props(AVFilterLink *inlink)
  155. {
  156. FadeContext *fade = inlink->dst->priv;
  157. const AVPixFmtDescriptor *pixdesc = &av_pix_fmt_descriptors[inlink->format];
  158. fade->hsub = pixdesc->log2_chroma_w;
  159. fade->vsub = pixdesc->log2_chroma_h;
  160. fade->bpp = av_get_bits_per_pixel(pixdesc) >> 3;
  161. fade->alpha = fade->alpha ? ff_fmt_is_in(inlink->format, alpha_pix_fmts) : 0;
  162. fade->is_packed_rgb = ff_fill_rgba_map(fade->rgba_map, inlink->format) >= 0;
  163. /* use CCIR601/709 black level for studio-level pixel non-alpha components */
  164. fade->black_level =
  165. ff_fmt_is_in(inlink->format, studio_level_pix_fmts) && !fade->alpha ? 16 : 0;
  166. /* 32768 = 1 << 15, it is an integer representation
  167. * of 0.5 and is for rounding. */
  168. fade->black_level_scaled = (fade->black_level << 16) + 32768;
  169. return 0;
  170. }
  171. static void fade_plane(int y, int h, int w,
  172. int fade_factor, int black_level, int black_level_scaled,
  173. uint8_t offset, uint8_t step, int bytes_per_plane,
  174. uint8_t *data, int line_size)
  175. {
  176. uint8_t *p;
  177. int i, j;
  178. /* luma, alpha or rgb plane */
  179. for (i = 0; i < h; i++) {
  180. p = data + offset + (y+i) * line_size;
  181. for (j = 0; j < w * bytes_per_plane; j++) {
  182. /* fade->factor is using 16 lower-order bits for decimal places. */
  183. *p = ((*p - black_level) * fade_factor + black_level_scaled) >> 16;
  184. p+=step;
  185. }
  186. }
  187. }
  188. static int draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
  189. {
  190. FadeContext *fade = inlink->dst->priv;
  191. AVFilterBufferRef *outpic = inlink->cur_buf;
  192. uint8_t *p;
  193. int i, j, plane;
  194. if (fade->factor < UINT16_MAX) {
  195. if (fade->alpha) {
  196. // alpha only
  197. plane = fade->is_packed_rgb ? 0 : A; // alpha is on plane 0 for packed formats
  198. // or plane 3 for planar formats
  199. fade_plane(y, h, inlink->w,
  200. fade->factor, fade->black_level, fade->black_level_scaled,
  201. fade->is_packed_rgb ? fade->rgba_map[A] : 0, // alpha offset for packed formats
  202. fade->is_packed_rgb ? 4 : 1, // pixstep for 8 bit packed formats
  203. 1, outpic->data[plane], outpic->linesize[plane]);
  204. } else {
  205. /* luma or rgb plane */
  206. fade_plane(y, h, inlink->w,
  207. fade->factor, fade->black_level, fade->black_level_scaled,
  208. 0, 1, // offset & pixstep for Y plane or RGB packed format
  209. fade->bpp, outpic->data[0], outpic->linesize[0]);
  210. if (outpic->data[1] && outpic->data[2]) {
  211. /* chroma planes */
  212. for (plane = 1; plane < 3; plane++) {
  213. for (i = 0; i < h; i++) {
  214. p = outpic->data[plane] + ((y+i) >> fade->vsub) * outpic->linesize[plane];
  215. for (j = 0; j < inlink->w >> fade->hsub; j++) {
  216. /* 8421367 = ((128 << 1) + 1) << 15. It is an integer
  217. * representation of 128.5. The .5 is for rounding
  218. * purposes. */
  219. *p = ((*p - 128) * fade->factor + 8421367) >> 16;
  220. p++;
  221. }
  222. }
  223. }
  224. }
  225. }
  226. }
  227. return ff_draw_slice(inlink->dst->outputs[0], y, h, slice_dir);
  228. }
  229. static int end_frame(AVFilterLink *inlink)
  230. {
  231. FadeContext *fade = inlink->dst->priv;
  232. int ret;
  233. ret = ff_end_frame(inlink->dst->outputs[0]);
  234. if (fade->frame_index >= fade->start_frame &&
  235. fade->frame_index <= fade->stop_frame)
  236. fade->factor += fade->fade_per_frame;
  237. fade->factor = av_clip_uint16(fade->factor);
  238. fade->frame_index++;
  239. return ret;
  240. }
  241. AVFilter avfilter_vf_fade = {
  242. .name = "fade",
  243. .description = NULL_IF_CONFIG_SMALL("Fade in/out input video."),
  244. .init = init,
  245. .uninit = uninit,
  246. .priv_size = sizeof(FadeContext),
  247. .query_formats = query_formats,
  248. .inputs = (const AVFilterPad[]) {{ .name = "default",
  249. .type = AVMEDIA_TYPE_VIDEO,
  250. .config_props = config_props,
  251. .get_video_buffer = ff_null_get_video_buffer,
  252. .start_frame = ff_null_start_frame,
  253. .draw_slice = draw_slice,
  254. .end_frame = end_frame,
  255. .min_perms = AV_PERM_READ | AV_PERM_WRITE,
  256. .rej_perms = AV_PERM_PRESERVE, },
  257. { .name = NULL}},
  258. .outputs = (const AVFilterPad[]) {{ .name = "default",
  259. .type = AVMEDIA_TYPE_VIDEO, },
  260. { .name = NULL}},
  261. };