Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
e9a38248
Commit
e9a38248
authored
17 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
only use sized data types when necessary
Originally committed as revision 9783 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8f58a4c9
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/ac3dec.c
+28
-28
28 additions, 28 deletions
libavcodec/ac3dec.c
with
28 additions
and
28 deletions
libavcodec/ac3dec.c
+
28
−
28
View file @
e9a38248
...
@@ -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
{
u
int
8_t
acmod
;
int
acmod
;
u
int
8_t
cmixlev
;
int
cmixlev
;
u
int
8_t
surmixlev
;
int
surmixlev
;
u
int
8_t
dsurmod
;
int
dsurmod
;
u
int
8_t
blksw
[
AC3_MAX_CHANNELS
];
int
blksw
[
AC3_MAX_CHANNELS
];
u
int
8_t
dithflag
[
AC3_MAX_CHANNELS
];
int
dithflag
[
AC3_MAX_CHANNELS
];
u
int
8_t
cplinu
;
int
cplinu
;
u
int
8_t
chincpl
[
AC3_MAX_CHANNELS
];
int
chincpl
[
AC3_MAX_CHANNELS
];
u
int
8_t
phsflginu
;
int
phsflginu
;
u
int
8_t
cplbegf
;
int
cplbegf
;
u
int
8_t
cplendf
;
int
cplendf
;
u
int
8_t
cplcoe
;
int
cplcoe
;
uint32_t
cplbndstrc
;
uint32_t
cplbndstrc
;
u
int
8_t
rematstr
;
int
rematstr
;
u
int
8_t
rematflg
[
AC3_MAX_CHANNELS
];
int
rematflg
[
AC3_MAX_CHANNELS
];
u
int
8_t
cplexpstr
;
int
cplexpstr
;
u
int
8_t
lfeexpstr
;
int
lfeexpstr
;
u
int
8_t
chexpstr
[
5
];
int
chexpstr
[
5
];
u
int
8_t
csnroffst
;
int
csnroffst
;
u
int
8_t
cplfsnroffst
;
int
cplfsnroffst
;
u
int
8_t
cplfgaincod
;
int
cplfgaincod
;
u
int
8_t
fsnroffst
[
5
];
int
fsnroffst
[
5
];
u
int
8_t
fgaincod
[
5
];
int
fgaincod
[
5
];
u
int
8_t
lfefsnroffst
;
int
lfefsnroffst
;
u
int
8_t
lfefgaincod
;
int
lfefgaincod
;
u
int
8_t
cpldeltbae
;
int
cpldeltbae
;
u
int
8_t
deltbae
[
5
];
int
deltbae
[
5
];
u
int
8_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
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment