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
63bac48f
Commit
63bac48f
authored
Apr 27, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: dsputil: Move rv40-specific functions where they belong
parent
92f8e06e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
26 deletions
+27
-26
dsputil_mmx.c
libavcodec/x86/dsputil_mmx.c
+0
-17
dsputil_mmx.h
libavcodec/x86/dsputil_mmx.h
+0
-5
rv40dsp_init.c
libavcodec/x86/rv40dsp_init.c
+27
-4
No files found.
libavcodec/x86/dsputil_mmx.c
View file @
63bac48f
...
...
@@ -860,23 +860,6 @@ QPEL_OP(put_no_rnd_, ff_pw_15, _no_rnd_, mmxext)
#if HAVE_INLINE_ASM
void
ff_put_rv40_qpel8_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_put_pixels8_xy2_mmx
(
dst
,
src
,
stride
,
8
);
}
void
ff_put_rv40_qpel16_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_put_pixels16_xy2_mmx
(
dst
,
src
,
stride
,
16
);
}
void
ff_avg_rv40_qpel8_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_avg_pixels8_xy2_mmx
(
dst
,
src
,
stride
,
8
);
}
void
ff_avg_rv40_qpel16_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_avg_pixels16_xy2_mmx
(
dst
,
src
,
stride
,
16
);
}
static
void
gmc_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
int
stride
,
int
h
,
int
ox
,
int
oy
,
int
dxx
,
int
dxy
,
int
dyx
,
int
dyy
,
...
...
libavcodec/x86/dsputil_mmx.h
View file @
63bac48f
...
...
@@ -186,11 +186,6 @@ void ff_put_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels,
void
ff_put_pixels16_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_rv40_qpel8_mc33_mmx
(
uint8_t
*
block
,
uint8_t
*
pixels
,
ptrdiff_t
stride
);
void
ff_put_rv40_qpel16_mc33_mmx
(
uint8_t
*
block
,
uint8_t
*
pixels
,
ptrdiff_t
stride
);
void
ff_avg_rv40_qpel8_mc33_mmx
(
uint8_t
*
block
,
uint8_t
*
pixels
,
ptrdiff_t
stride
);
void
ff_avg_rv40_qpel16_mc33_mmx
(
uint8_t
*
block
,
uint8_t
*
pixels
,
ptrdiff_t
stride
);
void
ff_deinterlace_line_mmx
(
uint8_t
*
dst
,
const
uint8_t
*
lum_m4
,
const
uint8_t
*
lum_m3
,
const
uint8_t
*
lum_m2
,
const
uint8_t
*
lum_m1
,
...
...
libavcodec/x86/rv40dsp_init.c
View file @
63bac48f
...
...
@@ -188,6 +188,29 @@ QPEL_FUNCS_SET (OP, 3, 2, OPT)
#endif
/* HAVE_YASM */
#if HAVE_MMX_INLINE
static
void
put_rv40_qpel8_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_put_pixels8_xy2_mmx
(
dst
,
src
,
stride
,
8
);
}
static
void
put_rv40_qpel16_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_put_pixels16_xy2_mmx
(
dst
,
src
,
stride
,
16
);
}
static
void
avg_rv40_qpel8_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_avg_pixels8_xy2_mmx
(
dst
,
src
,
stride
,
8
);
}
static
void
avg_rv40_qpel16_mc33_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
ptrdiff_t
stride
)
{
ff_avg_pixels16_xy2_mmx
(
dst
,
src
,
stride
,
16
);
}
#endif
/* HAVE_MMX_INLINE */
av_cold
void
ff_rv40dsp_init_x86
(
RV34DSPContext
*
c
)
{
#if HAVE_YASM
...
...
@@ -197,10 +220,10 @@ av_cold void ff_rv40dsp_init_x86(RV34DSPContext *c)
c
->
put_chroma_pixels_tab
[
0
]
=
ff_put_rv40_chroma_mc8_mmx
;
c
->
put_chroma_pixels_tab
[
1
]
=
ff_put_rv40_chroma_mc4_mmx
;
#if HAVE_MMX_INLINE
c
->
put_pixels_tab
[
0
][
15
]
=
ff_
put_rv40_qpel16_mc33_mmx
;
c
->
put_pixels_tab
[
1
][
15
]
=
ff_
put_rv40_qpel8_mc33_mmx
;
c
->
avg_pixels_tab
[
0
][
15
]
=
ff_
avg_rv40_qpel16_mc33_mmx
;
c
->
avg_pixels_tab
[
1
][
15
]
=
ff_
avg_rv40_qpel8_mc33_mmx
;
c
->
put_pixels_tab
[
0
][
15
]
=
put_rv40_qpel16_mc33_mmx
;
c
->
put_pixels_tab
[
1
][
15
]
=
put_rv40_qpel8_mc33_mmx
;
c
->
avg_pixels_tab
[
0
][
15
]
=
avg_rv40_qpel16_mc33_mmx
;
c
->
avg_pixels_tab
[
1
][
15
]
=
avg_rv40_qpel8_mc33_mmx
;
#endif
/* HAVE_MMX_INLINE */
#if ARCH_X86_32
QPEL_MC_SET
(
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