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
f243bf7a
Commit
f243bf7a
authored
May 07, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: dsputil: Remove unused argument from QPEL_OP macro
parent
6e9f8d6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dsputil_mmx.c
libavcodec/x86/dsputil_mmx.c
+4
-4
No files found.
libavcodec/x86/dsputil_mmx.c
View file @
f243bf7a
...
...
@@ -454,7 +454,7 @@ static void ff_put_pixels16_mmxext(uint8_t *block, const uint8_t *pixels,
ff_put_pixels8_mmxext
(
block
+
8
,
pixels
+
8
,
line_size
,
h
);
}
#define QPEL_OP(OPNAME, R
OUNDER, RND, MMX)
\
#define QPEL_OP(OPNAME, R
ND, MMX)
\
static void OPNAME ## qpel8_mc00_ ## MMX (uint8_t *dst, uint8_t *src, \
ptrdiff_t stride) \
{ \
...
...
@@ -835,9 +835,9 @@ static void OPNAME ## qpel16_mc22_ ## MMX(uint8_t *dst, uint8_t *src, \
stride, 16); \
}
QPEL_OP
(
put_
,
ff_pw_16
,
_
,
mmxext
)
QPEL_OP
(
avg_
,
ff_pw_16
,
_
,
mmxext
)
QPEL_OP
(
put_no_rnd_
,
ff_pw_15
,
_no_rnd_
,
mmxext
)
QPEL_OP
(
put_
,
_
,
mmxext
)
QPEL_OP
(
avg_
,
_
,
mmxext
)
QPEL_OP
(
put_no_rnd_
,
_no_rnd_
,
mmxext
)
#endif
/* HAVE_YASM */
...
...
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