[FFmpeg-cvslog] avcodec/bink: make two tables use uint8_t type
Paul B Mahol
git at videolan.org
Thu Jun 15 19:16:16 EEST 2023
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Jun 15 18:01:32 2023 +0200| [21f6496ccebf3c441affc9ed3f711e9964e81359] | committer: Paul B Mahol
avcodec/bink: make two tables use uint8_t type
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=21f6496ccebf3c441affc9ed3f711e9964e81359
---
libavcodec/bink.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/bink.c b/libavcodec/bink.c
index 15fc9d29ed..e3822d689c 100644
--- a/libavcodec/bink.c
+++ b/libavcodec/bink.c
@@ -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
};
More information about the ffmpeg-cvslog
mailing list