]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
vf_scale: Request an aligned buffer.
[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/avstring.h"
28 #include "libavutil/eval.h"
29 #include "libavutil/mathematics.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/avassert.h"
32 #include "libswscale/swscale.h"
33
34 static const char *var_names[] = {
35     "in_w",   "iw",
36     "in_h",   "ih",
37     "out_w",  "ow",
38     "out_h",  "oh",
39     "a",
40     "sar",
41     "dar",
42     "hsub",
43     "vsub",
44     NULL
45 };
46
47 enum var_name {
48     VAR_IN_W,   VAR_IW,
49     VAR_IN_H,   VAR_IH,
50     VAR_OUT_W,  VAR_OW,
51     VAR_OUT_H,  VAR_OH,
52     VAR_A,
53     VAR_SAR,
54     VAR_DAR,
55     VAR_HSUB,
56     VAR_VSUB,
57     VARS_NB
58 };
59
60 typedef struct {
61     struct SwsContext *sws;     ///< software scaler context
62     struct SwsContext *isws[2]; ///< software scaler context for interlaced material
63
64     /**
65      * New dimensions. Special values are:
66      *   0 = original width/height
67      *  -1 = keep original aspect
68      */
69     int w, h;
70     unsigned int flags;         ///sws flags
71
72     int hsub, vsub;             ///< chroma subsampling
73     int slice_y;                ///< top of current output slice
74     int input_is_pal;           ///< set to 1 if the input format is paletted
75     int interlaced;
76
77     char w_expr[256];           ///< width  expression string
78     char h_expr[256];           ///< height expression string
79 } ScaleContext;
80
81 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
82 {
83     ScaleContext *scale = ctx->priv;
84     const char *p;
85
86     av_strlcpy(scale->w_expr, "iw", sizeof(scale->w_expr));
87     av_strlcpy(scale->h_expr, "ih", sizeof(scale->h_expr));
88
89     scale->flags = SWS_BILINEAR;
90     if (args) {
91         sscanf(args, "%255[^:]:%255[^:]", scale->w_expr, scale->h_expr);
92         p = strstr(args,"flags=");
93         if (p) scale->flags = strtoul(p+6, NULL, 0);
94         if(strstr(args,"interl=1")){
95             scale->interlaced=1;
96         }else if(strstr(args,"interl=-1"))
97             scale->interlaced=-1;
98     }
99
100     return 0;
101 }
102
103 static av_cold void uninit(AVFilterContext *ctx)
104 {
105     ScaleContext *scale = ctx->priv;
106     sws_freeContext(scale->sws);
107     sws_freeContext(scale->isws[0]);
108     sws_freeContext(scale->isws[1]);
109     scale->sws = NULL;
110 }
111
112 static int query_formats(AVFilterContext *ctx)
113 {
114     AVFilterFormats *formats;
115     enum PixelFormat pix_fmt;
116     int ret;
117
118     if (ctx->inputs[0]) {
119         formats = NULL;
120         for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
121             if (   sws_isSupportedInput(pix_fmt)
122                 && (ret = avfilter_add_format(&formats, pix_fmt)) < 0) {
123                 avfilter_formats_unref(&formats);
124                 return ret;
125             }
126         avfilter_formats_ref(formats, &ctx->inputs[0]->out_formats);
127     }
128     if (ctx->outputs[0]) {
129         formats = NULL;
130         for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
131             if (    sws_isSupportedOutput(pix_fmt)
132                 && (ret = avfilter_add_format(&formats, pix_fmt)) < 0) {
133                 avfilter_formats_unref(&formats);
134                 return ret;
135             }
136         avfilter_formats_ref(formats, &ctx->outputs[0]->in_formats);
137     }
138
139     return 0;
140 }
141
142 static int config_props(AVFilterLink *outlink)
143 {
144     AVFilterContext *ctx = outlink->src;
145     AVFilterLink *inlink = outlink->src->inputs[0];
146     ScaleContext *scale = ctx->priv;
147     int64_t w, h;
148     double var_values[VARS_NB], res;
149     char *expr;
150     int ret;
151
152     var_values[VAR_IN_W]  = var_values[VAR_IW] = inlink->w;
153     var_values[VAR_IN_H]  = var_values[VAR_IH] = inlink->h;
154     var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
155     var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
156     var_values[VAR_A]     = (float) inlink->w / inlink->h;
157     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
158         (float) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
159     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
160     var_values[VAR_HSUB]  = 1<<av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
161     var_values[VAR_VSUB]  = 1<<av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
162
163     /* evaluate width and height */
164     av_expr_parse_and_eval(&res, (expr = scale->w_expr),
165                            var_names, var_values,
166                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
167     scale->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
168     if ((ret = av_expr_parse_and_eval(&res, (expr = scale->h_expr),
169                                       var_names, var_values,
170                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
171         goto fail;
172     scale->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
173     /* evaluate again the width, as it may depend on the output height */
174     if ((ret = av_expr_parse_and_eval(&res, (expr = scale->w_expr),
175                                       var_names, var_values,
176                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
177         goto fail;
178     scale->w = res;
179
180     w = scale->w;
181     h = scale->h;
182
183     /* sanity check params */
184     if (w <  -1 || h <  -1) {
185         av_log(ctx, AV_LOG_ERROR, "Size values less than -1 are not acceptable.\n");
186         return AVERROR(EINVAL);
187     }
188     if (w == -1 && h == -1)
189         scale->w = scale->h = 0;
190
191     if (!(w = scale->w))
192         w = inlink->w;
193     if (!(h = scale->h))
194         h = inlink->h;
195     if (w == -1)
196         w = av_rescale(h, inlink->w, inlink->h);
197     if (h == -1)
198         h = av_rescale(w, inlink->h, inlink->w);
199
200     if (w > INT_MAX || h > INT_MAX ||
201         (h * inlink->w) > INT_MAX  ||
202         (w * inlink->h) > INT_MAX)
203         av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
204
205     outlink->w = w;
206     outlink->h = h;
207
208     /* TODO: make algorithm configurable */
209     av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s -> w:%d h:%d fmt:%s flags:0x%0x\n",
210            inlink ->w, inlink ->h, av_pix_fmt_descriptors[ inlink->format].name,
211            outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name,
212            scale->flags);
213
214     scale->input_is_pal = av_pix_fmt_descriptors[inlink->format].flags & PIX_FMT_PAL;
215
216     if (scale->sws)
217         sws_freeContext(scale->sws);
218     scale->sws = sws_getContext(inlink ->w, inlink ->h, inlink ->format,
219                                 outlink->w, outlink->h, outlink->format,
220                                 scale->flags, NULL, NULL, NULL);
221     if (scale->isws[0])
222         sws_freeContext(scale->isws[0]);
223     scale->isws[0] = sws_getContext(inlink ->w, inlink ->h/2, inlink ->format,
224                                     outlink->w, outlink->h/2, outlink->format,
225                                     scale->flags, NULL, NULL, NULL);
226     if (scale->isws[1])
227         sws_freeContext(scale->isws[1]);
228     scale->isws[1] = sws_getContext(inlink ->w, inlink ->h/2, inlink ->format,
229                                     outlink->w, outlink->h/2, outlink->format,
230                                     scale->flags, NULL, NULL, NULL);
231     if (!scale->sws || !scale->isws[0] || !scale->isws[1])
232         return AVERROR(EINVAL);
233
234     if (inlink->sample_aspect_ratio.num){
235         outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
236     } else
237         outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
238
239     return 0;
240
241 fail:
242     av_log(NULL, AV_LOG_ERROR,
243            "Error when evaluating the expression '%s'\n", expr);
244     return ret;
245 }
246
247 static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
248 {
249     ScaleContext *scale = link->dst->priv;
250     AVFilterLink *outlink = link->dst->outputs[0];
251     AVFilterBufferRef *outpicref;
252
253     scale->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
254     scale->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
255
256     outpicref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE|AV_PERM_ALIGN, outlink->w, outlink->h);
257     avfilter_copy_buffer_ref_props(outpicref, picref);
258     outpicref->video->w = outlink->w;
259     outpicref->video->h = outlink->h;
260
261     outlink->out_buf = outpicref;
262
263     av_reduce(&outpicref->video->sample_aspect_ratio.num, &outpicref->video->sample_aspect_ratio.den,
264               (int64_t)picref->video->sample_aspect_ratio.num * outlink->h * link->w,
265               (int64_t)picref->video->sample_aspect_ratio.den * outlink->w * link->h,
266               INT_MAX);
267
268     scale->slice_y = 0;
269     avfilter_start_frame(outlink, avfilter_ref_buffer(outpicref, ~0));
270 }
271
272 static int scale_slice(AVFilterLink *link, struct SwsContext *sws, int y, int h, int mul, int field)
273 {
274     ScaleContext *scale = link->dst->priv;
275     AVFilterBufferRef *cur_pic = link->cur_buf;
276     AVFilterBufferRef *out_buf = link->dst->outputs[0]->out_buf;
277     const uint8_t *in[4];
278     uint8_t *out[4];
279     int in_stride[4],out_stride[4];
280     int i;
281
282     for(i=0; i<4; i++){
283         int vsub= ((i+1)&2) ? scale->vsub : 0;
284          in_stride[i] = cur_pic->linesize[i] * mul;
285         out_stride[i] = out_buf->linesize[i] * mul;
286          in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
287         out[i] = out_buf->data[i] +            field  * out_buf->linesize[i];
288     }
289     if(scale->input_is_pal){
290          in[1] = cur_pic->data[1];
291         out[1] = out_buf->data[1];
292     }
293
294     return sws_scale(sws, in, in_stride, y/mul, h,
295                          out,out_stride);
296 }
297
298 static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
299 {
300     ScaleContext *scale = link->dst->priv;
301     int out_h;
302
303     if (scale->slice_y == 0 && slice_dir == -1)
304         scale->slice_y = link->dst->outputs[0]->h;
305
306     if(scale->interlaced>0 || (scale->interlaced<0 && link->cur_buf->video->interlaced)){
307         av_assert0(y%4 == 0);
308         out_h = scale_slice(link, scale->isws[0], y, (h+1)/2, 2, 0);
309         out_h+= scale_slice(link, scale->isws[1], y,  h   /2, 2, 1);
310     }else{
311         out_h = scale_slice(link, scale->sws, y, h, 1, 0);
312     }
313
314     if (slice_dir == -1)
315         scale->slice_y -= out_h;
316     avfilter_draw_slice(link->dst->outputs[0], scale->slice_y, out_h, slice_dir);
317     if (slice_dir == 1)
318         scale->slice_y += out_h;
319 }
320
321 AVFilter avfilter_vf_scale = {
322     .name      = "scale",
323     .description = NULL_IF_CONFIG_SMALL("Scale the input video to width:height size and/or convert the image format."),
324
325     .init      = init,
326     .uninit    = uninit,
327
328     .query_formats = query_formats,
329
330     .priv_size = sizeof(ScaleContext),
331
332     .inputs    = (AVFilterPad[]) {{ .name             = "default",
333                                     .type             = AVMEDIA_TYPE_VIDEO,
334                                     .start_frame      = start_frame,
335                                     .draw_slice       = draw_slice,
336                                     .min_perms        = AV_PERM_READ, },
337                                   { .name = NULL}},
338     .outputs   = (AVFilterPad[]) {{ .name             = "default",
339                                     .type             = AVMEDIA_TYPE_VIDEO,
340                                     .config_props     = config_props, },
341                                   { .name = NULL}},
342 };