Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
ffa4d4ef
Commit
ffa4d4ef
authored
Jul 31, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc: fft: Build AltiVec optimizations in the standard way
parent
f0e95948
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
Makefile
libavcodec/ppc/Makefile
+2
-4
fft_altivec.S
libavcodec/ppc/fft_altivec.S
+5
-0
fft_init.c
libavcodec/ppc/fft_init.c
+0
-0
No files found.
libavcodec/ppc/Makefile
View file @
ffa4d4ef
...
@@ -2,7 +2,8 @@ OBJS += ppc/fmtconvert_altivec.o \
...
@@ -2,7 +2,8 @@ OBJS += ppc/fmtconvert_altivec.o \
OBJS-$(CONFIG_AUDIODSP)
+=
ppc/audiodsp.o
OBJS-$(CONFIG_AUDIODSP)
+=
ppc/audiodsp.o
OBJS-$(CONFIG_BLOCKDSP)
+=
ppc/blockdsp.o
OBJS-$(CONFIG_BLOCKDSP)
+=
ppc/blockdsp.o
OBJS-$(CONFIG_FFT)
+=
ppc/fft_altivec.o
OBJS-$(CONFIG_FFT)
+=
ppc/fft_init.o
\
ppc/fft_altivec.o
OBJS-$(CONFIG_H264CHROMA)
+=
ppc/h264chroma_init.o
OBJS-$(CONFIG_H264CHROMA)
+=
ppc/h264chroma_init.o
OBJS-$(CONFIG_H264DSP)
+=
ppc/h264dsp.o
OBJS-$(CONFIG_H264DSP)
+=
ppc/h264dsp.o
OBJS-$(CONFIG_H264QPEL)
+=
ppc/h264qpel.o
OBJS-$(CONFIG_H264QPEL)
+=
ppc/h264qpel.o
...
@@ -25,6 +26,3 @@ OBJS-$(CONFIG_VC1_DECODER) += ppc/vc1dsp_altivec.o
...
@@ -25,6 +26,3 @@ OBJS-$(CONFIG_VC1_DECODER) += ppc/vc1dsp_altivec.o
OBJS-$(CONFIG_VORBIS_DECODER)
+=
ppc/vorbisdsp_altivec.o
OBJS-$(CONFIG_VORBIS_DECODER)
+=
ppc/vorbisdsp_altivec.o
OBJS-$(CONFIG_VP7_DECODER)
+=
ppc/vp8dsp_altivec.o
OBJS-$(CONFIG_VP7_DECODER)
+=
ppc/vp8dsp_altivec.o
OBJS-$(CONFIG_VP8_DECODER)
+=
ppc/vp8dsp_altivec.o
OBJS-$(CONFIG_VP8_DECODER)
+=
ppc/vp8dsp_altivec.o
FFT-OBJS-$(HAVE_GNU_AS)
+=
ppc/fft_altivec_s.o
ALTIVEC-OBJS-$(CONFIG_FFT)
+=
$(FFT-OBJS-yes)
libavcodec/ppc/fft_altivec
_s
.S
→
libavcodec/ppc/fft_altivec.S
View file @
ffa4d4ef
...
@@ -39,6 +39,9 @@
...
@@ -39,6 +39,9 @@
*/
*/
#include "config.h"
#include "config.h"
#if HAVE_GNU_AS && HAVE_ALTIVEC
#include "asm.S"
#include "asm.S"
.text
.text
...
@@ -447,3 +450,5 @@ fft_dispatch_tab\suffix\()_altivec:
...
@@ -447,3 +450,5 @@ fft_dispatch_tab\suffix\()_altivec:
DECL_FFTS 0
DECL_FFTS 0
DECL_FFTS 1, _interleave
DECL_FFTS 1, _interleave
#endif /* HAVE_GNU_AS && HAVE_ALTIVEC */
libavcodec/ppc/fft_
altivec
.c
→
libavcodec/ppc/fft_
init
.c
View file @
ffa4d4ef
File moved
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