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
bcc45d63
Commit
bcc45d63
authored
Aug 08, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: avcodec: Drop silly "_mmx" suffixes from filenames
parent
efbd04c3
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
9 additions
and
9 deletions
+9
-9
Makefile
libavcodec/x86/Makefile
+8
-8
cavsdsp.c
libavcodec/x86/cavsdsp.c
+0
-0
dsputil_mmx.c
libavcodec/x86/dsputil_mmx.c
+1
-1
fdct.c
libavcodec/x86/fdct.c
+0
-0
fft.asm
libavcodec/x86/fft.asm
+0
-0
h264_qpel.c
libavcodec/x86/h264_qpel.c
+0
-0
lpc.c
libavcodec/x86/lpc.c
+0
-0
motion_est.c
libavcodec/x86/motion_est.c
+0
-0
mpegaudiodec.c
libavcodec/x86/mpegaudiodec.c
+0
-0
simple_idct.c
libavcodec/x86/simple_idct.c
+0
-0
snowdsp.c
libavcodec/x86/snowdsp.c
+0
-0
No files found.
libavcodec/x86/Makefile
View file @
bcc45d63
...
...
@@ -4,24 +4,24 @@ OBJS-$(CONFIG_VP3DSP) += x86/vp3dsp_init.o
OBJS-$(CONFIG_XMM_CLOBBER_TEST)
+=
x86/w64xmmtest.o
MMX-OBJS
+=
x86/dsputil_mmx.o
\
x86/fdct
_mmx.o
\
x86/fdct
.o
\
x86/fmtconvert_init.o
\
x86/idct_mmx_xvid.o
\
x86/idct_sse2_xvid.o
\
x86/motion_est
_mmx.o
\
x86/simple_idct
_mmx.o
\
x86/motion_est
.o
\
x86/simple_idct
.o
\
MMX-OBJS-$(CONFIG_AAC_DECODER)
+=
x86/sbrdsp_init.o
MMX-OBJS-$(CONFIG_AC3DSP)
+=
x86/ac3dsp_init.o
MMX-OBJS-$(CONFIG_CAVS_DECODER)
+=
x86/cavsdsp
_mmx
.o
MMX-OBJS-$(CONFIG_CAVS_DECODER)
+=
x86/cavsdsp.o
MMX-OBJS-$(CONFIG_DNXHD_ENCODER)
+=
x86/dnxhdenc.o
MMX-OBJS-$(CONFIG_DWT)
+=
x86/snowdsp
_mmx
.o
MMX-OBJS-$(CONFIG_DWT)
+=
x86/snowdsp.o
MMX-OBJS-$(CONFIG_ENCODERS)
+=
x86/dsputilenc_mmx.o
MMX-OBJS-$(CONFIG_FFT)
+=
x86/fft_init.o
MMX-OBJS-$(CONFIG_H264DSP)
+=
x86/h264dsp_init.o
MMX-OBJS-$(CONFIG_H264PRED)
+=
x86/h264_intrapred_init.o
MMX-OBJS-$(CONFIG_LPC)
+=
x86/lpc
_mmx
.o
MMX-OBJS-$(CONFIG_MPEGAUDIODSP)
+=
x86/mpegaudiodec
_mmx
.o
MMX-OBJS-$(CONFIG_LPC)
+=
x86/lpc.o
MMX-OBJS-$(CONFIG_MPEGAUDIODSP)
+=
x86/mpegaudiodec.o
MMX-OBJS-$(CONFIG_MPEGVIDEO)
+=
x86/mpegvideo.o
MMX-OBJS-$(CONFIG_MPEGVIDEOENC)
+=
x86/mpegvideoenc.o
MMX-OBJS-$(CONFIG_PNG_DECODER)
+=
x86/pngdsp_init.o
...
...
@@ -38,7 +38,7 @@ YASM-OBJS-$(CONFIG_AAC_DECODER) += x86/sbrdsp.o
YASM-OBJS-$(CONFIG_AC3DSP)
+=
x86/ac3dsp.o
YASM-OBJS-$(CONFIG_DCT)
+=
x86/dct32.o
YASM-OBJS-$(CONFIG_ENCODERS)
+=
x86/dsputilenc.o
YASM-OBJS-$(CONFIG_FFT)
+=
x86/fft
_mmx
.o
YASM-OBJS-$(CONFIG_FFT)
+=
x86/fft.o
YASM-OBJS-$(CONFIG_H264CHROMA)
+=
x86/h264_chromamc.o
\
x86/h264_chromamc_10bit.o
YASM-OBJS-$(CONFIG_H264DSP)
+=
x86/h264_deblock.o
\
...
...
libavcodec/x86/cavsdsp
_mmx
.c
→
libavcodec/x86/cavsdsp.c
View file @
bcc45d63
File moved
libavcodec/x86/dsputil_mmx.c
View file @
bcc45d63
...
...
@@ -2081,7 +2081,7 @@ PREFETCH(prefetch_3dnow, prefetch)
#endif
/* HAVE_INLINE_ASM */
#include "h264_qpel
_mmx
.c"
#include "h264_qpel.c"
void
ff_put_h264_chroma_mc8_mmx_rnd
(
uint8_t
*
dst
,
uint8_t
*
src
,
int
stride
,
int
h
,
int
x
,
int
y
);
...
...
libavcodec/x86/fdct
_mmx
.c
→
libavcodec/x86/fdct.c
View file @
bcc45d63
File moved
libavcodec/x86/fft
_mmx
.asm
→
libavcodec/x86/fft.asm
View file @
bcc45d63
File moved
libavcodec/x86/h264_qpel
_mmx
.c
→
libavcodec/x86/h264_qpel.c
View file @
bcc45d63
File moved
libavcodec/x86/lpc
_mmx
.c
→
libavcodec/x86/lpc.c
View file @
bcc45d63
File moved
libavcodec/x86/motion_est
_mmx
.c
→
libavcodec/x86/motion_est.c
View file @
bcc45d63
File moved
libavcodec/x86/mpegaudiodec
_mmx
.c
→
libavcodec/x86/mpegaudiodec.c
View file @
bcc45d63
File moved
libavcodec/x86/simple_idct
_mmx
.c
→
libavcodec/x86/simple_idct.c
View file @
bcc45d63
File moved
libavcodec/x86/snowdsp
_mmx
.c
→
libavcodec/x86/snowdsp.c
View file @
bcc45d63
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