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
b5d2bf96
Commit
b5d2bf96
authored
Apr 17, 2012
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cook: Make constants passed to AV_BE2NE32C() unsigned to avoid signed overflow.
parent
0f96f0d9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cook.c
libavcodec/cook.c
+2
-2
No files found.
libavcodec/cook.c
View file @
b5d2bf96
...
@@ -280,8 +280,8 @@ static av_cold void init_cplscales_table(COOKContext *q)
...
@@ -280,8 +280,8 @@ static av_cold void init_cplscales_table(COOKContext *q)
static
inline
int
decode_bytes
(
const
uint8_t
*
inbuffer
,
uint8_t
*
out
,
int
bytes
)
static
inline
int
decode_bytes
(
const
uint8_t
*
inbuffer
,
uint8_t
*
out
,
int
bytes
)
{
{
static
const
uint32_t
tab
[
4
]
=
{
static
const
uint32_t
tab
[
4
]
=
{
AV_BE2NE32C
(
0x37c511f2
),
AV_BE2NE32C
(
0xf237c511
),
AV_BE2NE32C
(
0x37c511f2
u
),
AV_BE2NE32C
(
0xf237c511u
),
AV_BE2NE32C
(
0x11f237c5
),
AV_BE2NE32C
(
0xc511f237
),
AV_BE2NE32C
(
0x11f237c5
u
),
AV_BE2NE32C
(
0xc511f237u
),
};
};
int
i
,
off
;
int
i
,
off
;
uint32_t
c
;
uint32_t
c
;
...
...
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