Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
95c1df92
Commit
95c1df92
authored
9 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
x86: hpeldsp: Drop unused function parameters
parent
c3e83ad3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/x86/hpeldsp_init.c
+8
-8
8 additions, 8 deletions
libavcodec/x86/hpeldsp_init.c
with
8 additions
and
8 deletions
libavcodec/x86/hpeldsp_init.c
+
8
−
8
View file @
95c1df92
...
@@ -158,7 +158,7 @@ HPELDSP_AVG_PIXELS16(_mmxext)
...
@@ -158,7 +158,7 @@ HPELDSP_AVG_PIXELS16(_mmxext)
c->PFX ## _pixels_tab IDX [3] = PFX ## _pixels ## SIZE ## _xy2_ ## CPU; \
c->PFX ## _pixels_tab IDX [3] = PFX ## _pixels ## SIZE ## _xy2_ ## CPU; \
} while (0)
} while (0)
static
void
hpeldsp_init_mmx
(
HpelDSPContext
*
c
,
int
flags
,
int
cpu_
flags
)
static
void
hpeldsp_init_mmx
(
HpelDSPContext
*
c
,
int
flags
)
{
{
#if HAVE_MMX_INLINE
#if HAVE_MMX_INLINE
SET_HPEL_FUNCS
(
put
,
[
0
],
16
,
mmx
);
SET_HPEL_FUNCS
(
put
,
[
0
],
16
,
mmx
);
...
@@ -171,7 +171,7 @@ static void hpeldsp_init_mmx(HpelDSPContext *c, int flags, int cpu_flags)
...
@@ -171,7 +171,7 @@ static void hpeldsp_init_mmx(HpelDSPContext *c, int flags, int cpu_flags)
#endif
/* HAVE_MMX_INLINE */
#endif
/* HAVE_MMX_INLINE */
}
}
static
void
hpeldsp_init_mmxext
(
HpelDSPContext
*
c
,
int
flags
,
int
cpu_
flags
)
static
void
hpeldsp_init_mmxext
(
HpelDSPContext
*
c
,
int
flags
)
{
{
#if HAVE_MMXEXT_EXTERNAL
#if HAVE_MMXEXT_EXTERNAL
c
->
put_pixels_tab
[
0
][
1
]
=
ff_put_pixels16_x2_mmxext
;
c
->
put_pixels_tab
[
0
][
1
]
=
ff_put_pixels16_x2_mmxext
;
...
@@ -200,7 +200,7 @@ static void hpeldsp_init_mmxext(HpelDSPContext *c, int flags, int cpu_flags)
...
@@ -200,7 +200,7 @@ static void hpeldsp_init_mmxext(HpelDSPContext *c, int flags, int cpu_flags)
#endif
/* HAVE_MMXEXT_EXTERNAL */
#endif
/* HAVE_MMXEXT_EXTERNAL */
}
}
static
void
hpeldsp_init_3dnow
(
HpelDSPContext
*
c
,
int
flags
,
int
cpu_
flags
)
static
void
hpeldsp_init_3dnow
(
HpelDSPContext
*
c
,
int
flags
)
{
{
#if HAVE_AMD3DNOW_EXTERNAL
#if HAVE_AMD3DNOW_EXTERNAL
c
->
put_pixels_tab
[
0
][
1
]
=
ff_put_pixels16_x2_3dnow
;
c
->
put_pixels_tab
[
0
][
1
]
=
ff_put_pixels16_x2_3dnow
;
...
@@ -229,7 +229,7 @@ static void hpeldsp_init_3dnow(HpelDSPContext *c, int flags, int cpu_flags)
...
@@ -229,7 +229,7 @@ static void hpeldsp_init_3dnow(HpelDSPContext *c, int flags, int cpu_flags)
#endif
/* HAVE_AMD3DNOW_EXTERNAL */
#endif
/* HAVE_AMD3DNOW_EXTERNAL */
}
}
static
void
hpeldsp_init_sse2_fast
(
HpelDSPContext
*
c
,
int
flags
,
int
cpu_
flags
)
static
void
hpeldsp_init_sse2_fast
(
HpelDSPContext
*
c
,
int
flags
)
{
{
#if HAVE_SSE2_EXTERNAL
#if HAVE_SSE2_EXTERNAL
c
->
put_pixels_tab
[
0
][
0
]
=
ff_put_pixels16_sse2
;
c
->
put_pixels_tab
[
0
][
0
]
=
ff_put_pixels16_sse2
;
...
@@ -243,16 +243,16 @@ av_cold void ff_hpeldsp_init_x86(HpelDSPContext *c, int flags)
...
@@ -243,16 +243,16 @@ av_cold void ff_hpeldsp_init_x86(HpelDSPContext *c, int flags)
int
cpu_flags
=
av_get_cpu_flags
();
int
cpu_flags
=
av_get_cpu_flags
();
if
(
INLINE_MMX
(
cpu_flags
))
if
(
INLINE_MMX
(
cpu_flags
))
hpeldsp_init_mmx
(
c
,
flags
,
cpu_
flags
);
hpeldsp_init_mmx
(
c
,
flags
);
if
(
EXTERNAL_AMD3DNOW
(
cpu_flags
))
if
(
EXTERNAL_AMD3DNOW
(
cpu_flags
))
hpeldsp_init_3dnow
(
c
,
flags
,
cpu_
flags
);
hpeldsp_init_3dnow
(
c
,
flags
);
if
(
EXTERNAL_MMXEXT
(
cpu_flags
))
if
(
EXTERNAL_MMXEXT
(
cpu_flags
))
hpeldsp_init_mmxext
(
c
,
flags
,
cpu_
flags
);
hpeldsp_init_mmxext
(
c
,
flags
);
if
(
EXTERNAL_SSE2_FAST
(
cpu_flags
))
if
(
EXTERNAL_SSE2_FAST
(
cpu_flags
))
hpeldsp_init_sse2_fast
(
c
,
flags
,
cpu_
flags
);
hpeldsp_init_sse2_fast
(
c
,
flags
);
if
(
CONFIG_VP3_DECODER
)
if
(
CONFIG_VP3_DECODER
)
ff_hpeldsp_vp3_init_x86
(
c
,
cpu_flags
,
flags
);
ff_hpeldsp_vp3_init_x86
(
c
,
cpu_flags
,
flags
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment