Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
a87ecd5c
Commit
a87ecd5c
authored
Jan 07, 2001
by
Benoit Steiner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimisation de BinaryLog
parent
a5d3d165
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
21 deletions
+6
-21
src/video_output/video_output.c
src/video_output/video_output.c
+6
-21
No files found.
src/video_output/video_output.c
View file @
a87ecd5c
...
@@ -860,27 +860,12 @@ static int BinaryLog(u32 i)
...
@@ -860,27 +860,12 @@ static int BinaryLog(u32 i)
{
{
int
i_log
;
int
i_log
;
i_log
=
0
;
i_log
=
16
&
(
i
&
0xffff0000
);
if
(
i
&
0xffff0000
)
i_log
+=
8
&
(
i
&
0xff00ff00
);
{
i_log
+=
4
&
(
i
&
0xf0f0f0f0
);
i_log
=
16
;
i_log
+=
2
&
(
i
&
0xcccccccc
);
}
i_log
+=
1
&
(
i
&
0xaaaaaaaa
);
if
(
i
&
0xff00ff00
)
{
i_log
+=
8
;
}
if
(
i
&
0xf0f0f0f0
)
{
i_log
+=
4
;
}
if
(
i
&
0xcccccccc
)
{
i_log
+=
2
;
}
if
(
i
&
0xaaaaaaaa
)
{
i_log
++
;
}
if
(
i
!=
((
u32
)
1
<<
i_log
))
if
(
i
!=
((
u32
)
1
<<
i_log
))
{
{
intf_DbgMsg
(
"internal error: binary log overflow"
);
intf_DbgMsg
(
"internal error: binary log overflow"
);
...
...
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