Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
5e660449
Commit
5e660449
authored
Dec 14, 2008
by
Aurelien Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid POSIX reserved _t suffix
Originally committed as revision 16117 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d08ea32c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
dsputil_mmx.c
libavcodec/i386/dsputil_mmx.c
+5
-5
dsputil_mmx.h
libavcodec/i386/dsputil_mmx.h
+6
-6
No files found.
libavcodec/i386/dsputil_mmx.c
View file @
5e660449
...
...
@@ -47,13 +47,13 @@ DECLARE_ALIGNED_16(const uint64_t, ff_pdw_80000000[2]) =
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_3
)
=
0x0003000300030003ULL
;
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_4
)
=
0x0004000400040004ULL
;
DECLARE_ALIGNED_16
(
const
xmm_
t
,
ff_pw_5
)
=
{
0x0005000500050005ULL
,
0x0005000500050005ULL
};
DECLARE_ALIGNED_16
(
const
xmm_
t
,
ff_pw_8
)
=
{
0x0008000800080008ULL
,
0x0008000800080008ULL
};
DECLARE_ALIGNED_16
(
const
xmm_
reg
,
ff_pw_5
)
=
{
0x0005000500050005ULL
,
0x0005000500050005ULL
};
DECLARE_ALIGNED_16
(
const
xmm_
reg
,
ff_pw_8
)
=
{
0x0008000800080008ULL
,
0x0008000800080008ULL
};
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_15
)
=
0x000F000F000F000FULL
;
DECLARE_ALIGNED_16
(
const
xmm_
t
,
ff_pw_16
)
=
{
0x0010001000100010ULL
,
0x0010001000100010ULL
};
DECLARE_ALIGNED_16
(
const
xmm_
reg
,
ff_pw_16
)
=
{
0x0010001000100010ULL
,
0x0010001000100010ULL
};
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_20
)
=
0x0014001400140014ULL
;
DECLARE_ALIGNED_16
(
const
xmm_
t
,
ff_pw_28
)
=
{
0x001C001C001C001CULL
,
0x001C001C001C001CULL
};
DECLARE_ALIGNED_16
(
const
xmm_
t
,
ff_pw_32
)
=
{
0x0020002000200020ULL
,
0x0020002000200020ULL
};
DECLARE_ALIGNED_16
(
const
xmm_
reg
,
ff_pw_28
)
=
{
0x001C001C001C001CULL
,
0x001C001C001C001CULL
};
DECLARE_ALIGNED_16
(
const
xmm_
reg
,
ff_pw_32
)
=
{
0x0020002000200020ULL
,
0x0020002000200020ULL
};
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_42
)
=
0x002A002A002A002AULL
;
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_64
)
=
0x0040004000400040ULL
;
DECLARE_ALIGNED_8
(
const
uint64_t
,
ff_pw_96
)
=
0x0060006000600060ULL
;
...
...
libavcodec/i386/dsputil_mmx.h
View file @
5e660449
...
...
@@ -25,7 +25,7 @@
#include <stdint.h>
#include "libavcodec/dsputil.h"
typedef
struct
{
uint64_t
a
,
b
;
}
xmm_
t
;
typedef
struct
{
uint64_t
a
,
b
;
}
xmm_
reg
;
extern
const
uint64_t
ff_bone
;
extern
const
uint64_t
ff_wtwo
;
...
...
@@ -34,13 +34,13 @@ extern const uint64_t ff_pdw_80000000[2];
extern
const
uint64_t
ff_pw_3
;
extern
const
uint64_t
ff_pw_4
;
extern
const
xmm_
t
ff_pw_5
;
extern
const
xmm_
t
ff_pw_8
;
extern
const
xmm_
reg
ff_pw_5
;
extern
const
xmm_
reg
ff_pw_8
;
extern
const
uint64_t
ff_pw_15
;
extern
const
xmm_
t
ff_pw_16
;
extern
const
xmm_
reg
ff_pw_16
;
extern
const
uint64_t
ff_pw_20
;
extern
const
xmm_
t
ff_pw_28
;
extern
const
xmm_
t
ff_pw_32
;
extern
const
xmm_
reg
ff_pw_28
;
extern
const
xmm_
reg
ff_pw_32
;
extern
const
uint64_t
ff_pw_42
;
extern
const
uint64_t
ff_pw_64
;
extern
const
uint64_t
ff_pw_96
;
...
...
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