diff options
author | Peter Ross <pross@xvid.org> | 2019-01-07 09:01:14 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2019-01-08 21:53:53 +1100 |
commit | 2659a0fe36327233a5f2f3968d638d061ecbba39 (patch) | |
tree | 30d2f811cb9ac6f67095a8f8b18b469d3adb58e1 | |
parent | 038d291b70bffa550cde552f8325e1b9f71f0646 (diff) | |
download | ffmpeg-2659a0fe36327233a5f2f3968d638d061ecbba39.tar.gz |
avcodec/vp3data: use more compact data type
-rw-r--r-- | libavcodec/vp3data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3data.h b/libavcodec/vp3data.h index 3884bca878..c82b1b3a86 100644 --- a/libavcodec/vp3data.h +++ b/libavcodec/vp3data.h @@ -73,7 +73,7 @@ static const uint8_t vp31_dc_scale_factor[64] = { 20, 10, 10, 10, 10, 10, 10, 10 }; -static const uint32_t vp31_ac_scale_factor[64] = { +static const uint16_t vp31_ac_scale_factor[64] = { 500, 450, 400, 370, 340, 310, 285, 265, 245, 225, 210, 195, 185, 180, 170, 160, 150, 145, 135, 130, 125, 115, 110, 107, |