2 * Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
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.
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.
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
21 #include "libavutil/opt.h"
23 #include "swscale_internal.h"
25 static const char *sws_context_to_name(void *ptr
)
30 #define OFFSET(x) offsetof(SwsContext, x)
32 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
34 static const AVOption swscale_options
[] = {
35 { "sws_flags", "swscale flags", OFFSET(flags
), AV_OPT_TYPE_FLAGS
, { .i64
= SWS_BICUBIC
}, .flags
= VE
, .unit
= "sws_flags", .max
= UINT_MAX
},
36 { "fast_bilinear", "fast bilinear", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_FAST_BILINEAR
}, .flags
= VE
, .unit
= "sws_flags" },
37 { "bilinear", "bilinear", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_BILINEAR
}, .flags
= VE
, .unit
= "sws_flags" },
38 { "bicubic", "bicubic", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_BICUBIC
}, .flags
= VE
, .unit
= "sws_flags" },
39 { "experimental", "experimental", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_X
}, .flags
= VE
, .unit
= "sws_flags" },
40 { "neighbor", "nearest neighbor", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_POINT
}, .flags
= VE
, .unit
= "sws_flags" },
41 { "area", "averaging area", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_AREA
}, .flags
= VE
, .unit
= "sws_flags" },
42 { "bicublin", "luma bicubic, chroma bilinear", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_BICUBLIN
}, .flags
= VE
, .unit
= "sws_flags" },
43 { "gauss", "gaussian approximation", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_GAUSS
}, .flags
= VE
, .unit
= "sws_flags" },
44 { "sinc", "sinc", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_SINC
}, .flags
= VE
, .unit
= "sws_flags" },
45 { "lanczos", "lanczos (sinc/sinc)", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_LANCZOS
}, .flags
= VE
, .unit
= "sws_flags" },
46 { "spline", "natural bicubic spline", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_SPLINE
}, .flags
= VE
, .unit
= "sws_flags" },
47 { "print_info", "print info", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_PRINT_INFO
}, .flags
= VE
, .unit
= "sws_flags" },
48 { "accurate_rnd", "accurate rounding", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_ACCURATE_RND
}, .flags
= VE
, .unit
= "sws_flags" },
49 { "full_chroma_int", "full chroma interpolation", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_FULL_CHR_H_INT
}, .flags
= VE
, .unit
= "sws_flags" },
50 { "full_chroma_inp", "full chroma input", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_FULL_CHR_H_INP
}, .flags
= VE
, .unit
= "sws_flags" },
51 { "bitexact", "bit-exact mode", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_BITEXACT
}, .flags
= VE
, .unit
= "sws_flags" },
52 { "error_diffusion", "error diffusion dither", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_ERROR_DIFFUSION
}, .flags
= VE
, .unit
= "sws_flags" },
54 { "param0", "scaler param 0", OFFSET(scaler_params
[0]), AV_OPT_TYPE_DOUBLE
, { .dbl
= SWS_PARAM_DEFAULT
}, INT_MIN
, INT_MAX
, VE
},
55 { "param1", "scaler param 1", OFFSET(scaler_params
[1]), AV_OPT_TYPE_DOUBLE
, { .dbl
= SWS_PARAM_DEFAULT
}, INT_MIN
, INT_MAX
, VE
},
57 { "srcw", "source width", OFFSET(src_w
), AV_OPT_TYPE_INT
, { .i64
= 16 }, 1, INT_MAX
, VE
},
58 { "srch", "source height", OFFSET(src_h
), AV_OPT_TYPE_INT
, { .i64
= 16 }, 1, INT_MAX
, VE
},
59 { "dstw", "destination width", OFFSET(dst_w
), AV_OPT_TYPE_INT
, { .i64
= 16 }, 1, INT_MAX
, VE
},
60 { "dsth", "destination height", OFFSET(dst_h
), AV_OPT_TYPE_INT
, { .i64
= 16 }, 1, INT_MAX
, VE
},
61 { "src_format", "source format", OFFSET(src_format
), AV_OPT_TYPE_PIXEL_FMT
, { .i64
= DEFAULT
}, 0, INT_MAX
, VE
},
62 { "dst_format", "destination format", OFFSET(dst_format
), AV_OPT_TYPE_PIXEL_FMT
, { .i64
= DEFAULT
}, 0, INT_MAX
, VE
},
63 { "src_range", "source is full range", OFFSET(src_range
), AV_OPT_TYPE_BOOL
, { .i64
= DEFAULT
}, 0, 1, VE
},
64 { "dst_range", "destination is full range", OFFSET(dst_range
), AV_OPT_TYPE_BOOL
, { .i64
= DEFAULT
}, 0, 1, VE
},
65 { "gamma", "gamma correct scaling", OFFSET(gamma_flag
), AV_OPT_TYPE_BOOL
, { .i64
= 0 }, 0, 1, VE
},
67 { "src_v_chr_pos", "source vertical chroma position in luma grid/256" , OFFSET(src_v_chr_pos
), AV_OPT_TYPE_INT
, { .i64
= -513 }, -513, 1024, VE
},
68 { "src_h_chr_pos", "source horizontal chroma position in luma grid/256", OFFSET(src_h_chr_pos
), AV_OPT_TYPE_INT
, { .i64
= -513 }, -513, 1024, VE
},
69 { "dst_v_chr_pos", "destination vertical chroma position in luma grid/256" , OFFSET(dst_v_chr_pos
), AV_OPT_TYPE_INT
, { .i64
= -513 }, -513, 1024, VE
},
70 { "dst_h_chr_pos", "destination horizontal chroma position in luma grid/256", OFFSET(dst_h_chr_pos
), AV_OPT_TYPE_INT
, { .i64
= -513 }, -513, 1024, VE
},
72 { "sws_dither", "set dithering algorithm", OFFSET(dither
), AV_OPT_TYPE_INT
, { .i64
= SWS_DITHER_AUTO
}, .flags
= VE
, .unit
= "sws_dither", .max
= SWS_DITHER_NB
- 1 },
73 { "auto", "automatic selection", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_DITHER_AUTO
}, .flags
= VE
, .unit
= "sws_dither" },
74 { "none", "no dithering", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_DITHER_NONE
}, .flags
= VE
, .unit
= "sws_dither" },
75 { "bayer", "ordered matrix dither", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_DITHER_BAYER
}, .flags
= VE
, .unit
= "sws_dither" },
76 { "ed", "full error diffusion", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_DITHER_ED
}, .flags
= VE
, .unit
= "sws_dither" },
77 { "a_dither", "arithmetic addition dither", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_DITHER_A_DITHER
}, .flags
= VE
, .unit
= "sws_dither" },
78 { "x_dither", "arithmetic xor dither", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_DITHER_X_DITHER
}, .flags
= VE
, .unit
= "sws_dither" },
80 { "alphablend", "mode for alpha -> non alpha", OFFSET(alpha_blend
), AV_OPT_TYPE_INT
, { .i64
= SWS_ALPHA_BLEND_NONE
}, .flags
= VE
, .unit
= "alphablend", .max
= SWS_ALPHA_BLEND_NB
- 1 },
81 { "none", "ignore alpha", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_ALPHA_BLEND_NONE
}, .flags
= VE
, .unit
= "alphablend" },
82 { "uniform_color", "blend onto a uniform color", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_ALPHA_BLEND_UNIFORM
}, .flags
= VE
, .unit
= "alphablend" },
83 { "checkerboard", "blend onto a checkerboard", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_ALPHA_BLEND_CHECKERBOARD
}, .flags
= VE
, .unit
= "alphablend" },
85 { "threads", "number of threads", OFFSET(threads
), AV_OPT_TYPE_INT
, {.i64
= 1 }, .flags
= VE
, .unit
= "threads", .max
= INT_MAX
},
86 { "auto", "automatic selection", 0, AV_OPT_TYPE_CONST
, {.i64
= 0 }, .flags
= VE
, .unit
= "threads" },
88 { "intent", "color mapping intent", OFFSET(intent
), AV_OPT_TYPE_INT
, { .i64
= SWS_INTENT_RELATIVE_COLORIMETRIC
}, .flags
= VE
, .unit
= "intent", .max
= SWS_INTENT_NB
- 1 },
89 { "perceptual", "perceptual tone mapping", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_INTENT_PERCEPTUAL
}, .flags
= VE
, .unit
= "intent" },
90 { "relative_colorimetric", "relative colorimetric clipping", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_INTENT_RELATIVE_COLORIMETRIC
}, .flags
= VE
, .unit
= "intent" },
91 { "saturation", "saturation mapping", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_INTENT_SATURATION
}, .flags
= VE
, .unit
= "intent" },
92 { "absolute_colorimetric", "absolute colorimetric clipping", 0, AV_OPT_TYPE_CONST
, { .i64
= SWS_INTENT_ABSOLUTE_COLORIMETRIC
}, .flags
= VE
, .unit
= "intent" },
97 const AVClass ff_sws_context_class
= {
98 .class_name
= "SWScaler",
99 .item_name
= sws_context_to_name
,
100 .option
= swscale_options
,
101 .parent_log_context_offset
= offsetof(SwsInternal
, parent
),
102 .category
= AV_CLASS_CATEGORY_SWSCALER
,
103 .version
= LIBAVUTIL_VERSION_INT
,
106 const AVClass
*sws_get_class(void)
108 return &ff_sws_context_class
;