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
5659c0bd
Commit
5659c0bd
authored
Feb 19, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix possibly expansion-unsafe macros
parent
a7e49594
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
include/vlc_common.h
include/vlc_common.h
+6
-6
No files found.
include/vlc_common.h
View file @
5659c0bd
...
...
@@ -730,14 +730,14 @@ static inline uint64_t GetQWLE( const void * _p )
#define GetQWBE( p ) U64_AT( p )
/* Helper writer functions */
#define SetWLE( p, v ) _SetWLE( (uint8_t*)
p
, v)
#define SetWLE( p, v ) _SetWLE( (uint8_t*)
(p)
, v)
static
inline
void
_SetWLE
(
uint8_t
*
p
,
uint16_t
i_dw
)
{
p
[
1
]
=
(
i_dw
>>
8
)
&
0xff
;
p
[
0
]
=
(
i_dw
)
&
0xff
;
}
#define SetDWLE( p, v ) _SetDWLE( (uint8_t*)
p
, v)
#define SetDWLE( p, v ) _SetDWLE( (uint8_t*)
(p)
, v)
static
inline
void
_SetDWLE
(
uint8_t
*
p
,
uint32_t
i_dw
)
{
p
[
3
]
=
(
i_dw
>>
24
)
&
0xff
;
...
...
@@ -745,20 +745,20 @@ static inline void _SetDWLE( uint8_t *p, uint32_t i_dw )
p
[
1
]
=
(
i_dw
>>
8
)
&
0xff
;
p
[
0
]
=
(
i_dw
)
&
0xff
;
}
#define SetQWLE( p, v ) _SetQWLE( (uint8_t*)
p
, v)
#define SetQWLE( p, v ) _SetQWLE( (uint8_t*)
(p)
, v)
static
inline
void
_SetQWLE
(
uint8_t
*
p
,
uint64_t
i_qw
)
{
SetDWLE
(
p
,
i_qw
&
0xffffffff
);
SetDWLE
(
p
+
4
,
(
i_qw
>>
32
)
&
0xffffffff
);
}
#define SetWBE( p, v ) _SetWBE( (uint8_t*)
p
, v)
#define SetWBE( p, v ) _SetWBE( (uint8_t*)
(p)
, v)
static
inline
void
_SetWBE
(
uint8_t
*
p
,
uint16_t
i_dw
)
{
p
[
0
]
=
(
i_dw
>>
8
)
&
0xff
;
p
[
1
]
=
(
i_dw
)
&
0xff
;
}
#define SetDWBE( p, v ) _SetDWBE( (uint8_t*)
p
, v)
#define SetDWBE( p, v ) _SetDWBE( (uint8_t*)
(p)
, v)
static
inline
void
_SetDWBE
(
uint8_t
*
p
,
uint32_t
i_dw
)
{
p
[
0
]
=
(
i_dw
>>
24
)
&
0xff
;
...
...
@@ -766,7 +766,7 @@ static inline void _SetDWBE( uint8_t *p, uint32_t i_dw )
p
[
2
]
=
(
i_dw
>>
8
)
&
0xff
;
p
[
3
]
=
(
i_dw
)
&
0xff
;
}
#define SetQWBE( p, v ) _SetQWBE( (uint8_t*)
p
, v)
#define SetQWBE( p, v ) _SetQWBE( (uint8_t*)
(p)
, v)
static
inline
void
_SetQWBE
(
uint8_t
*
p
,
uint64_t
i_qw
)
{
SetDWBE
(
p
+
4
,
i_qw
&
0xffffffff
);
...
...
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