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:
authorRonald S. Bultje <rsbultje@gmail.com>2020-03-27 15:38:01 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2020-03-31 14:19:55 +0300
commit8fd5dc3a5cea402114d59e509b52d869d6a86cb4 (patch)
treebd5ec71893529b18672ee9aece1d6c4fdd0a92a4 /src/tables.h
parent63f96a1f9b5e62d2dd53c1435765e21ffb84ad23 (diff)
Make dav1d_resize_filter[] negative so it fits in int8_t
Diffstat (limited to 'src/tables.h')
-rw-r--r--src/tables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tables.h b/src/tables.h
index 6f8dfd0..8d2d845 100644
--- a/src/tables.h
+++ b/src/tables.h
@@ -112,7 +112,7 @@ extern const uint8_t dav1d_sgr_x_by_x[256];
extern const int8_t dav1d_mc_subpel_filters[5][15][8];
extern const int8_t dav1d_mc_warp_filter[193][8];
-extern const int16_t dav1d_resize_filter[64][8];
+extern const int8_t dav1d_resize_filter[64][8];
extern const uint8_t dav1d_sm_weights[128];
extern const uint16_t dav1d_dr_intra_derivative[44];