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
19d824e4
Commit
19d824e4
authored
Apr 26, 2011
by
Alex Converse
Committed by
Alex Converse
Jun 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bitstream: Properly promote av_reverse values before shifting.
parent
103278f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
bitstream.c
libavcodec/bitstream.c
+4
-4
No files found.
libavcodec/bitstream.c
View file @
19d824e4
...
...
@@ -116,10 +116,10 @@ static int alloc_table(VLC *vlc, int size, int use_static)
}
static
av_always_inline
uint32_t
bitswap_32
(
uint32_t
x
)
{
return
av_reverse
[
x
&
0xFF
]
<<
24
|
av_reverse
[(
x
>>
8
)
&
0xFF
]
<<
16
|
av_reverse
[(
x
>>
16
)
&
0xFF
]
<<
8
|
av_reverse
[
x
>>
24
];
return
(
uint32_t
)
av_reverse
[
x
&
0xFF
]
<<
24
|
(
uint32_t
)
av_reverse
[(
x
>>
8
)
&
0xFF
]
<<
16
|
(
uint32_t
)
av_reverse
[(
x
>>
16
)
&
0xFF
]
<<
8
|
(
uint32_t
)
av_reverse
[
x
>>
24
];
}
typedef
struct
{
...
...
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