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
89f16ded
Commit
89f16ded
authored
Mar 10, 2013
by
Ronald S. Bultje
Committed by
Michael Niedermayer
Mar 13, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move ppc half-pel assembly from dsputil to hpeldsp.
parent
3ced55d5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
467 additions
and
421 deletions
+467
-421
hpeldsp.c
libavcodec/hpeldsp.c
+2
-0
Makefile
libavcodec/ppc/Makefile
+1
-0
dsputil_altivec.c
libavcodec/ppc/dsputil_altivec.c
+0
-421
hpeldsp_altivec.c
libavcodec/ppc/hpeldsp_altivec.c
+464
-0
No files found.
libavcodec/hpeldsp.c
View file @
89f16ded
...
...
@@ -58,7 +58,9 @@ av_cold void ff_hpeldsp_init(HpelDSPContext* c, int flags)
if (ARCH_ARM) ff_hpeldsp_init_arm (c, flags);
if (HAVE_VIS) ff_hpeldsp_init_vis (c, flags);
if (ARCH_ALPHA) ff_hpeldsp_init_alpha (c, flags);
#endif
if
(
ARCH_PPC
)
ff_hpeldsp_init_ppc
(
c
,
flags
);
#if 0
if (ARCH_SH4) ff_hpeldsp_init_sh4 (c, flags);
if (ARCH_BFIN) ff_hpeldsp_init_bfin (c, flags);
#endif
...
...
libavcodec/ppc/Makefile
View file @
89f16ded
...
...
@@ -3,6 +3,7 @@ OBJS += ppc/dsputil_ppc.o \
OBJS-$(CONFIG_H264CHROMA)
+=
ppc/h264chroma_init.o
OBJS-$(CONFIG_H264QPEL)
+=
ppc/h264_qpel.o
OBJS-$(CONFIG_HPELDSP)
+=
ppc/hpeldsp_altivec.o
OBJS-$(CONFIG_VORBIS_DECODER)
+=
ppc/vorbisdsp_altivec.o
OBJS-$(CONFIG_VP3DSP)
+=
ppc/vp3dsp_altivec.o
...
...
libavcodec/ppc/dsputil_altivec.c
View file @
89f16ded
This diff is collapsed.
Click to expand it.
libavcodec/ppc/hpeldsp_altivec.c
0 → 100644
View file @
89f16ded
This diff is collapsed.
Click to expand it.
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