mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-28 03:13:08 +08:00
libavcodec: Reduce the size of some arrays
This commit uses smaller types for some static const arrays to reduce their size in case the entries can be represented in the smaller type. The biggest savings came from inv_map_table in vp9.c. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
91f5950f83
commit
a1a8815220
@@ -42,9 +42,9 @@ enum AICBands {
|
||||
NUM_BANDS
|
||||
};
|
||||
|
||||
static const int aic_num_band_coeffs[NUM_BANDS] = { 64, 32, 192, 96 };
|
||||
static const uint8_t aic_num_band_coeffs[NUM_BANDS] = { 64, 32, 192, 96 };
|
||||
|
||||
static const int aic_band_off[NUM_BANDS] = { 0, 64, 96, 288 };
|
||||
static const uint16_t aic_band_off[NUM_BANDS] = { 0, 64, 96, 288 };
|
||||
|
||||
static const uint8_t aic_quant_matrix[64] = {
|
||||
8, 16, 19, 22, 22, 26, 26, 27,
|
||||
|
||||
Reference in New Issue
Block a user