Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jean-Baptiste Kempf
VLC
Commits
653bca0a
Commit
653bca0a
authored
16 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
Have hton64 accept rvalues. Remove dep upon WORDS_BIGENDIAN
parent
024bed3c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_common.h
+23
-21
23 additions, 21 deletions
include/vlc_common.h
with
23 additions
and
21 deletions
include/vlc_common.h
+
23
−
21
View file @
653bca0a
...
...
@@ -89,21 +89,17 @@ typedef int64_t mtime_t;
*/
typedef
uint32_t
vlc_fourcc_t
;
#ifdef WORDS_BIGENDIAN
# define VLC_FOURCC( a, b, c, d ) \
( ((uint32_t)d) | ( ((uint32_t)c) << 8 ) \
| ( ((uint32_t)b) << 16 ) | ( ((uint32_t)a) << 24 ) )
# define VLC_TWOCC( a, b ) \
( (uint16_t)(b) | ( (uint16_t)(a) << 8 ) )
#else
# define VLC_FOURCC( a, b, c, d ) \
( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) \
| ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
# define VLC_TWOCC( a, b ) \
( (uint16_t)(a) | ( (uint16_t)(b) << 8 ) )
static
inline
uint32_t
VLC_FOURCC
(
uint8_t
a
,
uint8_t
b
,
uint8_t
c
,
uint8_t
d
)
{
union
{
uint8_t
b
[
4
];
uint32_t
dw
;
}
v
=
{
{
a
,
b
,
c
,
d
}
};
return
v
.
dw
;
}
#endif
static
inline
uint16_t
VLC_TWOCC
(
uint8_t
a
,
uint8_t
b
)
{
union
{
uint8_t
b
[
2
];
uint16_t
w
;
}
v
=
{
{
a
,
b
}
};
return
v
.
w
;
}
static
inline
void
__vlc_fourcc_to_char
(
vlc_fourcc_t
fcc
,
char
*
psz_fourcc
)
{
...
...
@@ -669,13 +665,19 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
#define ntoh16(i) ntohs(i)
#define ntoh32(i) ntohl(i)
#ifdef WORDS_BIGENDIAN
# define hton64(i) ( i )
# define ntoh64(i) ( i )
#else
# define hton64(i) U64_AT(&i)
# define ntoh64(i) U64_AT(&i)
#endif
static
inline
uint64_t
ntoh64
(
uint64_t
ll
)
{
union
{
uint64_t
qw
;
uint8_t
b
[
16
];
}
v
=
{
ll
};
return
((
uint64_t
)
v
.
b
[
0
]
<<
56
)
|
((
uint64_t
)
v
.
b
[
1
]
<<
48
)
|
((
uint64_t
)
v
.
b
[
2
]
<<
40
)
|
((
uint64_t
)
v
.
b
[
3
]
<<
32
)
|
((
uint64_t
)
v
.
b
[
4
]
<<
24
)
|
((
uint64_t
)
v
.
b
[
5
]
<<
16
)
|
((
uint64_t
)
v
.
b
[
6
]
<<
8
)
|
((
uint64_t
)
v
.
b
[
7
]
<<
0
);
}
#define hton64(i) ntoh64(i)
/* Format string sanity checks */
#ifdef __GNUC__
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment