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
bae83f2c
Commit
bae83f2c
authored
12 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
alac: change some data types to plain int
parent
2aebac69
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/alac.c
+5
-5
5 additions, 5 deletions
libavcodec/alac.c
with
5 additions
and
5 deletions
libavcodec/alac.c
+
5
−
5
View file @
bae83f2c
...
@@ -263,8 +263,8 @@ static void lpc_prediction(int32_t *error_buffer, int32_t *buffer_out,
...
@@ -263,8 +263,8 @@ static void lpc_prediction(int32_t *error_buffer, int32_t *buffer_out,
}
}
static
void
decorrelate_stereo
(
int32_t
*
buffer
[
2
],
static
void
decorrelate_stereo
(
int32_t
*
buffer
[
2
],
int
nb_samples
,
u
int
8_t
decorr_shift
,
int
nb_samples
,
int
decorr_shift
,
u
int
8_t
decorr_left_weight
)
int
decorr_left_weight
)
{
{
int
i
;
int
i
;
...
@@ -298,10 +298,10 @@ static int decode_element(AVCodecContext *avctx, void *data, int ch_index,
...
@@ -298,10 +298,10 @@ static int decode_element(AVCodecContext *avctx, void *data, int ch_index,
{
{
ALACContext
*
alac
=
avctx
->
priv_data
;
ALACContext
*
alac
=
avctx
->
priv_data
;
int
has_size
;
int
has_size
;
unsigned
int
bps
;
int
bps
;
int
is_compressed
;
int
is_compressed
;
u
int
8_t
decorr_shift
;
int
decorr_shift
;
u
int
8_t
decorr_left_weight
;
int
decorr_left_weight
;
uint32_t
output_samples
;
uint32_t
output_samples
;
int
i
,
ch
,
ret
;
int
i
,
ch
,
ret
;
...
...
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