FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_scale.c
Go to the documentation of this file.
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 <stdio.h>
27 #include <string.h>
28 
29 #include "avfilter.h"
30 #include "formats.h"
31 #include "internal.h"
32 #include "video.h"
33 #include "libavutil/avstring.h"
34 #include "libavutil/eval.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/mathematics.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/parseutils.h"
39 #include "libavutil/pixdesc.h"
40 #include "libavutil/imgutils.h"
41 #include "libavutil/avassert.h"
42 #include "libswscale/swscale.h"
43 
44 static const char *const var_names[] = {
45  "in_w", "iw",
46  "in_h", "ih",
47  "out_w", "ow",
48  "out_h", "oh",
49  "a",
50  "sar",
51  "dar",
52  "hsub",
53  "vsub",
54  "ohsub",
55  "ovsub",
56  NULL
57 };
58 
59 enum var_name {
72 };
73 
74 typedef struct ScaleContext {
75  const AVClass *class;
76  struct SwsContext *sws; ///< software scaler context
77  struct SwsContext *isws[2]; ///< software scaler context for interlaced material
79 
80  /**
81  * New dimensions. Special values are:
82  * 0 = original width/height
83  * -1 = keep original aspect
84  * -N = try to keep aspect but make sure it is divisible by N
85  */
86  int w, h;
87  char *size_str;
88  unsigned int flags; ///sws flags
89 
90  int hsub, vsub; ///< chroma subsampling
91  int slice_y; ///< top of current output slice
92  int input_is_pal; ///< set to 1 if the input format is paletted
93  int output_is_pal; ///< set to 1 if the output format is paletted
95 
96  char *w_expr; ///< width expression string
97  char *h_expr; ///< height expression string
98  char *flags_str;
99 
102 
103  int in_range;
105 
110 
112 } ScaleContext;
113 
115 {
116  ScaleContext *scale = ctx->priv;
117  int ret;
118 
119  if (scale->size_str && (scale->w_expr || scale->h_expr)) {
120  av_log(ctx, AV_LOG_ERROR,
121  "Size and width/height expressions cannot be set at the same time.\n");
122  return AVERROR(EINVAL);
123  }
124 
125  if (scale->w_expr && !scale->h_expr)
126  FFSWAP(char *, scale->w_expr, scale->size_str);
127 
128  if (scale->size_str) {
129  char buf[32];
130  if ((ret = av_parse_video_size(&scale->w, &scale->h, scale->size_str)) < 0) {
131  av_log(ctx, AV_LOG_ERROR,
132  "Invalid size '%s'\n", scale->size_str);
133  return ret;
134  }
135  snprintf(buf, sizeof(buf)-1, "%d", scale->w);
136  av_opt_set(scale, "w", buf, 0);
137  snprintf(buf, sizeof(buf)-1, "%d", scale->h);
138  av_opt_set(scale, "h", buf, 0);
139  }
140  if (!scale->w_expr)
141  av_opt_set(scale, "w", "iw", 0);
142  if (!scale->h_expr)
143  av_opt_set(scale, "h", "ih", 0);
144 
145  av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
146  scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
147 
148  scale->flags = 0;
149 
150  if (scale->flags_str) {
151  const AVClass *class = sws_get_class();
152  const AVOption *o = av_opt_find(&class, "sws_flags", NULL, 0,
154  int ret = av_opt_eval_flags(&class, o, scale->flags_str, &scale->flags);
155  if (ret < 0)
156  return ret;
157  }
158  scale->opts = *opts;
159  *opts = NULL;
160 
161  return 0;
162 }
163 
164 static av_cold void uninit(AVFilterContext *ctx)
165 {
166  ScaleContext *scale = ctx->priv;
167  sws_freeContext(scale->sws);
168  sws_freeContext(scale->isws[0]);
169  sws_freeContext(scale->isws[1]);
170  scale->sws = NULL;
171  av_dict_free(&scale->opts);
172 }
173 
175 {
177  enum AVPixelFormat pix_fmt;
178  int ret;
179 
180  if (ctx->inputs[0]) {
181  const AVPixFmtDescriptor *desc = NULL;
182  formats = NULL;
183  while ((desc = av_pix_fmt_desc_next(desc))) {
184  pix_fmt = av_pix_fmt_desc_get_id(desc);
185  if ((sws_isSupportedInput(pix_fmt) ||
187  && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
188  ff_formats_unref(&formats);
189  return ret;
190  }
191  }
192  ff_formats_ref(formats, &ctx->inputs[0]->out_formats);
193  }
194  if (ctx->outputs[0]) {
195  const AVPixFmtDescriptor *desc = NULL;
196  formats = NULL;
197  while ((desc = av_pix_fmt_desc_next(desc))) {
198  pix_fmt = av_pix_fmt_desc_get_id(desc);
199  if ((sws_isSupportedOutput(pix_fmt) || pix_fmt == AV_PIX_FMT_PAL8 ||
201  && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
202  ff_formats_unref(&formats);
203  return ret;
204  }
205  }
206  ff_formats_ref(formats, &ctx->outputs[0]->in_formats);
207  }
208 
209  return 0;
210 }
211 
212 static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
213 {
214  if (!s)
215  s = "bt601";
216 
217  if (s && strstr(s, "bt709")) {
218  colorspace = AVCOL_SPC_BT709;
219  } else if (s && strstr(s, "fcc")) {
220  colorspace = AVCOL_SPC_FCC;
221  } else if (s && strstr(s, "smpte240m")) {
222  colorspace = AVCOL_SPC_SMPTE240M;
223  } else if (s && (strstr(s, "bt601") || strstr(s, "bt470") || strstr(s, "smpte170m"))) {
224  colorspace = AVCOL_SPC_BT470BG;
225  }
226 
227  if (colorspace < 1 || colorspace > 7) {
228  colorspace = AVCOL_SPC_BT470BG;
229  }
230 
231  return sws_getCoefficients(colorspace);
232 }
233 
234 static int config_props(AVFilterLink *outlink)
235 {
236  AVFilterContext *ctx = outlink->src;
237  AVFilterLink *inlink = outlink->src->inputs[0];
238  enum AVPixelFormat outfmt = outlink->format;
239  ScaleContext *scale = ctx->priv;
240  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
241  const AVPixFmtDescriptor *out_desc = av_pix_fmt_desc_get(outlink->format);
242  int64_t w, h;
243  double var_values[VARS_NB], res;
244  char *expr;
245  int ret;
246  int factor_w, factor_h;
247 
248  var_values[VAR_IN_W] = var_values[VAR_IW] = inlink->w;
249  var_values[VAR_IN_H] = var_values[VAR_IH] = inlink->h;
250  var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
251  var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
252  var_values[VAR_A] = (double) inlink->w / inlink->h;
253  var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ?
254  (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
255  var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
256  var_values[VAR_HSUB] = 1 << desc->log2_chroma_w;
257  var_values[VAR_VSUB] = 1 << desc->log2_chroma_h;
258  var_values[VAR_OHSUB] = 1 << out_desc->log2_chroma_w;
259  var_values[VAR_OVSUB] = 1 << out_desc->log2_chroma_h;
260 
261  /* evaluate width and height */
262  av_expr_parse_and_eval(&res, (expr = scale->w_expr),
263  var_names, var_values,
264  NULL, NULL, NULL, NULL, NULL, 0, ctx);
265  scale->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
266  if ((ret = av_expr_parse_and_eval(&res, (expr = scale->h_expr),
267  var_names, var_values,
268  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
269  goto fail;
270  scale->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
271  /* evaluate again the width, as it may depend on the output height */
272  if ((ret = av_expr_parse_and_eval(&res, (expr = scale->w_expr),
273  var_names, var_values,
274  NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
275  goto fail;
276  scale->w = res;
277 
278  w = scale->w;
279  h = scale->h;
280 
281  /* Check if it is requested that the result has to be divisible by a some
282  * factor (w or h = -n with n being the factor). */
283  factor_w = 1;
284  factor_h = 1;
285  if (w < -1) {
286  factor_w = -w;
287  }
288  if (h < -1) {
289  factor_h = -h;
290  }
291 
292  if (w < 0 && h < 0)
293  scale->w = scale->h = 0;
294 
295  if (!(w = scale->w))
296  w = inlink->w;
297  if (!(h = scale->h))
298  h = inlink->h;
299 
300  /* Make sure that the result is divisible by the factor we determined
301  * earlier. If no factor was set, it is nothing will happen as the default
302  * factor is 1 */
303  if (w < 0)
304  w = av_rescale(h, inlink->w, inlink->h * factor_w) * factor_w;
305  if (h < 0)
306  h = av_rescale(w, inlink->h, inlink->w * factor_h) * factor_h;
307 
308  /* Note that force_original_aspect_ratio may overwrite the previous set
309  * dimensions so that it is not divisible by the set factors anymore. */
310  if (scale->force_original_aspect_ratio) {
311  int tmp_w = av_rescale(h, inlink->w, inlink->h);
312  int tmp_h = av_rescale(w, inlink->h, inlink->w);
313 
314  if (scale->force_original_aspect_ratio == 1) {
315  w = FFMIN(tmp_w, w);
316  h = FFMIN(tmp_h, h);
317  } else {
318  w = FFMAX(tmp_w, w);
319  h = FFMAX(tmp_h, h);
320  }
321  }
322 
323  if (w > INT_MAX || h > INT_MAX ||
324  (h * inlink->w) > INT_MAX ||
325  (w * inlink->h) > INT_MAX)
326  av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
327 
328  outlink->w = w;
329  outlink->h = h;
330 
331  /* TODO: make algorithm configurable */
332 
333  scale->input_is_pal = desc->flags & AV_PIX_FMT_FLAG_PAL ||
335  if (outfmt == AV_PIX_FMT_PAL8) outfmt = AV_PIX_FMT_BGR8;
338 
339  if (scale->sws)
340  sws_freeContext(scale->sws);
341  if (scale->isws[0])
342  sws_freeContext(scale->isws[0]);
343  if (scale->isws[1])
344  sws_freeContext(scale->isws[1]);
345  scale->isws[0] = scale->isws[1] = scale->sws = NULL;
346  if (inlink->w == outlink->w && inlink->h == outlink->h &&
347  inlink->format == outlink->format)
348  ;
349  else {
350  struct SwsContext **swscs[3] = {&scale->sws, &scale->isws[0], &scale->isws[1]};
351  int i;
352 
353  for (i = 0; i < 3; i++) {
354  struct SwsContext **s = swscs[i];
355  *s = sws_alloc_context();
356  if (!*s)
357  return AVERROR(ENOMEM);
358 
359  if (scale->opts) {
360  AVDictionaryEntry *e = NULL;
361 
362  while ((e = av_dict_get(scale->opts, "", e, AV_DICT_IGNORE_SUFFIX))) {
363  if ((ret = av_opt_set(*s, e->key, e->value, 0)) < 0)
364  return ret;
365  }
366  }
367 
368  av_opt_set_int(*s, "srcw", inlink ->w, 0);
369  av_opt_set_int(*s, "srch", inlink ->h >> !!i, 0);
370  av_opt_set_int(*s, "src_format", inlink->format, 0);
371  av_opt_set_int(*s, "dstw", outlink->w, 0);
372  av_opt_set_int(*s, "dsth", outlink->h >> !!i, 0);
373  av_opt_set_int(*s, "dst_format", outfmt, 0);
374  av_opt_set_int(*s, "sws_flags", scale->flags, 0);
375 
376  /* Override YUV420P settings to have the correct (MPEG-2) chroma positions
377  * MPEG-2 chroma positions are used by convention
378  * XXX: support other 4:2:0 pixel formats */
379  if (inlink->format == AV_PIX_FMT_YUV420P) {
380  scale->in_v_chr_pos = (i == 0) ? 128 : (i == 1) ? 64 : 192;
381  }
382 
383  if (outlink->format == AV_PIX_FMT_YUV420P) {
384  scale->out_v_chr_pos = (i == 0) ? 128 : (i == 1) ? 64 : 192;
385  }
386 
387  av_opt_set_int(*s, "src_h_chr_pos", scale->in_h_chr_pos, 0);
388  av_opt_set_int(*s, "src_v_chr_pos", scale->in_v_chr_pos, 0);
389  av_opt_set_int(*s, "dst_h_chr_pos", scale->out_h_chr_pos, 0);
390  av_opt_set_int(*s, "dst_v_chr_pos", scale->out_v_chr_pos, 0);
391 
392  if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
393  return ret;
394  if (!scale->interlaced)
395  break;
396  }
397  }
398 
399  if (inlink->sample_aspect_ratio.num){
400  outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
401  } else
402  outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
403 
404  av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d fmt:%s sar:%d/%d flags:0x%0x\n",
405  inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format),
407  outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format),
408  outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
409  scale->flags);
410  return 0;
411 
412 fail:
414  "Error when evaluating the expression '%s'.\n"
415  "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
416  expr, scale->w_expr, scale->h_expr);
417  return ret;
418 }
419 
420 static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
421 {
422  ScaleContext *scale = link->dst->priv;
423  const uint8_t *in[4];
424  uint8_t *out[4];
425  int in_stride[4],out_stride[4];
426  int i;
427 
428  for(i=0; i<4; i++){
429  int vsub= ((i+1)&2) ? scale->vsub : 0;
430  in_stride[i] = cur_pic->linesize[i] * mul;
431  out_stride[i] = out_buf->linesize[i] * mul;
432  in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
433  out[i] = out_buf->data[i] + field * out_buf->linesize[i];
434  }
435  if(scale->input_is_pal)
436  in[1] = cur_pic->data[1];
437  if(scale->output_is_pal)
438  out[1] = out_buf->data[1];
439 
440  return sws_scale(sws, in, in_stride, y/mul, h,
441  out,out_stride);
442 }
443 
444 static int filter_frame(AVFilterLink *link, AVFrame *in)
445 {
446  ScaleContext *scale = link->dst->priv;
447  AVFilterLink *outlink = link->dst->outputs[0];
448  AVFrame *out;
449  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
450  char buf[32];
451  int in_range;
452 
454  av_log(link->dst, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
455 
456  if( in->width != link->w
457  || in->height != link->h
458  || in->format != link->format) {
459  int ret;
460  snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
461  av_opt_set(scale, "w", buf, 0);
462  snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
463  av_opt_set(scale, "h", buf, 0);
464 
465  link->dst->inputs[0]->format = in->format;
466  link->dst->inputs[0]->w = in->width;
467  link->dst->inputs[0]->h = in->height;
468 
469  if ((ret = config_props(outlink)) < 0)
470  return ret;
471  }
472 
473  if (!scale->sws)
474  return ff_filter_frame(outlink, in);
475 
476  scale->hsub = desc->log2_chroma_w;
477  scale->vsub = desc->log2_chroma_h;
478 
479  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
480  if (!out) {
481  av_frame_free(&in);
482  return AVERROR(ENOMEM);
483  }
484 
485  av_frame_copy_props(out, in);
486  out->width = outlink->w;
487  out->height = outlink->h;
488 
489  if(scale->output_is_pal)
490  avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
491 
492  in_range = av_frame_get_color_range(in);
493 
494  if ( scale->in_color_matrix
495  || scale->out_color_matrix
496  || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
497  || in_range != AVCOL_RANGE_UNSPECIFIED
498  || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
499  int in_full, out_full, brightness, contrast, saturation;
500  const int *inv_table, *table;
501 
502  sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
503  (int **)&table, &out_full,
504  &brightness, &contrast, &saturation);
505 
506  if (scale->in_color_matrix)
507  inv_table = parse_yuv_type(scale->in_color_matrix, av_frame_get_colorspace(in));
508  if (scale->out_color_matrix)
510 
511  if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
512  in_full = (scale-> in_range == AVCOL_RANGE_JPEG);
513  else if (in_range != AVCOL_RANGE_UNSPECIFIED)
514  in_full = (in_range == AVCOL_RANGE_JPEG);
515  if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
516  out_full = (scale->out_range == AVCOL_RANGE_JPEG);
517 
518  sws_setColorspaceDetails(scale->sws, inv_table, in_full,
519  table, out_full,
520  brightness, contrast, saturation);
521  if (scale->isws[0])
522  sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
523  table, out_full,
524  brightness, contrast, saturation);
525  if (scale->isws[1])
526  sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
527  table, out_full,
528  brightness, contrast, saturation);
529  }
530 
532  (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
533  (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
534  INT_MAX);
535 
536  if(scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)){
537  scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
538  scale_slice(link, out, in, scale->isws[1], 0, link->h /2, 2, 1);
539  }else{
540  scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
541  }
542 
543  av_frame_free(&in);
544  return ff_filter_frame(outlink, out);
545 }
546 
547 static const AVClass *child_class_next(const AVClass *prev)
548 {
549  return prev ? NULL : sws_get_class();
550 }
551 
552 #define OFFSET(x) offsetof(ScaleContext, x)
553 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
554 
555 static const AVOption scale_options[] = {
556  { "w", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
557  { "width", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
558  { "h", "Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
559  { "height","Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
560  { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
561  { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_INT, {.i64 = 0 }, -1, 1, FLAGS },
562  { "size", "set video size", OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
563  { "s", "set video size", OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
564  { "in_color_matrix", "set input YCbCr type", OFFSET(in_color_matrix), AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS },
565  { "out_color_matrix", "set output YCbCr type", OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
566  { "in_range", "set input color range", OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
567  { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
568  { "auto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
569  { "full", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
570  { "jpeg", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
571  { "mpeg", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
572  { "tv", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
573  { "pc", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
574  { "in_v_chr_pos", "input vertical chroma position in luma grid/256" , OFFSET(in_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
575  { "in_h_chr_pos", "input horizontal chroma position in luma grid/256", OFFSET(in_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
576  { "out_v_chr_pos", "output vertical chroma position in luma grid/256" , OFFSET(out_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
577  { "out_h_chr_pos", "output horizontal chroma position in luma grid/256", OFFSET(out_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
578  { "force_original_aspect_ratio", "decrease or increase w/h if necessary to keep the original AR", OFFSET(force_original_aspect_ratio), AV_OPT_TYPE_INT, { .i64 = 0}, 0, 2, FLAGS, "force_oar" },
579  { "disable", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
580  { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
581  { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
582  { NULL }
583 };
584 
585 static const AVClass scale_class = {
586  .class_name = "scale",
587  .item_name = av_default_item_name,
588  .option = scale_options,
589  .version = LIBAVUTIL_VERSION_INT,
590  .category = AV_CLASS_CATEGORY_FILTER,
591  .child_class_next = child_class_next,
592 };
593 
595  {
596  .name = "default",
597  .type = AVMEDIA_TYPE_VIDEO,
598  .filter_frame = filter_frame,
599  },
600  { NULL }
601 };
602 
604  {
605  .name = "default",
606  .type = AVMEDIA_TYPE_VIDEO,
607  .config_props = config_props,
608  },
609  { NULL }
610 };
611 
613  .name = "scale",
614  .description = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format."),
615  .init_dict = init_dict,
616  .uninit = uninit,
617  .query_formats = query_formats,
618  .priv_size = sizeof(ScaleContext),
619  .priv_class = &scale_class,
620  .inputs = avfilter_vf_scale_inputs,
621  .outputs = avfilter_vf_scale_outputs,
622 };
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:115
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
Definition: pixfmt.h:502
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
static av_cold int init_dict(AVFilterContext *ctx, AVDictionary **opts)
Definition: vf_scale.c:114
static enum AVPixelFormat pix_fmt
#define FLAGS
Definition: vf_scale.c:553
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2090
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
int in_h_chr_pos
Definition: vf_scale.c:108
AVOption.
Definition: opt.h:255
int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str)
Parse str and put in width_ptr and height_ptr the detected values.
Definition: parseutils.c:138
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
Main libavfilter public API header.
enum AVColorRange av_frame_get_color_range(const AVFrame *frame)
int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation)
Definition: utils.c:878
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 ...
Definition: pixfmt.h:506
static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
Definition: vf_scale.c:420
int num
numerator
Definition: rational.h:44
int in_v_chr_pos
Definition: vf_scale.c:109
int out_h_chr_pos
Definition: vf_scale.c:106
int hsub
sws flags
Definition: vf_scale.c:90
int sws_isSupportedEndiannessConversion(enum AVPixelFormat pix_fmt)
Definition: utils.c:242
int force_original_aspect_ratio
Definition: vf_scale.c:111
static enum AVSampleFormat formats[]
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:109
const AVClass * sws_get_class(void)
Get the AVClass for swsContext.
Definition: options.c:93
int vsub
chroma subsampling
Definition: vf_scale.c:90
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
int output_is_pal
set to 1 if the output format is paletted
Definition: vf_scale.c:93
const char * name
Pad name.
Definition: internal.h:67
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:641
char * w_expr
width expression string
Definition: vf_scale.c:96
static int query_formats(AVFilterContext *ctx)
Definition: vf_scale.c:174
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1145
uint8_t
#define av_cold
Definition: attributes.h:74
char * h_expr
height expression string
Definition: vf_scale.c:97
8 bit with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:74
AVOptions.
AVColorSpace
YUV colorspace type.
Definition: pixfmt.h:500
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
Definition: imgutils.c:152
static const int * parse_yuv_type(const char *s, enum AVColorSpace colorspace)
Definition: vf_scale.c:212
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFilter *dstFilter)
Initialize the swscaler context sws_context.
Definition: utils.c:981
static const AVClass scale_class
Definition: vf_scale.c:585
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:367
external API header
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:61
static void * av_x_if_null(const void *p, const void *x)
Return x default pointer in case p is NULL.
Definition: avutil.h:301
int av_expr_parse_and_eval(double *d, const char *s, const char *const *const_names, const double *const_values, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
Definition: eval.c:717
int width
width and height of the video frame
Definition: frame.h:220
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
static const AVOption scale_options[]
Definition: vf_scale.c:555
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
int av_opt_eval_flags(void *obj, const AVOption *o, const char *val, int *flags_out)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
#define sws_isSupportedOutput(x)
static const struct endianess table[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
void * priv
private data for use by the filter
Definition: avfilter.h:654
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:199
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:491
simple assert() macros that are a bit more flexible than ISO C assert().
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
Add fmt to the list of media formats contained in *avff.
Definition: formats.c:323
#define FFMAX(a, b)
Definition: common.h:64
int w
New dimensions.
Definition: vf_scale.c:86
static int config_props(AVFilterLink *outlink)
Definition: vf_scale.c:234
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
var_name
Definition: aeval.c:46
const AVOption * av_opt_find(void *obj, const char *name, const char *unit, int opt_flags, int search_flags)
Look for an option in an object.
Definition: opt.c:1484
common internal API header
char * out_color_matrix
Definition: vf_scale.c:101
enum AVPixelFormat av_pix_fmt_desc_get_id(const AVPixFmtDescriptor *desc)
Definition: pixdesc.c:2109
#define AVCOL_SPC_YCGCO
Definition: pixfmt.h:514
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_scale.c:164
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:127
static const AVFilterPad avfilter_vf_scale_outputs[]
Definition: vf_scale.c:603
#define FFMIN(a, b)
Definition: common.h:66
float y
uint8_t interlaced
Definition: mxfenc.c:1805
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add *ref as a new reference to formats.
Definition: formats.c:422
ret
Definition: avfilter.c:974
static const AVClass * child_class_next(const AVClass *prev)
Definition: vf_scale.c:547
#define AV_PIX_FMT_FLAG_PSEUDOPAL
The pixel format is "pseudo-paletted".
Definition: pixdesc.h:141
void sws_freeContext(struct SwsContext *swsContext)
Free the swscaler context swsContext.
Definition: utils.c:1984
int interlaced
Definition: vf_scale.c:94
const int * sws_getCoefficients(int colorspace)
Return a pointer to yuv<->rgb coefficients for the given colorspace suitable for sws_setColorspaceDet...
Definition: yuv2rgb.c:49
#define sws_isSupportedInput(x)
int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation)
Definition: utils.c:825
char * flags_str
Definition: vf_scale.c:98
FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
Definition: pixfmt.h:505
the normal 2^n-1 "JPEG" YUV ranges
Definition: pixfmt.h:523
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:232
packed RGB 3:3:2, 8bpp, (msb)2B 3G 3R(lsb)
Definition: pixfmt.h:85
#define OFFSET(x)
Definition: vf_scale.c:552
AVFilter ff_vf_scale
Definition: vf_scale.c:612
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
struct SwsContext * sws
software scaler context
Definition: vf_scale.c:76
uint8_t flags
Definition: pixdesc.h:90
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
static const AVFilterPad avfilter_vf_scale_inputs[]
Definition: vf_scale.c:594
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:252
AVDictionary * opts
Definition: vf_scale.c:78
int attribute_align_arg sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[])
swscale wrapper, so we don't need to export the SwsContext.
Definition: swscale.c:912
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
void * buf
Definition: avisynth_c.h:553
enum AVColorSpace av_frame_get_colorspace(const AVFrame *frame)
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:470
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
rational number numerator/denominator
Definition: rational.h:43
void ff_formats_unref(AVFilterFormats **ref)
If *ref is non-NULL, remove *ref as a reference to the format list it currently points to...
Definition: formats.c:458
const char * name
Filter name.
Definition: avfilter.h:474
#define snprintf
Definition: snprintf.h:34
int input_is_pal
set to 1 if the input format is paletted
Definition: vf_scale.c:92
static const char *const var_names[]
Definition: vf_scale.c:44
unsigned int flags
Definition: vf_scale.c:88
misc parsing utilities
struct SwsContext * sws_alloc_context(void)
Allocate an empty SwsContext.
Definition: utils.c:953
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:648
int out_v_chr_pos
Definition: vf_scale.c:107
struct SwsContext * isws[2]
software scaler context for interlaced material
Definition: vf_scale.c:77
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
static int filter_frame(AVFilterLink *link, AVFrame *in)
Definition: vf_scale.c:444
int in_range
Definition: vf_scale.c:103
the normal 219*2^(n-8) "MPEG" YUV ranges
Definition: pixfmt.h:522
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
int out_range
Definition: vf_scale.c:104
#define AV_OPT_SEARCH_FAKE_OBJ
The obj passed to av_opt_find() is fake – only a double pointer to AVClass instead of a required poin...
Definition: opt.h:611
char * size_str
Definition: vf_scale.c:87
char * key
Definition: dict.h:87
int den
denominator
Definition: rational.h:45
int slice_y
top of current output slice
Definition: vf_scale.c:91
Definition: vf_scale.c:64
char * value
Definition: dict.h:88
#define NAN
Definition: math.h:28
char * in_color_matrix
Definition: vf_scale.c:100
A list of supported formats for one end of a filter link.
Definition: formats.h:64
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
An instance of a filter.
Definition: avfilter.h:633
int height
Definition: frame.h:220
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:72
#define FFSWAP(type, a, b)
Definition: common.h:69
enum AVColorSpace colorspace
Definition: dirac.c:102
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2011
internal API functions
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:369
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:548
simple arithmetic expression evaluator
const AVPixFmtDescriptor * av_pix_fmt_desc_next(const AVPixFmtDescriptor *prev)
Iterate over all pixel format descriptors known to libavutil.
Definition: pixdesc.c:2097