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
a84ac7a8
Commit
a84ac7a8
authored
Sep 02, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: h264dsp: drop some unnecessary ifdefs around prototype declarations
parent
344fbc47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
h264dsp_init.c
libavcodec/x86/h264dsp_init.c
+0
-6
No files found.
libavcodec/x86/h264dsp_init.c
View file @
a84ac7a8
...
@@ -39,11 +39,9 @@ IDCT_ADD_FUNC(8_dc, 10, sse2)
...
@@ -39,11 +39,9 @@ IDCT_ADD_FUNC(8_dc, 10, sse2)
IDCT_ADD_FUNC
(
8
,
8
,
mmx
)
IDCT_ADD_FUNC
(
8
,
8
,
mmx
)
IDCT_ADD_FUNC
(
8
,
8
,
sse2
)
IDCT_ADD_FUNC
(
8
,
8
,
sse2
)
IDCT_ADD_FUNC
(
8
,
10
,
sse2
)
IDCT_ADD_FUNC
(
8
,
10
,
sse2
)
#if HAVE_AVX_EXTERNAL
IDCT_ADD_FUNC
(,
10
,
avx
)
IDCT_ADD_FUNC
(,
10
,
avx
)
IDCT_ADD_FUNC
(
8
_dc
,
10
,
avx
)
IDCT_ADD_FUNC
(
8
_dc
,
10
,
avx
)
IDCT_ADD_FUNC
(
8
,
10
,
avx
)
IDCT_ADD_FUNC
(
8
,
10
,
avx
)
#endif
#define IDCT_ADD_REP_FUNC(NUM, REP, DEPTH, OPT) \
#define IDCT_ADD_REP_FUNC(NUM, REP, DEPTH, OPT) \
...
@@ -64,10 +62,8 @@ IDCT_ADD_REP_FUNC(, 16intra, 8, mmx)
...
@@ -64,10 +62,8 @@ IDCT_ADD_REP_FUNC(, 16intra, 8, mmx)
IDCT_ADD_REP_FUNC
(,
16
intra
,
8
,
mmx2
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
8
,
mmx2
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
8
,
sse2
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
8
,
sse2
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
10
,
sse2
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
10
,
sse2
)
#if HAVE_AVX_EXTERNAL
IDCT_ADD_REP_FUNC
(,
16
,
10
,
avx
)
IDCT_ADD_REP_FUNC
(,
16
,
10
,
avx
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
10
,
avx
)
IDCT_ADD_REP_FUNC
(,
16
intra
,
10
,
avx
)
#endif
#define IDCT_ADD_REP_FUNC2(NUM, REP, DEPTH, OPT) \
#define IDCT_ADD_REP_FUNC2(NUM, REP, DEPTH, OPT) \
...
@@ -79,9 +75,7 @@ IDCT_ADD_REP_FUNC2(, 8, 8, mmx)
...
@@ -79,9 +75,7 @@ IDCT_ADD_REP_FUNC2(, 8, 8, mmx)
IDCT_ADD_REP_FUNC2
(,
8
,
8
,
mmx2
)
IDCT_ADD_REP_FUNC2
(,
8
,
8
,
mmx2
)
IDCT_ADD_REP_FUNC2
(,
8
,
8
,
sse2
)
IDCT_ADD_REP_FUNC2
(,
8
,
8
,
sse2
)
IDCT_ADD_REP_FUNC2
(,
8
,
10
,
sse2
)
IDCT_ADD_REP_FUNC2
(,
8
,
10
,
sse2
)
#if HAVE_AVX_EXTERNAL
IDCT_ADD_REP_FUNC2
(,
8
,
10
,
avx
)
IDCT_ADD_REP_FUNC2
(,
8
,
10
,
avx
)
#endif
void
ff_h264_luma_dc_dequant_idct_mmx
(
DCTELEM
*
output
,
DCTELEM
*
input
,
int
qmul
);
void
ff_h264_luma_dc_dequant_idct_mmx
(
DCTELEM
*
output
,
DCTELEM
*
input
,
int
qmul
);
void
ff_h264_luma_dc_dequant_idct_sse2
(
DCTELEM
*
output
,
DCTELEM
*
input
,
int
qmul
);
void
ff_h264_luma_dc_dequant_idct_sse2
(
DCTELEM
*
output
,
DCTELEM
*
input
,
int
qmul
);
...
...
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