ffmpeg / libavfilter / vf_scale.c @ 7fce481a
History | View | Annotate | Download (7.13 KB)
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_format(&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_format(&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, AVFilterBufferRef *picref) |
146 |
{ |
147 |
ScaleContext *scale = link->dst->priv; |
148 |
AVFilterLink *outlink = link->dst->outputs[0];
|
149 |
AVFilterBufferRef *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 |
avfilter_copy_buffer_ref_props(outpicref, picref); |
156 |
|
157 |
outlink->outpic = outpicref; |
158 |
|
159 |
av_reduce(&outpicref->pixel_aspect.num, &outpicref->pixel_aspect.den, |
160 |
(int64_t)picref->pixel_aspect.num * outlink->h * link->w, |
161 |
(int64_t)picref->pixel_aspect.den * outlink->w * link->h, |
162 |
INT_MAX); |
163 |
|
164 |
scale->slice_y = 0;
|
165 |
avfilter_start_frame(outlink, avfilter_ref_buffer(outpicref, ~0));
|
166 |
} |
167 |
|
168 |
static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir) |
169 |
{ |
170 |
ScaleContext *scale = link->dst->priv; |
171 |
int out_h;
|
172 |
AVFilterBufferRef *cur_pic = link->cur_pic; |
173 |
const uint8_t *data[4]; |
174 |
|
175 |
if (scale->slice_y == 0 && slice_dir == -1) |
176 |
scale->slice_y = link->dst->outputs[0]->h;
|
177 |
|
178 |
data[0] = cur_pic->data[0] + y * cur_pic->linesize[0]; |
179 |
data[1] = scale->input_is_pal ?
|
180 |
cur_pic->data[1] :
|
181 |
cur_pic->data[1] + (y>>scale->vsub) * cur_pic->linesize[1]; |
182 |
data[2] = cur_pic->data[2] + (y>>scale->vsub) * cur_pic->linesize[2]; |
183 |
data[3] = cur_pic->data[3] + y * cur_pic->linesize[3]; |
184 |
|
185 |
out_h = sws_scale(scale->sws, data, cur_pic->linesize, y, h, |
186 |
link->dst->outputs[0]->outpic->data,
|
187 |
link->dst->outputs[0]->outpic->linesize);
|
188 |
|
189 |
if (slice_dir == -1) |
190 |
scale->slice_y -= out_h; |
191 |
avfilter_draw_slice(link->dst->outputs[0], scale->slice_y, out_h, slice_dir);
|
192 |
if (slice_dir == 1) |
193 |
scale->slice_y += out_h; |
194 |
} |
195 |
|
196 |
AVFilter avfilter_vf_scale = { |
197 |
.name = "scale",
|
198 |
.description = "Scale the input video to width:height size and/or convert the image format.",
|
199 |
|
200 |
.init = init, |
201 |
.uninit = uninit, |
202 |
|
203 |
.query_formats = query_formats, |
204 |
|
205 |
.priv_size = sizeof(ScaleContext),
|
206 |
|
207 |
.inputs = (AVFilterPad[]) {{ .name = "default",
|
208 |
.type = AVMEDIA_TYPE_VIDEO, |
209 |
.start_frame = start_frame, |
210 |
.draw_slice = draw_slice, |
211 |
.min_perms = AV_PERM_READ, }, |
212 |
{ .name = NULL}},
|
213 |
.outputs = (AVFilterPad[]) {{ .name = "default",
|
214 |
.type = AVMEDIA_TYPE_VIDEO, |
215 |
.config_props = config_props, }, |
216 |
{ .name = NULL}},
|
217 |
}; |