Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
669e5093
Commit
669e5093
authored
21 years ago
by
Alex Beregszaszi
Browse files
Options
Downloads
Patches
Plain Diff
warning fixes
Originally committed as revision 2082 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
008f0851
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/alpha/asm.h
+2
-2
2 additions, 2 deletions
libavcodec/alpha/asm.h
libavcodec/bswap.h
+5
-5
5 additions, 5 deletions
libavcodec/bswap.h
with
7 additions
and
7 deletions
libavcodec/alpha/asm.h
+
2
−
2
View file @
669e5093
...
...
@@ -42,14 +42,14 @@
#define AMASK_CIX (1 << 2)
#define AMASK_MVI (1 << 8)
inline
static
uint64_t
BYTE_VEC
(
uint64_t
x
)
static
inline
uint64_t
BYTE_VEC
(
uint64_t
x
)
{
x
|=
x
<<
8
;
x
|=
x
<<
16
;
x
|=
x
<<
32
;
return
x
;
}
inline
static
uint64_t
WORD_VEC
(
uint64_t
x
)
static
inline
uint64_t
WORD_VEC
(
uint64_t
x
)
{
x
|=
x
<<
16
;
x
|=
x
<<
32
;
...
...
This diff is collapsed.
Click to expand it.
libavcodec/bswap.h
+
5
−
5
View file @
669e5093
...
...
@@ -11,7 +11,7 @@
#else
#ifdef ARCH_X86
inline
static
unsigned
short
ByteSwap16
(
unsigned
short
x
)
static
inline
unsigned
short
ByteSwap16
(
unsigned
short
x
)
{
__asm
(
"xchgb %b0,%h0"
:
"=q"
(
x
)
:
...
...
@@ -20,7 +20,7 @@ inline static unsigned short ByteSwap16(unsigned short x)
}
#define bswap_16(x) ByteSwap16(x)
inline
static
unsigned
int
ByteSwap32
(
unsigned
int
x
)
static
inline
unsigned
int
ByteSwap32
(
unsigned
int
x
)
{
#if __CPU__ > 386
__asm
(
"bswap %0"
:
...
...
@@ -36,7 +36,7 @@ inline static unsigned int ByteSwap32(unsigned int x)
}
#define bswap_32(x) ByteSwap32(x)
inline
static
unsigned
long
long
int
ByteSwap64
(
unsigned
long
long
int
x
)
static
inline
unsigned
long
long
int
ByteSwap64
(
unsigned
long
long
int
x
)
{
register
union
{
__extension__
uint64_t
__ll
;
uint32_t
__l
[
2
];
}
__x
;
...
...
@@ -66,7 +66,7 @@ static inline uint32_t ByteSwap32(uint32_t x) {
#define bswap_16(x) ByteSwap16(x)
#define bswap_32(x) ByteSwap32(x)
inline
static
uint64_t
ByteSwap64
(
uint64_t
x
)
static
inline
uint64_t
ByteSwap64
(
uint64_t
x
)
{
union
{
uint64_t
ll
;
...
...
@@ -90,7 +90,7 @@ inline static uint64_t ByteSwap64(uint64_t x)
((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
(((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
inline
static
uint64_t
ByteSwap64
(
uint64_t
x
)
static
inline
uint64_t
ByteSwap64
(
uint64_t
x
)
{
union
{
uint64_t
ll
;
...
...
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