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
7bb8b876
Commit
7bb8b876
authored
Feb 07, 2014
by
Lukasz Marek
Committed by
Paul B Mahol
Feb 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/adpcm_data: fix const misplacement
Signed-off-by:
Lukasz Marek
<
lukasz.m.luki@gmail.com
>
parent
0792b873
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
adpcm_data.c
libavcodec/adpcm_data.c
+1
-1
adpcm_data.h
libavcodec/adpcm_data.h
+1
-1
No files found.
libavcodec/adpcm_data.c
View file @
7bb8b876
...
...
@@ -47,7 +47,7 @@ static const int8_t adpcm_index_table5[32] = {
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
1
,
2
,
4
,
6
,
8
,
10
,
13
,
16
,
};
const
int8_t
const
*
ff_adpcm_index_tables
[
4
]
=
{
const
int8_t
*
const
ff_adpcm_index_tables
[
4
]
=
{
&
adpcm_index_table2
[
0
],
&
adpcm_index_table3
[
0
],
&
ff_adpcm_index_table
[
0
],
...
...
libavcodec/adpcm_data.h
View file @
7bb8b876
...
...
@@ -31,7 +31,7 @@
static
const
uint8_t
ff_adpcm_ima_block_sizes
[
4
]
=
{
4
,
12
,
4
,
20
};
static
const
uint8_t
ff_adpcm_ima_block_samples
[
4
]
=
{
16
,
32
,
8
,
32
};
extern
const
int8_t
const
*
ff_adpcm_index_tables
[
4
];
extern
const
int8_t
*
const
ff_adpcm_index_tables
[
4
];
extern
const
int8_t
ff_adpcm_index_table
[
16
];
extern
const
int16_t
ff_adpcm_step_table
[
89
];
extern
const
int16_t
ff_adpcm_oki_step_table
[
49
];
...
...
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