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
4764fdc9
Commit
4764fdc9
authored
Apr 05, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify
Originally committed as revision 12755 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4e4a3e23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
integer.c
libavutil/integer.c
+3
-3
No files found.
libavutil/integer.c
View file @
4764fdc9
...
...
@@ -96,10 +96,10 @@ AVInteger av_shr_i(AVInteger a, int s){
int
i
;
for
(
i
=
0
;
i
<
AV_INTEGER_SIZE
;
i
++
){
int
index
=
i
+
(
s
>>
4
);
unsigned
int
index
=
i
+
(
s
>>
4
);
unsigned
int
v
=
0
;
if
(
index
+
1
<
AV_INTEGER_SIZE
&&
index
+
1
>=
0
)
v
=
a
.
v
[
index
+
1
]
<<
16
;
if
(
index
<
AV_INTEGER_SIZE
&&
index
>=
0
)
v
+=
a
.
v
[
index
];
if
(
index
+
1
<
AV_INTEGER_SIZE
)
v
=
a
.
v
[
index
+
1
]
<<
16
;
if
(
index
<
AV_INTEGER_SIZE
)
v
+=
a
.
v
[
index
];
out
.
v
[
i
]
=
v
>>
(
s
&
15
);
}
return
out
;
...
...
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