]> git.sesse.net Git - x264/blobdiff - common/arm/quant.h
arm: Implement x264_denoise_dct_neon
[x264] / common / arm / quant.h
index 0695ab1e327920a22feb3b39b0540e45879b5090..78178e8d5713c8fe6b310ff37e6598a8b6a550ef 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.h: arm quantization and level-run
  *****************************************************************************
- * Copyright (C) 2005-2014 x264 project
+ * Copyright (C) 2005-2015 x264 project
  *
  * Authors: David Conrad <lessen42@gmail.com>
  *
@@ -39,8 +39,11 @@ void x264_dequant_4x4_neon( int16_t dct[16], int dequant_mf[6][16], int i_qp );
 void x264_dequant_8x8_neon( int16_t dct[64], int dequant_mf[6][64], int i_qp );
 
 int x264_coeff_last4_arm( int16_t * );
+int x264_coeff_last8_arm( int16_t * );
 int x264_coeff_last15_neon( int16_t * );
 int x264_coeff_last16_neon( int16_t * );
 int x264_coeff_last64_neon( int16_t * );
 
+void x264_denoise_dct_neon( dctcoef *, uint32_t *, udctcoef *, int );
+
 #endif