Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXuefeng Jiang <xuefeng@multicorewareinc.com>2019-02-12 10:24:22 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2019-02-14 16:55:19 +0300
commitd5cc850312ac712f33cdd35a09f36f338bd1644a (patch)
tree8e1be3f3779d9ac8aecb0c0587a4e8e8da906a88 /src/internal.h
parent7acf1360d6355e626a4fe8198892605d96d0c422 (diff)
Add SSSE3 implementation for pal_pred
pal_pred_w4_8bpc_c: 141.0 pal_pred_w4_8bpc_ssse3: 23.4 pal_pred_w8_8bpc_c: 374.5 pal_pred_w8_8bpc_ssse3: 29.0 pal_pred_w16_8bpc_c: 946.3 pal_pred_w16_8bpc_ssse3: 45.6 pal_pred_w32_8bpc_c: 1946.1 pal_pred_w32_8bpc_ssse3: 92.3 pal_pred_w64_8bpc_c: 4925.9 pal_pred_w64_8bpc_ssse3: 180.1
Diffstat (limited to 'src/internal.h')
-rw-r--r--src/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal.h b/src/internal.h
index ee66dc6..f0fe5ef 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -279,7 +279,7 @@ struct Dav1dTileContext {
// FIXME types can be changed to pixel (and dynamically allocated)
// which would make copy/assign operations slightly faster?
uint16_t al_pal[2 /* a/l */][32 /* bx/y4 */][3 /* plane */][8 /* palette_idx */];
- uint16_t pal[3 /* plane */][8 /* palette_idx */];
+ ALIGN(uint16_t pal[3 /* plane */][8 /* palette_idx */], 16);
uint8_t pal_sz_uv[2 /* a/l */][32 /* bx4/by4 */];
uint8_t txtp_map[32 * 32]; // inter-only
Dav1dWarpedMotionParams warpmv;