Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
986f143a
Commit
986f143a
authored
Jun 24, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alac: change VLAs to fixed size
Originally committed as revision 23751 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bc2b3682
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
alac.c
libavcodec/alac.c
+5
-5
No files found.
libavcodec/alac.c
View file @
986f143a
...
@@ -547,11 +547,11 @@ static int alac_decode_frame(AVCodecContext *avctx,
...
@@ -547,11 +547,11 @@ static int alac_decode_frame(AVCodecContext *avctx,
if
(
!
isnotcompressed
)
{
if
(
!
isnotcompressed
)
{
/* so it is compressed */
/* so it is compressed */
int16_t
predictor_coef_table
[
channels
][
32
];
int16_t
predictor_coef_table
[
MAX_CHANNELS
][
32
];
int
predictor_coef_num
[
channels
];
int
predictor_coef_num
[
MAX_CHANNELS
];
int
prediction_type
[
channels
];
int
prediction_type
[
MAX_CHANNELS
];
int
prediction_quantitization
[
channels
];
int
prediction_quantitization
[
MAX_CHANNELS
];
int
ricemodifier
[
channels
];
int
ricemodifier
[
MAX_CHANNELS
];
int
i
,
chan
;
int
i
,
chan
;
interlacing_shift
=
get_bits
(
&
alac
->
gb
,
8
);
interlacing_shift
=
get_bits
(
&
alac
->
gb
,
8
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment