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
33f83a21
Commit
33f83a21
authored
Jun 20, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/x86/rv40dsp_init: fix () in macros
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
40cbad9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
rv40dsp_init.c
libavcodec/x86/rv40dsp_init.c
+6
-6
No files found.
libavcodec/x86/rv40dsp_init.c
View file @
33f83a21
...
...
@@ -134,8 +134,8 @@ QPEL_FUNCS_DECL(OP, 3, 2, OPT)
/** @} */
#define LOOPSIZE 8
#define HCOFF(x) (32 * (
x
- 1))
#define VCOFF(x) (32 * (
x
- 1))
#define HCOFF(x) (32 * (
(x)
- 1))
#define VCOFF(x) (32 * (
(x)
- 1))
QPEL_MC_DECL
(
put_
,
_ssse3
)
QPEL_MC_DECL
(
avg_
,
_ssse3
)
...
...
@@ -143,8 +143,8 @@ QPEL_MC_DECL(avg_, _ssse3)
#undef HCOFF
#undef VCOFF
#define LOOPSIZE 8
#define HCOFF(x) (64 * (
x
- 1))
#define VCOFF(x) (64 * (
x
- 1))
#define HCOFF(x) (64 * (
(x)
- 1))
#define VCOFF(x) (64 * (
(x)
- 1))
QPEL_MC_DECL
(
put_
,
_sse2
)
QPEL_MC_DECL
(
avg_
,
_sse2
)
...
...
@@ -153,8 +153,8 @@ QPEL_MC_DECL(avg_, _sse2)
#undef HCOFF
#undef VCOFF
#define LOOPSIZE 4
#define HCOFF(x) (64 * (
x
- 1))
#define VCOFF(x) (64 * (
x
- 1))
#define HCOFF(x) (64 * (
(x)
- 1))
#define VCOFF(x) (64 * (
(x)
- 1))
QPEL_MC_DECL
(
put_
,
_mmx
)
...
...
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