Definition at line 58 of file swscale.h.
Referenced by ff_get_unscaled_swscale(), initFilter(), selfTest(), sws_init_context(), sws_init_swscale(), and sws_init_swscale_TMPL().
Definition at line 59 of file swscale.h.
Referenced by configure_input_video_filter(), doTest(), initFilter(), main(), selfTest(), and sws_init_context().
Definition at line 60 of file swscale.h.
Referenced by init(), init_opts(), initFilter(), selfTest(), and sws_init_context().
Definition at line 61 of file swscale.h.
Referenced by initFilter(), selfTest(), and sws_init_context().
Definition at line 62 of file swscale.h.
Referenced by ff_get_unscaled_swscale(), init(), initFilter(), selfTest(), and sws_init_context().
Definition at line 63 of file swscale.h.
Referenced by initFilter(), selfTest(), and sws_init_context().
Definition at line 64 of file swscale.h.
Referenced by sws_init_context().
Definition at line 65 of file swscale.h.
Referenced by initFilter(), and sws_init_context().
Definition at line 66 of file swscale.h.
Referenced by initFilter(), and sws_init_context().
Definition at line 67 of file swscale.h.
Referenced by initFilter(), and sws_init_context().
Definition at line 68 of file swscale.h.
Referenced by initFilter(), and sws_init_context().
Definition at line 70 of file swscale.h.
Referenced by sws_init_context().
Definition at line 71 of file swscale.h.
Referenced by sws_init_context().
Definition at line 73 of file swscale.h.
Referenced by initFilter(), and sws_getCachedContext().
Definition at line 75 of file swscale.h.
Referenced by initFilter(), sws_init_context(), and swscale().
Definition at line 79 of file swscale.h.
Referenced by ff_sws_init_output_funcs(), ff_sws_init_swscale_ppc(), sws_init_context(), and sws_init_swscale_TMPL().
Definition at line 81 of file swscale.h.
Referenced by sws_init_context().
Definition at line 83 of file swscale.h.
Referenced by ff_get_unscaled_swscale(), initFilter(), and sws_init_swscale_TMPL().
Definition at line 84 of file swscale.h.
Referenced by configure_input_video_filter(), ff_get_unscaled_swscale(), ff_get_unscaled_swscale_ppc(), ff_sws_init_swscale_ppc(), initFilter(), sws_init_swscale_TMPL(), and sws_scale().
Definition at line 85 of file swscale.h.
Referenced by sws_init_context().
Definition at line 101 of file swscale.h.
Referenced by initFilter().
Definition at line 109 of file swscale.h.
Referenced by sws_getCoefficients().
Return a pointer to yuv<->rgb coefficients for the given colorspace suitable for sws_setColorspaceDetails().
Definition at line 49 of file yuv2rgb.c.
Referenced by parse_yuv_type().
Definition at line 224 of file utils.c.
Referenced by query_formats(), and sws_init_context().
Allocate an empty SwsContext.
This must be filled and passed to sws_init_context(). For filling see AVOptions, options.c and sws_setColorspaceDetails().
Definition at line 1072 of file utils.c.
Referenced by config_props(), sws_getCachedContext(), and sws_getContext().
Initialize the swscaler context sws_context.
Definition at line 1084 of file utils.c.
Referenced by config_props(), sws_getCachedContext(), and sws_getContext().
Free the swscaler context swsContext.
If swsContext is NULL, then does nothing.
Definition at line 1985 of file utils.c.
Referenced by close_filter_param(), config_props(), doTest(), ff_scale_image(), main(), stream_close(), sws_getCachedContext(), sws_getContext(), uninit(), uninit_opts(), and uninit_parse_context().
Allocate and return an SwsContext.
You need it to perform scaling/conversion operations using sws_scale().
Definition at line 1640 of file utils.c.
Referenced by doTest(), ff_scale_image(), init_opts(), main(), open_filter_param(), and write_video_frame().
Scale the image slice in srcSlice and put the resulting scaled slice in the image in dst.
A slice is a sequence of consecutive rows in an image.
Slices have to be provided in sequential order, either in top-bottom or bottom-top order. If slices are provided in non-sequential order the behavior of the function is undefined.
Scale the image slice in srcSlice and put the resulting scaled slice in the image in dst.
Assumes planar YUV to be in YUV order instead of YVU.
Definition at line 913 of file swscale.c.
Referenced by blur(), doTest(), ff_scale_image(), main(), queue_picture(), scale_slice(), wrap(), and write_video_frame().
Definition at line 954 of file utils.c.
Referenced by filter_frame(), and sws_init_context().
Allocate and return an uninitialized vector with length coefficients.
Definition at line 1734 of file utils.c.
Referenced by sws_cloneVec(), sws_getConstVec(), and sws_getGaussianVec().
Return a normalized Gaussian curve used to filter stuff quality = 3 is high quality, lower is lower quality.
Definition at line 1751 of file utils.c.
Referenced by alloc_sws_context(), open_filter_param(), and sws_getDefaultFilter().
Allocate and return a vector with length coefficients, all with the same value c.
Definition at line 1777 of file utils.c.
Referenced by sws_diffVec(), sws_getConvVec(), sws_getIdentityVec(), sws_getShiftedVec(), and sws_sumVec().
Allocate and return a vector with just one coefficient, with value 1.0.
Definition at line 1791 of file utils.c.
Referenced by sws_getDefaultFilter().
Scale all the coefficients of a by the scalar value.
Definition at line 1807 of file utils.c.
Referenced by alloc_sws_context(), sws_getDefaultFilter(), and sws_normalizeVec().
Scale all the coefficients of a so that their sum equals height.
Definition at line 1815 of file utils.c.
Referenced by sws_getDefaultFilter(), and sws_getGaussianVec().
Definition at line 1899 of file utils.c.
Referenced by sws_getDefaultFilter().
Definition at line 1890 of file utils.c.
Referenced by sws_getDefaultFilter().
Print with av_log() a textual representation of the vector a if log_level <= av_log_level.
Definition at line 1938 of file utils.c.
Referenced by sws_getDefaultFilter().
Definition at line 1964 of file utils.c.
Referenced by alloc_sws_context(), open_filter_param(), sws_freeFilter(), and sws_getDefaultFilter().
Check if context can be reused, otherwise reallocate a new one.
If context is NULL, just calls sws_getContext() to get a new context. Otherwise, checks if the parameters are the ones already saved in context. If that is the case, returns the current context. Otherwise, frees context and gets a new context with the new parameters.
Be warned that srcFilter and dstFilter are not checked, they are assumed to remain the same.
Definition at line 2052 of file utils.c.
Referenced by alloc_sws_context(), and queue_picture().
Convert an 8-bit paletted frame into a frame with a color depth of 32 bits.
The output frame will have the same packed format as the palette.
Definition at line 1367 of file swscale_unscaled.c.
Referenced by palToRgbWrapper().
Convert an 8-bit paletted frame into a frame with a color depth of 24 bits.
With the palette format "ABCD", the destination frame ends up with the format "ABC".
Definition at line 1377 of file swscale_unscaled.c.
Referenced by palToRgbWrapper().
Get the AVClass for swsContext.
It can be used in combination with AV_OPT_SEARCH_FAKE_OBJ for examining options.
Definition at line 88 of file options.c.
Referenced by child_class_next(), init_dict(), opt_default(), and show_help_default().