140     int w = inlink->
w, 
h = inlink->
h;
 
  142     double var_values[
VARS_NB], res;
 
  153     var_values[
VAR_W]       = inlink->
w;
 
  154     var_values[
VAR_H]       = inlink->
h;
 
  160 #define EVAL_RADIUS_EXPR(comp)                                          \ 
  161     expr = s->comp##_param.radius_expr;                                 \ 
  162     ret = av_expr_parse_and_eval(&res, expr, var_names, var_values,     \ 
  163                                  NULL, NULL, NULL, NULL, NULL, 0, ctx); \ 
  164     s->comp##_param.radius = res;                                       \ 
  166         av_log(NULL, AV_LOG_ERROR,                                      \ 
  167                "Error when evaluating " #comp " radius expression '%s'\n", expr); \ 
  175            "luma_radius:%d luma_power:%d " 
  176            "chroma_radius:%d chroma_power:%d " 
  177            "alpha_radius:%d alpha_power:%d " 
  178            "w:%d chroma_w:%d h:%d chroma_h:%d\n",
 
  184 #define CHECK_RADIUS_VAL(w_, h_, comp)                                  \ 
  185     if (s->comp##_param.radius < 0 ||                                   \ 
  186         2*s->comp##_param.radius > FFMIN(w_, h_)) {                     \ 
  187         av_log(ctx, AV_LOG_ERROR,                                       \ 
  188                "Invalid " #comp " radius value %d, must be >= 0 and <= %d\n", \ 
  189                s->comp##_param.radius, FFMIN(w_, h_)/2);                \ 
  190         return AVERROR(EINVAL);                                         \ 
  221 #define BLUR(type, depth)                                                   \ 
  222 static inline void blur ## depth(type *dst, int dst_step, const type *src,  \ 
  223                                  int src_step, int len, int radius)         \ 
  225     const int length = radius*2 + 1;                                        \ 
  226     const int inv = ((1<<16) + length/2)/length;                            \ 
  227     int x, sum = src[radius*src_step];                                      \ 
  229     for (x = 0; x < radius; x++)                                            \ 
  230         sum += src[x*src_step]<<1;                                          \ 
  232     sum = sum*inv + (1<<15);                                                \ 
  234     for (x = 0; x <= radius; x++) {                                         \ 
  235         sum += (src[(radius+x)*src_step] - src[(radius-x)*src_step])*inv;   \ 
  236         dst[x*dst_step] = sum>>16;                                          \ 
  239     for (; x < len-radius; x++) {                                           \ 
  240         sum += (src[(radius+x)*src_step] - src[(x-radius-1)*src_step])*inv; \ 
  241         dst[x*dst_step] = sum >>16;                                         \ 
  244     for (; x < len; x++) {                                                  \ 
  245         sum += (src[(2*len-radius-x-1)*src_step] - src[(x-radius-1)*src_step])*inv; \ 
  246         dst[x*dst_step] = sum>>16;                                          \ 
  256                         int len, 
int radius, 
int pixsize)
 
  258     if (pixsize == 1) blur8 (dst, dst_step   , src, src_step   , len, radius);
 
  259     else              blur16((uint16_t*)dst, dst_step>>1, (
const uint16_t*)src, src_step>>1, len, radius);
 
  267     if (radius && power) {
 
  268         blur(a, pixsize, src, src_step, len, radius, pixsize);
 
  269         for (; power > 2; power--) {
 
  271             blur(b, pixsize, a, pixsize, len, radius, pixsize);
 
  275             blur(dst, dst_step, a, pixsize, len, radius, pixsize);
 
  279                 for (i = 0; i < 
len; i++)
 
  280                     dst[i*dst_step] = a[i];
 
  282                 for (i = 0; i < 
len; i++)
 
  283                     *(uint16_t*)(dst + i*dst_step) = ((uint16_t*)
a)[i];
 
  288             for (i = 0; i < 
len; i++)
 
  289                 dst[i*dst_step] = src[i*src_step];
 
  291             for (i = 0; i < 
len; i++)
 
  292                 *(uint16_t*)(dst + i*dst_step) = *(uint16_t*)(src + i*src_step);
 
  297                   int w, 
int h, 
int radius, 
int power, 
uint8_t *
temp[2], 
int pixsize)
 
  301     if (radius == 0 && dst == src)
 
  304     for (y = 0; y < 
h; y++)
 
  305         blur_power(dst + y*dst_linesize, pixsize, src + y*src_linesize, pixsize,
 
  306                    w, radius, power, temp, pixsize);
 
  310                   int w, 
int h, 
int radius, 
int power, 
uint8_t *
temp[2], 
int pixsize)
 
  314     if (radius == 0 && dst == src)
 
  317     for (x = 0; x < w; x++)
 
  318         blur_power(dst + x*pixsize, dst_linesize, src + x*pixsize, src_linesize,
 
  319                    h, radius, power, temp, pixsize);
 
  330     int w[4] = { inlink->
w, cw, cw, inlink->
w };
 
  334     const int pixsize = (depth+7)/8;
 
  346               w[plane], h[plane], s->
radius[plane], s->
power[plane],
 
  352               w[plane], h[plane], s->
radius[plane], s->
power[plane],
 
  360 #define OFFSET(x) offsetof(BoxBlurContext, x) 
  361 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM 
  366     { 
"luma_power",  
"How many times should the boxblur be applied to luma",  
OFFSET(luma_param.power), 
AV_OPT_TYPE_INT, {.i64=2}, 0, INT_MAX, .flags = 
FLAGS },
 
  367     { 
"lp",          
"How many times should the boxblur be applied to luma",  
OFFSET(luma_param.power), 
AV_OPT_TYPE_INT, {.i64=2}, 0, INT_MAX, .flags = 
FLAGS },
 
  371     { 
"chroma_power",  
"How many times should the boxblur be applied to chroma",  
OFFSET(chroma_param.power), 
AV_OPT_TYPE_INT, {.i64=-1}, -1, INT_MAX, .flags = 
FLAGS },
 
  372     { 
"cp",            
"How many times should the boxblur be applied to chroma",  
OFFSET(chroma_param.power), 
AV_OPT_TYPE_INT, {.i64=-1}, -1, INT_MAX, .flags = 
FLAGS },
 
  376     { 
"alpha_power",  
"How many times should the boxblur be applied to alpha",  
OFFSET(alpha_param.power), 
AV_OPT_TYPE_INT, {.i64=-1}, -1, INT_MAX, .flags = 
FLAGS },
 
  377     { 
"ap",           
"How many times should the boxblur be applied to alpha",  
OFFSET(alpha_param.power), 
AV_OPT_TYPE_INT, {.i64=-1}, -1, INT_MAX, .flags = 
FLAGS },
 
  406     .priv_class    = &boxblur_class,
 
  410     .
inputs        = avfilter_vf_boxblur_inputs,
 
  411     .
outputs       = avfilter_vf_boxblur_outputs,
 
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette. 
 
static void hblur(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int w, int h, int radius, int power, uint8_t *temp[2], int pixsize)
 
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
 
This structure describes decoded (raw) audio or video data. 
 
Main libavfilter public API header. 
 
static int config_input(AVFilterLink *inlink)
 
int h
agreed upon image height 
 
static enum AVSampleFormat formats[]
 
static void blur(uint8_t *dst, int dst_step, const uint8_t *src, int src_step, int len, int radius, int pixsize)
 
static av_cold int init(AVFilterContext *ctx)
 
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions. 
 
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width. 
 
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
 
const char * name
Pad name. 
 
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter. 
 
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed. 
 
uint8_t * temp[2]
temporary buffer used in blur_power() 
 
static const AVFilterPad avfilter_vf_boxblur_outputs[]
 
static const AVOption boxblur_options[]
 
#define AV_LOG_VERBOSE
Detailed information. 
 
static void blur_power(uint8_t *dst, int dst_step, const uint8_t *src, int src_step, int len, int radius, int power, uint8_t *temp[2], int pixsize)
 
A filter pad used for either input or output. 
 
A link between two filters. 
 
static double alpha(void *priv, double x, double y)
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height. 
 
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g. 
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
void * priv
private data for use by the filter 
 
static int query_formats(AVFilterContext *ctx)
 
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format. 
 
static const AVFilterPad avfilter_vf_boxblur_inputs[]
 
int w
agreed upon image width 
 
uint64_t flags
Combination of AV_PIX_FMT_FLAG_... 
 
uint8_t nb_components
The number of components each pixel has, (1-4) 
 
#define BLUR(type, depth)
 
static const char *const var_names[]
 
static const AVFilterPad outputs[]
 
int format
agreed upon media format 
 
#define EVAL_RADIUS_EXPR(comp)
 
static const AVFilterPad inputs[]
 
char * av_strdup(const char *s)
Duplicate a string. 
 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
 
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
 
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
 
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
 
Describe the class of an AVClass context structure. 
 
static void vblur(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int w, int h, int radius, int power, uint8_t *temp[2], int pixsize)
 
static av_cold void uninit(AVFilterContext *ctx)
 
const char * name
Filter name. 
 
AVFILTER_DEFINE_CLASS(boxblur)
 
#define AV_PIX_FMT_FLAG_BITSTREAM
All values of a component are bit-wise packed end to end. 
 
AVFilterLink ** outputs
array of pointers to output links 
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes. 
 
common internal and external API header 
 
#define CHECK_RADIUS_VAL(w_, h_, comp)
 
uint8_t pi<< 24) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_U8,(uint64_t)((*(constuint8_t *) pi-0x80U))<< 56) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S16,(uint64_t)(*(constint16_t *) pi)<< 48) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32,(uint64_t)(*(constint32_t *) pi)<< 32) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S64,(*(constint64_t *) pi >>56)+0x80) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S64,*(constint64_t *) pi *(1.0f/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S64,*(constint64_t *) pi *(1.0/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(constfloat *) pi *(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(constdouble *) pi *(INT64_C(1)<< 63)))#defineFMT_PAIR_FUNC(out, in) staticconv_func_type *constfmt_pair_to_conv_functions[AV_SAMPLE_FMT_NB *AV_SAMPLE_FMT_NB]={FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S64),};staticvoidcpy1(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, len);}staticvoidcpy2(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 2 *len);}staticvoidcpy4(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 4 *len);}staticvoidcpy8(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 8 *len);}AudioConvert *swri_audio_convert_alloc(enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, constint *ch_map, intflags){AudioConvert *ctx;conv_func_type *f=fmt_pair_to_conv_functions[av_get_packed_sample_fmt(out_fmt)+AV_SAMPLE_FMT_NB *av_get_packed_sample_fmt(in_fmt)];if(!f) returnNULL;ctx=av_mallocz(sizeof(*ctx));if(!ctx) returnNULL;if(channels==1){in_fmt=av_get_planar_sample_fmt(in_fmt);out_fmt=av_get_planar_sample_fmt(out_fmt);}ctx->channels=channels;ctx->conv_f=f;ctx->ch_map=ch_map;if(in_fmt==AV_SAMPLE_FMT_U8||in_fmt==AV_SAMPLE_FMT_U8P) memset(ctx->silence, 0x80, sizeof(ctx->silence));if(out_fmt==in_fmt &&!ch_map){switch(av_get_bytes_per_sample(in_fmt)){case1:ctx->simd_f=cpy1;break;case2:ctx->simd_f=cpy2;break;case4:ctx->simd_f=cpy4;break;case8:ctx->simd_f=cpy8;break;}}if(HAVE_YASM &&1) swri_audio_convert_init_x86(ctx, out_fmt, in_fmt, channels);if(ARCH_ARM) swri_audio_convert_init_arm(ctx, out_fmt, in_fmt, channels);if(ARCH_AARCH64) swri_audio_convert_init_aarch64(ctx, out_fmt, in_fmt, channels);returnctx;}voidswri_audio_convert_free(AudioConvert **ctx){av_freep(ctx);}intswri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, intlen){intch;intoff=0;constintos=(out->planar?1:out->ch_count)*out->bps;unsignedmisaligned=0;av_assert0(ctx->channels==out->ch_count);if(ctx->in_simd_align_mask){intplanes=in->planar?in->ch_count:1;unsignedm=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) in->ch[ch];misaligned|=m &ctx->in_simd_align_mask;}if(ctx->out_simd_align_mask){intplanes=out->planar?out->ch_count:1;unsignedm=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) out->ch[ch];misaligned|=m &ctx->out_simd_align_mask;}if(ctx->simd_f &&!ctx->ch_map &&!misaligned){off=len &~15;av_assert1(off >=0);av_assert1(off<=len);av_assert2(ctx->channels==SWR_CH_MAX||!in->ch[ctx->channels]);if(off >0){if(out->planar==in->planar){intplanes=out->planar?out->ch_count:1;for(ch=0;ch< planes;ch++){ctx->simd_f(out-> ch ch
 
#define AV_PIX_FMT_FLAG_BE
Pixel format is big-endian. 
 
AVFilterContext * dst
dest filter 
 
int depth
Number of bits in the component. 
 
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane. 
 
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst. 
 
simple arithmetic expression evaluator 
 
#define AV_CEIL_RSHIFT(a, b)