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
5d9db9c4
Commit
5d9db9c4
authored
Mar 10, 2006
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
out of array read fix
Originally committed as revision 5141 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5430b070
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
svq1_cb.h
libavcodec/svq1_cb.h
+6
-4
No files found.
libavcodec/svq1_cb.h
View file @
5d9db9c4
...
...
@@ -764,9 +764,10 @@ static const int8_t svq1_inter_codebook_8x8[6144] = {
};
/* list of codebooks for inter-coded vectors */
static
const
int8_t
*
const
svq1_inter_codebooks
[
4
]
=
{
static
const
int8_t
*
const
svq1_inter_codebooks
[
6
]
=
{
svq1_inter_codebook_4x2
,
svq1_inter_codebook_4x4
,
svq1_inter_codebook_8x4
,
svq1_inter_codebook_8x8
svq1_inter_codebook_8x4
,
svq1_inter_codebook_8x8
,
NULL
,
NULL
,
};
static
const
int8_t
svq1_inter_codebook_sum
[
4
][
16
*
6
]
=
{
...
...
@@ -1538,9 +1539,10 @@ static const int8_t svq1_intra_codebook_8x8[6144] = {
};
/* list of codebooks for intra-coded vectors */
static
const
int8_t
*
const
svq1_intra_codebooks
[
4
]
=
{
static
const
int8_t
*
const
svq1_intra_codebooks
[
6
]
=
{
svq1_intra_codebook_4x2
,
svq1_intra_codebook_4x4
,
svq1_intra_codebook_8x4
,
svq1_intra_codebook_8x8
svq1_intra_codebook_8x4
,
svq1_intra_codebook_8x8
,
NULL
,
NULL
,
};
static
const
int8_t
svq1_intra_codebook_sum
[
4
][
16
*
6
]
=
{
...
...
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