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
2720569a
Commit
2720569a
authored
Feb 11, 2003
by
Zdenek Kabelac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* prototypes at one place
Originally committed as revision 1579 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0c1a9eda
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
dsputil.h
libavcodec/dsputil.h
+3
-0
dsputil_mmx.c
libavcodec/i386/dsputil_mmx.c
+0
-2
motion_est_mmx.c
libavcodec/i386/motion_est_mmx.c
+0
-3
No files found.
libavcodec/dsputil.h
View file @
2720569a
...
...
@@ -197,6 +197,9 @@ static inline void emms(void)
void
dsputil_init_mmx
(
DSPContext
*
c
,
unsigned
mask
);
void
dsputil_set_bit_exact_mmx
(
DSPContext
*
c
,
unsigned
mask
);
void
dsputil_init_pix_mmx
(
DSPContext
*
c
,
unsigned
mask
);
void
dsputil_set_bit_exact_pix_mmx
(
DSPContext
*
c
,
unsigned
mask
);
#elif defined(ARCH_ARMV4L)
/* This is to use 4 bytes read to the IDCT pointers for some 'zero'
...
...
libavcodec/i386/dsputil_mmx.c
View file @
2720569a
...
...
@@ -22,8 +22,6 @@
#include "../dsputil.h"
int
mm_flags
;
/* multimedia extension flags */
/* FIXME use them in static form */
void
dsputil_init_pix_mmx
(
DSPContext
*
c
,
unsigned
mask
);
/* pixel operations */
static
const
uint64_t
mm_bone
__attribute__
((
aligned
(
8
)))
=
0x0101010101010101ULL
;
...
...
libavcodec/i386/motion_est_mmx.c
View file @
2720569a
...
...
@@ -20,9 +20,6 @@
*/
#include "../dsputil.h"
void
dsputil_init_pix_mmx
(
DSPContext
*
c
,
unsigned
mask
);
void
dsputil_set_bit_exact_pix_mmx
(
DSPContext
*
c
,
unsigned
mask
);
static
const
__attribute__
((
aligned
(
8
)))
uint64_t
round_tab
[
3
]
=
{
0x0000000000000000
,
0x0001000100010001
,
...
...
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