diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-29 16:08:20 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-12 12:05:54 +0200 |
commit | 0a6b1a9f21d5970a0439e32303535ed85f07673e (patch) | |
tree | 9eae12c19021024467e1c42b1c72d4952f2c431d /libavcodec/cavsdata.h | |
parent | be898457081ac2610ad4184272e9254e8922ff59 (diff) | |
download | ffmpeg-0a6b1a9f21d5970a0439e32303535ed85f07673e.tar.gz |
Replace int_fast integer types with their sized standard posix counterparts.
The _fast integer types provide no realworld benefits, but may introduce
portability issues and are just plain ugly.
Diffstat (limited to 'libavcodec/cavsdata.h')
-rw-r--r-- | libavcodec/cavsdata.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/cavsdata.h b/libavcodec/cavsdata.h index caed4e8962..210169f844 100644 --- a/libavcodec/cavsdata.h +++ b/libavcodec/cavsdata.h @@ -497,9 +497,9 @@ static const uint8_t tc_tab[64] = { 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9 }; -const int_fast8_t ff_left_modifier_l[8] = { 0,-1, 6,-1,-1, 7, 6, 7}; -const int_fast8_t ff_top_modifier_l[8] = {-1, 1, 5,-1,-1, 5, 7, 7}; -const int_fast8_t ff_left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6}; -const int_fast8_t ff_top_modifier_c[7] = { 4, 1,-1,-1, 4, 6, 6}; +const int8_t ff_left_modifier_l[8] = { 0, -1, 6, -1, -1, 7, 6, 7 }; +const int8_t ff_top_modifier_l[8] = { -1, 1, 5, -1, -1, 5, 7, 7 }; +const int8_t ff_left_modifier_c[7] = { 5, -1, 2, -1, 6, 5, 6 }; +const int8_t ff_top_modifier_c[7] = { 4, 1, -1, -1, 4, 6, 6 }; #endif /* AVCODEC_CAVSDATA_H */ |