FFmpeg
Macros | Functions
vp9dsp_init_aarch64.c File Reference
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "libavutil/mem_internal.h"
#include "libavutil/aarch64/cpu.h"
#include "libavcodec/vp9dsp.h"
#include "vp9dsp_init.h"

Go to the source code of this file.

Macros

#define declare_fpel(type, sz)
 
#define declare_copy_avg(sz)
 
#define decl_mc_func(op, filter, dir, sz)
 
#define define_8tap_2d_fn(op, filter, sz)
 
#define decl_filter_funcs(op, dir, sz)
 
#define decl_mc_funcs(sz)
 
#define ff_vp9_copy32_neon   ff_vp9_copy32_aarch64
 
#define ff_vp9_copy64_neon   ff_vp9_copy64_aarch64
 
#define define_8tap_2d_funcs(sz)
 
#define init_fpel(idx1, idx2, sz, type, suffix)
 
#define init_copy(idx, sz, suffix)   init_fpel(idx, 0, sz, copy, suffix)
 
#define init_avg(idx, sz, suffix)   init_fpel(idx, 1, sz, avg, suffix)
 
#define init_copy_avg(idx, sz)
 
#define init_mc_func(idx1, idx2, op, filter, fname, dir, mx, my, sz, pfx)   dsp->mc[idx1][filter][idx2][mx][my] = pfx##op##_##fname##sz##_##dir##_neon
 
#define init_mc_funcs(idx, dir, mx, my, sz, pfx)
 
#define init_mc_funcs_dirs(idx, sz)
 
#define define_itxfm(type_a, type_b, sz)
 
#define define_itxfm_funcs(sz)
 
#define init_itxfm(tx, sz)
 
#define init_idct(tx, nm)
 
#define define_loop_filter(dir, wd, len)   void ff_vp9_loop_filter_##dir##_##wd##_##len##_neon(uint8_t *dst, ptrdiff_t stride, int E, int I, int H)
 
#define define_loop_filters(wd, len)
 

Functions

 declare_copy_avg (64)
 
 declare_copy_avg (32)
 
 declare_copy_avg (16)
 
 declare_copy_avg (8)
 
 declare_copy_avg (4)
 
 decl_mc_funcs (64)
 
 decl_mc_funcs (32)
 
 decl_mc_funcs (16)
 
 decl_mc_funcs (8)
 
 decl_mc_funcs (4)
 
 define_8tap_2d_funcs (64)
 
 define_itxfm_funcs (4)
 
 define_itxfm_funcs (8)
 
 define_itxfm_funcs (16)
 
 define_itxfm (idct, idct, 32)
 
 define_itxfm (iwht, iwht, 4)
 
static av_cold void vp9dsp_itxfm_init_aarch64 (VP9DSPContext *dsp)
 
 define_loop_filters (4, 8)
 
 define_loop_filters (8, 8)
 
 define_loop_filters (16, 8)
 
 define_loop_filters (16, 16)
 
 define_loop_filters (44, 16)
 
 define_loop_filters (48, 16)
 
 define_loop_filters (84, 16)
 
 define_loop_filters (88, 16)
 
static av_cold void vp9dsp_loopfilter_init_aarch64 (VP9DSPContext *dsp)
 
av_cold void ff_vp9dsp_init_aarch64 (VP9DSPContext *dsp, int bpp)
 

Macro Definition Documentation

◆ declare_fpel

#define declare_fpel (   type,
  sz 
)
Value:
void ff_vp9_##type##sz##_neon(uint8_t *dst, ptrdiff_t dst_stride, \
const uint8_t *src, ptrdiff_t src_stride, \
int h, int mx, int my)

Definition at line 30 of file vp9dsp_init_aarch64.c.

◆ declare_copy_avg

#define declare_copy_avg (   sz)
Value:
declare_fpel(avg , sz)

Definition at line 35 of file vp9dsp_init_aarch64.c.

◆ decl_mc_func

#define decl_mc_func (   op,
  filter,
  dir,
  sz 
)
Value:
void ff_vp9_##op##_##filter##sz##_##dir##_neon(uint8_t *dst, ptrdiff_t dst_stride, \
const uint8_t *src, ptrdiff_t src_stride, \
int h, int mx, int my)

Definition at line 39 of file vp9dsp_init_aarch64.c.

◆ define_8tap_2d_fn

#define define_8tap_2d_fn (   op,
  filter,
  sz 
)
Value:
static void op##_##filter##sz##_hv_neon(uint8_t *dst, ptrdiff_t dst_stride, \
const uint8_t *src, ptrdiff_t src_stride, \
int h, int mx, int my) \
{ \
LOCAL_ALIGNED_16(uint8_t, temp, [((1 + (sz < 64)) * sz + 8) * sz]); \
/* We only need h + 7 lines, but the horizontal filter assumes an \
* even number of rows, so filter h + 8 lines here. */ \
ff_vp9_put_##filter##sz##_h_neon(temp, sz, \
src - 3 * src_stride, src_stride, \
h + 8, mx, 0); \
ff_vp9_##op##_##filter##sz##_v_neon(dst, dst_stride, \
temp + 3 * sz, sz, \
h, 0, my); \
}

Definition at line 44 of file vp9dsp_init_aarch64.c.

◆ decl_filter_funcs

#define decl_filter_funcs (   op,
  dir,
  sz 
)
Value:
decl_mc_func(op, regular, dir, sz); \
decl_mc_func(op, sharp, dir, sz); \
decl_mc_func(op, smooth, dir, sz)

Definition at line 59 of file vp9dsp_init_aarch64.c.

◆ decl_mc_funcs

#define decl_mc_funcs (   sz)
Value:
decl_filter_funcs(put, h, sz); \
decl_filter_funcs(avg, h, sz); \
decl_filter_funcs(put, v, sz); \
decl_filter_funcs(avg, v, sz); \
decl_filter_funcs(put, hv, sz); \
decl_filter_funcs(avg, hv, sz)

Definition at line 64 of file vp9dsp_init_aarch64.c.

◆ ff_vp9_copy32_neon

#define ff_vp9_copy32_neon   ff_vp9_copy32_aarch64

Definition at line 72 of file vp9dsp_init_aarch64.c.

◆ ff_vp9_copy64_neon

#define ff_vp9_copy64_neon   ff_vp9_copy64_aarch64

Definition at line 73 of file vp9dsp_init_aarch64.c.

◆ define_8tap_2d_funcs

#define define_8tap_2d_funcs (   sz)
Value:
define_8tap_2d_fn(put, regular, sz) \
define_8tap_2d_fn(put, sharp, sz) \
define_8tap_2d_fn(put, smooth, sz) \
define_8tap_2d_fn(avg, regular, sz) \
define_8tap_2d_fn(avg, sharp, sz) \
define_8tap_2d_fn(avg, smooth, sz)

Definition at line 87 of file vp9dsp_init_aarch64.c.

◆ init_fpel

#define init_fpel (   idx1,
  idx2,
  sz,
  type,
  suffix 
)
Value:
dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \
dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \
dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \
dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##suffix

◆ init_copy

#define init_copy (   idx,
  sz,
  suffix 
)    init_fpel(idx, 0, sz, copy, suffix)

◆ init_avg

#define init_avg (   idx,
  sz,
  suffix 
)    init_fpel(idx, 1, sz, avg, suffix)

◆ init_copy_avg

#define init_copy_avg (   idx,
  sz 
)
Value:
init_copy(idx, sz, _neon); \
init_avg (idx, sz, _neon)

◆ init_mc_func

#define init_mc_func (   idx1,
  idx2,
  op,
  filter,
  fname,
  dir,
  mx,
  my,
  sz,
  pfx 
)    dsp->mc[idx1][filter][idx2][mx][my] = pfx##op##_##fname##sz##_##dir##_neon

◆ init_mc_funcs

#define init_mc_funcs (   idx,
  dir,
  mx,
  my,
  sz,
  pfx 
)
Value:
init_mc_func(idx, 0, put, FILTER_8TAP_REGULAR, regular, dir, mx, my, sz, pfx); \
init_mc_func(idx, 0, put, FILTER_8TAP_SHARP, sharp, dir, mx, my, sz, pfx); \
init_mc_func(idx, 0, put, FILTER_8TAP_SMOOTH, smooth, dir, mx, my, sz, pfx); \
init_mc_func(idx, 1, avg, FILTER_8TAP_REGULAR, regular, dir, mx, my, sz, pfx); \
init_mc_func(idx, 1, avg, FILTER_8TAP_SHARP, sharp, dir, mx, my, sz, pfx); \
init_mc_func(idx, 1, avg, FILTER_8TAP_SMOOTH, smooth, dir, mx, my, sz, pfx)

◆ init_mc_funcs_dirs

#define init_mc_funcs_dirs (   idx,
  sz 
)
Value:
init_mc_funcs(idx, h, 1, 0, sz, ff_vp9_); \
init_mc_funcs(idx, v, 0, 1, sz, ff_vp9_); \
init_mc_funcs(idx, hv, 1, 1, sz,)

◆ define_itxfm

#define define_itxfm (   type_a,
  type_b,
  sz 
)
Value:
void ff_vp9_##type_a##_##type_b##_##sz##x##sz##_add_neon(uint8_t *_dst, \
ptrdiff_t stride, \
int16_t *_block, int eob)

Definition at line 157 of file vp9dsp_init_aarch64.c.

◆ define_itxfm_funcs

#define define_itxfm_funcs (   sz)
Value:
define_itxfm(iadst, idct, sz); \
define_itxfm(idct, iadst, sz); \
define_itxfm(iadst, iadst, sz)

Definition at line 162 of file vp9dsp_init_aarch64.c.

◆ init_itxfm

#define init_itxfm (   tx,
  sz 
)
Value:
dsp->itxfm_add[tx][DCT_DCT] = ff_vp9_idct_idct_##sz##_add_neon; \
dsp->itxfm_add[tx][DCT_ADST] = ff_vp9_iadst_idct_##sz##_add_neon; \
dsp->itxfm_add[tx][ADST_DCT] = ff_vp9_idct_iadst_##sz##_add_neon; \
dsp->itxfm_add[tx][ADST_ADST] = ff_vp9_iadst_iadst_##sz##_add_neon

◆ init_idct

#define init_idct (   tx,
  nm 
)
Value:
dsp->itxfm_add[tx][DCT_DCT] = \
dsp->itxfm_add[tx][ADST_DCT] = \
dsp->itxfm_add[tx][DCT_ADST] = \
dsp->itxfm_add[tx][ADST_ADST] = ff_vp9_##nm##_add_neon

◆ define_loop_filter

#define define_loop_filter (   dir,
  wd,
  len 
)    void ff_vp9_loop_filter_##dir##_##wd##_##len##_neon(uint8_t *dst, ptrdiff_t stride, int E, int I, int H)

Definition at line 200 of file vp9dsp_init_aarch64.c.

◆ define_loop_filters

#define define_loop_filters (   wd,
  len 
)
Value:
define_loop_filter(v, wd, len)

Definition at line 203 of file vp9dsp_init_aarch64.c.

Function Documentation

◆ declare_copy_avg() [1/5]

declare_copy_avg ( 64  )

◆ declare_copy_avg() [2/5]

declare_copy_avg ( 32  )

◆ declare_copy_avg() [3/5]

declare_copy_avg ( 16  )

◆ declare_copy_avg() [4/5]

declare_copy_avg ( )

◆ declare_copy_avg() [5/5]

declare_copy_avg ( )

◆ decl_mc_funcs() [1/5]

decl_mc_funcs ( 64  )

◆ decl_mc_funcs() [2/5]

decl_mc_funcs ( 32  )

◆ decl_mc_funcs() [3/5]

decl_mc_funcs ( 16  )

◆ decl_mc_funcs() [4/5]

decl_mc_funcs ( )

◆ decl_mc_funcs() [5/5]

decl_mc_funcs ( )

◆ define_8tap_2d_funcs()

define_8tap_2d_funcs ( 64  )

Definition at line 95 of file vp9dsp_init_aarch64.c.

◆ define_itxfm_funcs() [1/3]

define_itxfm_funcs ( )

◆ define_itxfm_funcs() [2/3]

define_itxfm_funcs ( )

◆ define_itxfm_funcs() [3/3]

define_itxfm_funcs ( 16  )

◆ define_itxfm() [1/2]

define_itxfm ( idct  ,
idct  ,
32   
)

◆ define_itxfm() [2/2]

define_itxfm ( iwht  ,
iwht  ,
 
)

◆ vp9dsp_itxfm_init_aarch64()

static av_cold void vp9dsp_itxfm_init_aarch64 ( VP9DSPContext dsp)
static

Definition at line 175 of file vp9dsp_init_aarch64.c.

Referenced by ff_vp9dsp_init_aarch64().

◆ define_loop_filters() [1/8]

define_loop_filters ( ,
 
)

◆ define_loop_filters() [2/8]

define_loop_filters ( ,
 
)

◆ define_loop_filters() [3/8]

define_loop_filters ( 16  ,
 
)

◆ define_loop_filters() [4/8]

define_loop_filters ( 16  ,
16   
)

◆ define_loop_filters() [5/8]

define_loop_filters ( 44  ,
16   
)

◆ define_loop_filters() [6/8]

define_loop_filters ( 48  ,
16   
)

◆ define_loop_filters() [7/8]

define_loop_filters ( 84  ,
16   
)

◆ define_loop_filters() [8/8]

define_loop_filters ( 88  ,
16   
)

◆ vp9dsp_loopfilter_init_aarch64()

static av_cold void vp9dsp_loopfilter_init_aarch64 ( VP9DSPContext dsp)
static

Definition at line 218 of file vp9dsp_init_aarch64.c.

Referenced by ff_vp9dsp_init_aarch64().

◆ ff_vp9dsp_init_aarch64()

av_cold void ff_vp9dsp_init_aarch64 ( VP9DSPContext dsp,
int  bpp 
)

Definition at line 244 of file vp9dsp_init_aarch64.c.

Referenced by ff_vp9dsp_init().

filter
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
Definition: filter_design.txt:228
decl_mc_func
#define decl_mc_func(op, filter, dir, sz)
Definition: vp9dsp_init_aarch64.c:39
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
FILTER_8TAP_SHARP
@ FILTER_8TAP_SHARP
Definition: vp9.h:67
idct
static void idct(int16_t block[64])
Definition: 4xm.c:166
op
static int op(uint8_t **dst, const uint8_t *dst_end, GetByteContext *gb, int pixel, int count, int *x, int width, int linesize)
Perform decode operation.
Definition: anm.c:76
decl_filter_funcs
#define decl_filter_funcs(op, dir, sz)
Definition: vp9dsp_init_aarch64.c:59
declare_fpel
#define declare_fpel(type, sz)
Definition: vp9dsp_init_aarch64.c:30
define_itxfm
#define define_itxfm(type_a, type_b, sz)
Definition: vp9dsp_init_aarch64.c:157
DCT_ADST
@ DCT_ADST
Definition: vp9.h:39
init_mc_funcs
#define init_mc_funcs(idx, dir, mx, my, sz, pfx)
define_loop_filter
#define define_loop_filter(dir, wd, len)
Definition: vp9dsp_init_aarch64.c:200
FILTER_BILINEAR
@ FILTER_BILINEAR
Definition: vp9.h:68
DCT_DCT
@ DCT_DCT
Definition: vp9.h:38
copy
static void copy(const float *p1, float *p2, const int length)
Definition: vf_vaguedenoiser.c:185
FILTER_8TAP_REGULAR
@ FILTER_8TAP_REGULAR
Definition: vp9.h:66
avg
#define avg(a, b, c, d)
Definition: colorspacedsp_template.c:28
define_8tap_2d_fn
#define define_8tap_2d_fn(op, filter, sz)
Definition: vp9dsp_init_aarch64.c:44
init_copy
#define init_copy(idx, sz, suffix)
ADST_ADST
@ ADST_ADST
Definition: vp9.h:41
FILTER_8TAP_SMOOTH
@ FILTER_8TAP_SMOOTH
Definition: vp9.h:65
len
int len
Definition: vorbis_enc_data.h:426
stride
#define stride
Definition: h264pred_template.c:537
suffix
const char * suffix
Definition: checkasm.c:252
temp
else temp
Definition: vf_mcdeint.c:263
_
#define _
init_mc_func
#define init_mc_func(idx1, idx2, op, filter, fname, dir, mx, my, sz, pfx)
smooth
static float smooth(DeshakeOpenCLContext *deshake_ctx, float *gauss_kernel, int length, float max_val, AVFifo *values)
Definition: vf_deshake_opencl.c:888
src
INIT_CLIP pixel * src
Definition: h264pred_template.c:418
ADST_DCT
@ ADST_DCT
Definition: vp9.h:40
h
h
Definition: vp9dsp_template.c:2038