mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/bink: make two tables use uint8_t type
This commit is contained in:
parent
81b4e4abb0
commit
21f6496cce
@ -59,11 +59,11 @@ enum OldSources {
|
||||
BINKB_NB_SRC
|
||||
};
|
||||
|
||||
static const int binkb_bundle_sizes[BINKB_NB_SRC] = {
|
||||
static const uint8_t binkb_bundle_sizes[BINKB_NB_SRC] = {
|
||||
4, 8, 8, 5, 5, 11, 11, 4, 4, 7
|
||||
};
|
||||
|
||||
static const int binkb_bundle_signed[BINKB_NB_SRC] = {
|
||||
static const uint8_t binkb_bundle_signed[BINKB_NB_SRC] = {
|
||||
0, 0, 0, 1, 1, 0, 1, 0, 0, 0
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user