]> git.sesse.net Git - x264/blobdiff - common/quant.h
aarch64: NEON asm for missing x264_zigzag_* functions
[x264] / common / quant.h
index b5d04e8ad0055563ec0d3140ecb5ded61584bea2..ae597ef889399acc47b50e54d412ad622e7fc2e1 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * quant.h: quantization and level-run
  *****************************************************************************
- * Copyright (C) 2005-2011 x264 project
+ * Copyright (C) 2005-2014 x264 project
  *
  * Authors: Loren Merritt <lorenm@u.washington.edu>
  *          Fiona Glaser <fiona@x264.com>
@@ -29,8 +29,9 @@
 
 typedef struct
 {
-    int (*quant_8x8)( dctcoef dct[64], udctcoef mf[64], udctcoef bias[64] );
-    int (*quant_4x4)( dctcoef dct[16], udctcoef mf[16], udctcoef bias[16] );
+    int (*quant_8x8)  ( dctcoef dct[64], udctcoef mf[64], udctcoef bias[64] );
+    int (*quant_4x4)  ( dctcoef dct[16], udctcoef mf[16], udctcoef bias[16] );
+    int (*quant_4x4x4)( dctcoef dct[4][16], udctcoef mf[16], udctcoef bias[16] );
     int (*quant_4x4_dc)( dctcoef dct[16], int mf, int bias );
     int (*quant_2x2_dc)( dctcoef dct[4], int mf, int bias );