]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
Prefix value for flags with "0x", to make it clear that it is an
[ffmpeg] / libavfilter / vf_scale.c
1 /*
2  * copyright (c) 2007 Bobby Bingham
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
21 /**
22  * @file
23  * scale video filter
24  */
25
26 #include "avfilter.h"
27 #include "libavutil/pixdesc.h"
28 #include "libswscale/swscale.h"
29
30 typedef struct {
31     struct SwsContext *sws;     ///< software scaler context
32
33     /**
34      * New dimensions. Special values are:
35      *   0 = original width/height
36      *  -1 = keep original aspect
37      */
38     int w, h;
39     unsigned int flags;         ///sws flags
40
41     int hsub, vsub;             ///< chroma subsampling
42     int slice_y;                ///< top of current output slice
43     int input_is_pal;           ///< set to 1 if the input format is paletted
44 } ScaleContext;
45
46 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
47 {
48     ScaleContext *scale = ctx->priv;
49     const char *p;
50
51     scale->flags = SWS_BILINEAR;
52     if (args){
53         sscanf(args, "%d:%d", &scale->w, &scale->h);
54         p= strstr(args,"flags=");
55         if(p) scale->flags= strtoul(p+6, NULL, 0);
56     }
57
58     /* sanity check params */
59     if (scale->w <  -1 || scale->h <  -1) {
60         av_log(ctx, AV_LOG_ERROR, "Size values less than -1 are not acceptable.\n");
61         return -1;
62     }
63     if (scale->w == -1 && scale->h == -1)
64         scale->w = scale->h = 0;
65
66     return 0;
67 }
68
69 static av_cold void uninit(AVFilterContext *ctx)
70 {
71     ScaleContext *scale = ctx->priv;
72     sws_freeContext(scale->sws);
73     scale->sws = NULL;
74 }
75
76 static int query_formats(AVFilterContext *ctx)
77 {
78     AVFilterFormats *formats;
79     enum PixelFormat pix_fmt;
80     int ret;
81
82     if (ctx->inputs[0]) {
83         formats = NULL;
84         for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
85             if (   sws_isSupportedInput(pix_fmt)
86                 && (ret = avfilter_add_colorspace(&formats, pix_fmt)) < 0) {
87                 avfilter_formats_unref(&formats);
88                 return ret;
89             }
90         avfilter_formats_ref(formats, &ctx->inputs[0]->out_formats);
91     }
92     if (ctx->outputs[0]) {
93         formats = NULL;
94         for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
95             if (    sws_isSupportedOutput(pix_fmt)
96                 && (ret = avfilter_add_colorspace(&formats, pix_fmt)) < 0) {
97                 avfilter_formats_unref(&formats);
98                 return ret;
99             }
100         avfilter_formats_ref(formats, &ctx->outputs[0]->in_formats);
101     }
102
103     return 0;
104 }
105
106 static int config_props(AVFilterLink *outlink)
107 {
108     AVFilterContext *ctx = outlink->src;
109     AVFilterLink *inlink = outlink->src->inputs[0];
110     ScaleContext *scale = ctx->priv;
111     int64_t w, h;
112
113     if (!(w = scale->w))
114         w = inlink->w;
115     if (!(h = scale->h))
116         h = inlink->h;
117     if (w == -1)
118         w = av_rescale(h, inlink->w, inlink->h);
119     if (h == -1)
120         h = av_rescale(w, inlink->h, inlink->w);
121
122     if (w > INT_MAX || h > INT_MAX ||
123         (h * inlink->w) > INT_MAX  ||
124         (w * inlink->h) > INT_MAX)
125         av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
126
127     outlink->w = w;
128     outlink->h = h;
129
130     /* TODO: make algorithm configurable */
131     av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s -> w:%d h:%d fmt:%s flags:0x%0x\n",
132            inlink ->w, inlink ->h, av_pix_fmt_descriptors[ inlink->format].name,
133            outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name,
134            scale->flags);
135
136     scale->input_is_pal = av_pix_fmt_descriptors[inlink->format].flags & PIX_FMT_PAL;
137
138     scale->sws = sws_getContext(inlink ->w, inlink ->h, inlink ->format,
139                                 outlink->w, outlink->h, outlink->format,
140                                 scale->flags, NULL, NULL, NULL);
141
142     return !scale->sws;
143 }
144
145 static void start_frame(AVFilterLink *link, AVFilterPicRef *picref)
146 {
147     ScaleContext *scale = link->dst->priv;
148     AVFilterLink *outlink = link->dst->outputs[0];
149     AVFilterPicRef *outpicref;
150
151     scale->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
152     scale->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
153
154     outpicref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE, outlink->w, outlink->h);
155     outpicref->pts = picref->pts;
156     outpicref->pos = picref->pos;
157     outpicref->interlaced           = picref->interlaced;
158     outpicref->top_field_first      = picref->top_field_first;
159
160     outlink->outpic = outpicref;
161
162     av_reduce(&outpicref->pixel_aspect.num, &outpicref->pixel_aspect.den,
163               (int64_t)picref->pixel_aspect.num * outlink->h * link->w,
164               (int64_t)picref->pixel_aspect.den * outlink->w * link->h,
165               INT_MAX);
166
167     scale->slice_y = 0;
168     avfilter_start_frame(outlink, avfilter_ref_pic(outpicref, ~0));
169 }
170
171 static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
172 {
173     ScaleContext *scale = link->dst->priv;
174     int out_h;
175     AVFilterPicRef *cur_pic = link->cur_pic;
176     uint8_t *data[4];
177
178     if (scale->slice_y == 0 && slice_dir == -1)
179         scale->slice_y = link->dst->outputs[0]->h;
180
181     data[0] = cur_pic->data[0] +  y               * cur_pic->linesize[0];
182     data[1] = scale->input_is_pal ?
183               cur_pic->data[1] :
184               cur_pic->data[1] + (y>>scale->vsub) * cur_pic->linesize[1];
185     data[2] = cur_pic->data[2] + (y>>scale->vsub) * cur_pic->linesize[2];
186     data[3] = cur_pic->data[3] +  y               * cur_pic->linesize[3];
187
188     out_h = sws_scale(scale->sws, data, cur_pic->linesize, y, h,
189                       link->dst->outputs[0]->outpic->data,
190                       link->dst->outputs[0]->outpic->linesize);
191
192     if (slice_dir == -1)
193         scale->slice_y -= out_h;
194     avfilter_draw_slice(link->dst->outputs[0], scale->slice_y, out_h, slice_dir);
195     if (slice_dir == 1)
196         scale->slice_y += out_h;
197 }
198
199 AVFilter avfilter_vf_scale = {
200     .name      = "scale",
201     .description = "Scale the input video to width:height size and/or convert the image format.",
202
203     .init      = init,
204     .uninit    = uninit,
205
206     .query_formats = query_formats,
207
208     .priv_size = sizeof(ScaleContext),
209
210     .inputs    = (AVFilterPad[]) {{ .name             = "default",
211                                     .type             = AVMEDIA_TYPE_VIDEO,
212                                     .start_frame      = start_frame,
213                                     .draw_slice       = draw_slice,
214                                     .min_perms        = AV_PERM_READ, },
215                                   { .name = NULL}},
216     .outputs   = (AVFilterPad[]) {{ .name             = "default",
217                                     .type             = AVMEDIA_TYPE_VIDEO,
218                                     .config_props     = config_props, },
219                                   { .name = NULL}},
220 };