Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
2bd21655
Commit
2bd21655
authored
Apr 23, 2006
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/video_output/video_output.c: Fixed RGB mask when the 32nd bit is on.
parent
d2bee0b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
src/video_output/video_output.c
src/video_output/video_output.c
+8
-5
No files found.
src/video_output/video_output.c
View file @
2bd21655
...
@@ -1207,7 +1207,7 @@ static int BinaryLog( uint32_t i )
...
@@ -1207,7 +1207,7 @@ static int BinaryLog( uint32_t i )
*****************************************************************************/
*****************************************************************************/
static
void
MaskToShift
(
int
*
pi_left
,
int
*
pi_right
,
uint32_t
i_mask
)
static
void
MaskToShift
(
int
*
pi_left
,
int
*
pi_right
,
uint32_t
i_mask
)
{
{
uint
32
_t
i_low
,
i_high
;
/* lower hand higher bits of the mask */
uint
64
_t
i_low
,
i_high
;
/* lower hand higher bits of the mask */
if
(
!
i_mask
)
if
(
!
i_mask
)
{
{
...
@@ -1216,12 +1216,15 @@ static void MaskToShift( int *pi_left, int *pi_right, uint32_t i_mask )
...
@@ -1216,12 +1216,15 @@ static void MaskToShift( int *pi_left, int *pi_right, uint32_t i_mask )
}
}
/* Get bits */
/* Get bits */
i_low
=
i_mask
&
(
-
(
int32_t
)
i_mask
);
/* lower bit of the mask */
i_low
=
i_high
=
i_mask
;
i_high
=
i_mask
+
i_low
;
/* higher bit of the mask */
/* Transform bits into an index */
i_low
&=
-
(
int64_t
)
i_low
;
/* lower bit of the mask */
i_high
+=
i_low
;
/* higher bit of the mask */
/* Transform bits into an index. Also deal with i_high overflow, which
* is faster than changing the BinaryLog code to handle 64 bit integers. */
i_low
=
BinaryLog
(
i_low
);
i_low
=
BinaryLog
(
i_low
);
i_high
=
BinaryLog
(
i_high
)
;
i_high
=
i_high
?
BinaryLog
(
i_high
)
:
32
;
/* Update pointers and return */
/* Update pointers and return */
*
pi_left
=
i_low
;
*
pi_left
=
i_low
;
...
...
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