]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_fade.c
vf_fade: use the name 's' for the pointer to the private context
[ffmpeg] / libavfilter / vf_fade.c
1 /*
2  * Copyright (c) 2010 Brandon Mintern
3  * Copyright (c) 2007 Bobby Bingham
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * video fade filter
25  * based heavily on vf_negate.c by Bobby Bingham
26  */
27
28 #include "libavutil/common.h"
29 #include "libavutil/opt.h"
30 #include "libavutil/pixdesc.h"
31 #include "avfilter.h"
32 #include "formats.h"
33 #include "internal.h"
34 #include "video.h"
35
36 #define FADE_IN  0
37 #define FADE_OUT 1
38
39 typedef struct {
40     const AVClass *class;
41     int type;
42     int factor, fade_per_frame;
43     int start_frame, nb_frames;
44     unsigned int frame_index, stop_frame;
45     int hsub, vsub, bpp;
46 } FadeContext;
47
48 static av_cold int init(AVFilterContext *ctx)
49 {
50     FadeContext *s = ctx->priv;
51
52     s->fade_per_frame = (1 << 16) / s->nb_frames;
53     if (s->type == FADE_IN) {
54         s->factor = 0;
55     } else if (s->type == FADE_OUT) {
56         s->fade_per_frame = -s->fade_per_frame;
57         s->factor = (1 << 16);
58     }
59     s->stop_frame = s->start_frame + s->nb_frames;
60
61     av_log(ctx, AV_LOG_VERBOSE,
62            "type:%s start_frame:%d nb_frames:%d\n",
63            s->type == FADE_IN ? "in" : "out", s->start_frame,
64            s->nb_frames);
65     return 0;
66 }
67
68 static int query_formats(AVFilterContext *ctx)
69 {
70     static const enum AVPixelFormat pix_fmts[] = {
71         AV_PIX_FMT_YUV444P,  AV_PIX_FMT_YUV422P,  AV_PIX_FMT_YUV420P,
72         AV_PIX_FMT_YUV411P,  AV_PIX_FMT_YUV410P,
73         AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
74         AV_PIX_FMT_YUV440P,  AV_PIX_FMT_YUVJ440P,
75         AV_PIX_FMT_RGB24,    AV_PIX_FMT_BGR24,
76         AV_PIX_FMT_NONE
77     };
78
79     ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
80     return 0;
81 }
82
83 static int config_props(AVFilterLink *inlink)
84 {
85     FadeContext *s = inlink->dst->priv;
86     const AVPixFmtDescriptor *pixdesc = av_pix_fmt_desc_get(inlink->format);
87
88     s->hsub = pixdesc->log2_chroma_w;
89     s->vsub = pixdesc->log2_chroma_h;
90
91     s->bpp = av_get_bits_per_pixel(pixdesc) >> 3;
92     return 0;
93 }
94
95 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
96 {
97     FadeContext *s = inlink->dst->priv;
98     uint8_t *p;
99     int i, j, plane;
100
101     if (s->factor < UINT16_MAX) {
102         /* luma or rgb plane */
103         for (i = 0; i < frame->height; i++) {
104             p = frame->data[0] + i * frame->linesize[0];
105             for (j = 0; j < inlink->w * s->bpp; j++) {
106                 /* s->factor is using 16 lower-order bits for decimal
107                  * places. 32768 = 1 << 15, it is an integer representation
108                  * of 0.5 and is for rounding. */
109                 *p = (*p * s->factor + 32768) >> 16;
110                 p++;
111             }
112         }
113
114         if (frame->data[1] && frame->data[2]) {
115             /* chroma planes */
116             for (plane = 1; plane < 3; plane++) {
117                 for (i = 0; i < frame->height; i++) {
118                     p = frame->data[plane] + (i >> s->vsub) * frame->linesize[plane];
119                     for (j = 0; j < inlink->w >> s->hsub; j++) {
120                         /* 8421367 = ((128 << 1) + 1) << 15. It is an integer
121                          * representation of 128.5. The .5 is for rounding
122                          * purposes. */
123                         *p = ((*p - 128) * s->factor + 8421367) >> 16;
124                         p++;
125                     }
126                 }
127             }
128         }
129     }
130
131     if (s->frame_index >= s->start_frame &&
132         s->frame_index <= s->stop_frame)
133         s->factor += s->fade_per_frame;
134     s->factor = av_clip_uint16(s->factor);
135     s->frame_index++;
136
137     return ff_filter_frame(inlink->dst->outputs[0], frame);
138 }
139
140 #define OFFSET(x) offsetof(FadeContext, x)
141 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
142 static const AVOption options[] = {
143     { "type", "'in' or 'out' for fade-in/fade-out", OFFSET(type), AV_OPT_TYPE_INT, { .i64 = FADE_IN }, FADE_IN, FADE_OUT, FLAGS, "type" },
144         { "in",  "fade-in",  0, AV_OPT_TYPE_CONST, { .i64 = FADE_IN },  .unit = "type" },
145         { "out", "fade-out", 0, AV_OPT_TYPE_CONST, { .i64 = FADE_OUT }, .unit = "type" },
146     { "start_frame", "Number of the first frame to which to apply the effect.",
147                                                     OFFSET(start_frame), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
148     { "nb_frames",   "Number of frames to which the effect should be applied.",
149                                                     OFFSET(nb_frames),   AV_OPT_TYPE_INT, { .i64 = 1 }, 0, INT_MAX, FLAGS },
150     { NULL },
151 };
152
153 static const AVClass fade_class = {
154     .class_name = "fade",
155     .item_name  = av_default_item_name,
156     .option     = options,
157     .version    = LIBAVUTIL_VERSION_INT,
158 };
159
160 static const AVFilterPad avfilter_vf_fade_inputs[] = {
161     {
162         .name             = "default",
163         .type             = AVMEDIA_TYPE_VIDEO,
164         .config_props     = config_props,
165         .get_video_buffer = ff_null_get_video_buffer,
166         .filter_frame     = filter_frame,
167         .needs_writable   = 1,
168     },
169     { NULL }
170 };
171
172 static const AVFilterPad avfilter_vf_fade_outputs[] = {
173     {
174         .name = "default",
175         .type = AVMEDIA_TYPE_VIDEO,
176     },
177     { NULL }
178 };
179
180 AVFilter avfilter_vf_fade = {
181     .name          = "fade",
182     .description   = NULL_IF_CONFIG_SMALL("Fade in/out input video"),
183     .init          = init,
184     .priv_size     = sizeof(FadeContext),
185     .priv_class    = &fade_class,
186     .query_formats = query_formats,
187
188     .inputs    = avfilter_vf_fade_inputs,
189     .outputs   = avfilter_vf_fade_outputs,
190 };