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:
authorHenrik Gramner <gramner@twoorioles.com>2018-10-05 16:33:35 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2018-10-05 19:38:18 +0300
commitbb505b3e7bbd23e67531ce82059845b2d83cdbe9 (patch)
treef80e9683cce8492d836f57fa31d8ca481626a8bb /src/tables.h
parent7e693a1d26779acf8e21378a898c25ab35f2bcac (diff)
Intra prediction DSP refactoring
Also remove some redundant clips in DC pred.
Diffstat (limited to 'src/tables.h')
-rw-r--r--src/tables.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tables.h b/src/tables.h
index 3ea8809..74be4be 100644
--- a/src/tables.h
+++ b/src/tables.h
@@ -113,4 +113,8 @@ extern const int16_t dav1d_sgr_one_by_x[25];
extern const int8_t dav1d_mc_subpel_filters[5][15][8];
extern const int8_t dav1d_mc_warp_filter[][8];
+extern const uint8_t dav1d_sm_weights[128];
+extern const int16_t dav1d_dr_intra_derivative[90];
+extern const int8_t dav1d_filter_intra_taps[5][8][8];
+
#endif /* __DAV1D_SRC_TABLES_H__ */