Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions av2/av2.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ list(
"${AVM_ROOT}/av2/encoder/arm/neon/rdopt_neon.c"
"${AVM_ROOT}/av2/encoder/arm/neon/encodetxb_neon.c"
"${AVM_ROOT}/av2/encoder/arm/neon/fwd_stxfm_neon.c"
"${AVM_ROOT}/av2/encoder/arm/neon/highbd_fwd_txfm_neon.c"
"${AVM_ROOT}/av2/encoder/arm/neon/hybrid_fwd_txfm_neon.c")

list(APPEND AVM_AV2_ENCODER_INTRIN_MSA
Expand Down
4 changes: 2 additions & 2 deletions av2/common/av2_rtcd_defs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,14 @@ ()
# fwd cctx
add_proto qw/void av2_fwd_cross_chroma_tx_block/, "tran_low_t *coeff_c1, tran_low_t *coeff_c2,
TX_SIZE tx_size, CctxType cctx_type, const int bd";
specialize qw/av2_fwd_cross_chroma_tx_block avx2/;
specialize qw/av2_fwd_cross_chroma_tx_block avx2 neon/;

#fwd txfm
add_proto qw/void fwd_stxfm/ , "tran_low_t *src, tran_low_t *dst, const PREDICTION_MODE mode, const uint8_t stx_idx, const int size, const int bd";
specialize qw/fwd_stxfm sse4_1 avx2 neon/;

add_proto qw/void fwd_txfm/, "const int16_t *resi, tran_low_t *coeff, int diff_stride, TxfmParam *txfm_param";
specialize qw/fwd_txfm avx2/;
specialize qw/fwd_txfm avx2 neon/;

#
# Motion search
Expand Down
Loading
Loading