Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
4764fdc9
Commit
4764fdc9
authored
Apr 05, 2008
by
Michael Niedermayer
Browse files
simplify
Originally committed as revision 12755 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4e4a3e23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libavutil/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