Skip to content
Snippets Groups Projects
Commit e9a38248 authored by Justin Ruggles's avatar Justin Ruggles
Browse files

only use sized data types when necessary

Originally committed as revision 9783 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8f58a4c9
Branches
Tags
No related merge requests found
...@@ -88,35 +88,35 @@ static const float slevs[4] = { LEVEL_MINUS_3DB, LEVEL_MINUS_6DB, LEVEL_ZERO, LE ...@@ -88,35 +88,35 @@ static const float slevs[4] = { LEVEL_MINUS_3DB, LEVEL_MINUS_6DB, LEVEL_ZERO, LE
#define AC3_OUTPUT_LFEON 0x10 #define AC3_OUTPUT_LFEON 0x10
typedef struct { typedef struct {
uint8_t acmod; int acmod;
uint8_t cmixlev; int cmixlev;
uint8_t surmixlev; int surmixlev;
uint8_t dsurmod; int dsurmod;
uint8_t blksw[AC3_MAX_CHANNELS]; int blksw[AC3_MAX_CHANNELS];
uint8_t dithflag[AC3_MAX_CHANNELS]; int dithflag[AC3_MAX_CHANNELS];
uint8_t cplinu; int cplinu;
uint8_t chincpl[AC3_MAX_CHANNELS]; int chincpl[AC3_MAX_CHANNELS];
uint8_t phsflginu; int phsflginu;
uint8_t cplbegf; int cplbegf;
uint8_t cplendf; int cplendf;
uint8_t cplcoe; int cplcoe;
uint32_t cplbndstrc; uint32_t cplbndstrc;
uint8_t rematstr; int rematstr;
uint8_t rematflg[AC3_MAX_CHANNELS]; int rematflg[AC3_MAX_CHANNELS];
uint8_t cplexpstr; int cplexpstr;
uint8_t lfeexpstr; int lfeexpstr;
uint8_t chexpstr[5]; int chexpstr[5];
uint8_t csnroffst; int csnroffst;
uint8_t cplfsnroffst; int cplfsnroffst;
uint8_t cplfgaincod; int cplfgaincod;
uint8_t fsnroffst[5]; int fsnroffst[5];
uint8_t fgaincod[5]; int fgaincod[5];
uint8_t lfefsnroffst; int lfefsnroffst;
uint8_t lfefgaincod; int lfefgaincod;
uint8_t cpldeltbae; int cpldeltbae;
uint8_t deltbae[5]; int deltbae[5];
uint8_t cpldeltnseg; int cpldeltnseg;
uint8_t cpldeltoffst[8]; uint8_t cpldeltoffst[8];
uint8_t cpldeltlen[8]; uint8_t cpldeltlen[8];
uint8_t cpldeltba[8]; uint8_t cpldeltba[8];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment