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
1399931d
Commit
1399931d
authored
May 07, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: dsputil: Rename dsputil_mmx.h --> dsputil_x86.h
The header is not (anymore) MMX-specific.
parent
245b76a1
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
21 additions
and
21 deletions
+21
-21
imgconvert.c
libavcodec/imgconvert.c
+1
-1
ac3dsp_init.c
libavcodec/x86/ac3dsp_init.c
+1
-1
cavsdsp.c
libavcodec/x86/cavsdsp.c
+1
-1
dsputil_init.c
libavcodec/x86/dsputil_init.c
+1
-1
dsputil_mmx.c
libavcodec/x86/dsputil_mmx.c
+1
-1
dsputil_x86.h
libavcodec/x86/dsputil_x86.h
+0
-0
dsputilenc_mmx.c
libavcodec/x86/dsputilenc_mmx.c
+1
-1
fpel_mmx.c
libavcodec/x86/fpel_mmx.c
+1
-1
h264_qpel.c
libavcodec/x86/h264_qpel.c
+1
-1
h264dsp_init.c
libavcodec/x86/h264dsp_init.c
+1
-1
hpeldsp_init.c
libavcodec/x86/hpeldsp_init.c
+1
-1
hpeldsp_mmx.c
libavcodec/x86/hpeldsp_mmx.c
+1
-1
idct_mmx_xvid.c
libavcodec/x86/idct_mmx_xvid.c
+1
-1
idct_sse2_xvid.c
libavcodec/x86/idct_sse2_xvid.c
+1
-1
motion_est.c
libavcodec/x86/motion_est.c
+1
-1
mpegvideo.c
libavcodec/x86/mpegvideo.c
+1
-1
mpegvideoenc.c
libavcodec/x86/mpegvideoenc.c
+1
-1
rnd_mmx.c
libavcodec/x86/rnd_mmx.c
+1
-1
rv40dsp_init.c
libavcodec/x86/rv40dsp_init.c
+1
-1
simple_idct.c
libavcodec/x86/simple_idct.c
+1
-1
vc1dsp_init.c
libavcodec/x86/vc1dsp_init.c
+1
-1
vc1dsp_mmx.c
libavcodec/x86/vc1dsp_mmx.c
+1
-1
No files found.
libavcodec/imgconvert.c
View file @
1399931d
...
...
@@ -40,7 +40,7 @@
#include "libavutil/imgutils.h"
#if HAVE_MMX_EXTERNAL
#include "x86/dsputil_
mmx
.h"
#include "x86/dsputil_
x86
.h"
#endif
#if HAVE_MMX_EXTERNAL
...
...
libavcodec/x86/ac3dsp_init.c
View file @
1399931d
...
...
@@ -22,7 +22,7 @@
#include "libavutil/mem.h"
#include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#include "libavcodec/ac3.h"
#include "libavcodec/ac3dsp.h"
...
...
libavcodec/x86/cavsdsp.c
View file @
1399931d
...
...
@@ -29,7 +29,7 @@
#include "libavutil/x86/cpu.h"
#include "libavcodec/cavsdsp.h"
#include "constants.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#include "config.h"
#if HAVE_MMX_INLINE
...
...
libavcodec/x86/dsputil_init.c
View file @
1399931d
...
...
@@ -22,7 +22,7 @@
#include "libavutil/x86/asm.h"
#include "libavcodec/dsputil.h"
#include "libavcodec/simple_idct.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#include "idct_xvid.h"
void
ff_put_pixels8_l2_mmxext
(
uint8_t
*
dst
,
uint8_t
*
src1
,
uint8_t
*
src2
,
...
...
libavcodec/x86/dsputil_mmx.c
View file @
1399931d
...
...
@@ -26,7 +26,7 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/asm.h"
#include "constants.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/dsputil_
mmx
.h
→
libavcodec/x86/dsputil_
x86
.h
View file @
1399931d
File moved
libavcodec/x86/dsputilenc_mmx.c
View file @
1399931d
...
...
@@ -30,7 +30,7 @@
#include "libavcodec/dsputil.h"
#include "libavcodec/mpegvideo.h"
#include "libavcodec/mathops.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
void
ff_get_pixels_mmx
(
int16_t
*
block
,
const
uint8_t
*
pixels
,
int
line_size
);
void
ff_get_pixels_sse2
(
int16_t
*
block
,
const
uint8_t
*
pixels
,
int
line_size
);
...
...
libavcodec/x86/fpel_mmx.c
View file @
1399931d
...
...
@@ -25,7 +25,7 @@
#include <stdint.h>
#include "config.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_MMX_INLINE
...
...
libavcodec/x86/h264_qpel.c
View file @
1399931d
...
...
@@ -25,7 +25,7 @@
#include "libavutil/x86/cpu.h"
#include "libavcodec/h264qpel.h"
#include "libavcodec/mpegvideo.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_YASM
void
ff_put_pixels4_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
...
...
libavcodec/x86/h264dsp_init.c
View file @
1399931d
...
...
@@ -23,7 +23,7 @@
#include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/h264dsp.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
/***********************************/
/* IDCT */
...
...
libavcodec/x86/hpeldsp_init.c
View file @
1399931d
...
...
@@ -25,7 +25,7 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/asm.h"
#include "libavcodec/hpeldsp.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
void
ff_put_pixels8_x2_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
...
...
libavcodec/x86/hpeldsp_mmx.c
View file @
1399931d
...
...
@@ -24,7 +24,7 @@
#include <stdint.h>
#include "config.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_MMX_INLINE
...
...
libavcodec/x86/idct_mmx_xvid.c
View file @
1399931d
...
...
@@ -44,7 +44,7 @@
#include "config.h"
#include "libavcodec/avcodec.h"
#include "libavutil/mem.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#include "idct_xvid.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/idct_sse2_xvid.c
View file @
1399931d
...
...
@@ -42,7 +42,7 @@
#include "libavutil/mem.h"
#include "libavutil/x86/asm.h"
#include "idct_xvid.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/motion_est.c
View file @
1399931d
...
...
@@ -26,7 +26,7 @@
#include "libavutil/internal.h"
#include "libavutil/mem.h"
#include "libavutil/x86/asm.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/mpegvideo.c
View file @
1399931d
...
...
@@ -24,7 +24,7 @@
#include "libavutil/x86/asm.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/mpegvideo.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/mpegvideoenc.c
View file @
1399931d
...
...
@@ -26,7 +26,7 @@
#include "libavcodec/avcodec.h"
#include "libavcodec/dct.h"
#include "libavcodec/mpegvideo.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
extern
uint16_t
ff_inv_zigzag_direct16
[
64
];
...
...
libavcodec/x86/rnd_mmx.c
View file @
1399931d
...
...
@@ -17,7 +17,7 @@
*/
#include "config.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/rv40dsp_init.c
View file @
1399931d
...
...
@@ -30,7 +30,7 @@
#include "libavutil/attributes.h"
#include "libavutil/mem.h"
#include "libavutil/x86/cpu.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_YASM
void
ff_put_rv40_chroma_mc8_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
...
...
libavcodec/x86/simple_idct.c
View file @
1399931d
...
...
@@ -22,7 +22,7 @@
#include "libavcodec/simple_idct.h"
#include "libavutil/internal.h"
#include "libavutil/mem.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/vc1dsp_init.c
View file @
1399931d
...
...
@@ -27,7 +27,7 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/vc1dsp.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#include "vc1dsp.h"
#include "config.h"
...
...
libavcodec/x86/vc1dsp_mmx.c
View file @
1399931d
...
...
@@ -31,7 +31,7 @@
#include "libavutil/x86/cpu.h"
#include "libavcodec/vc1dsp.h"
#include "constants.h"
#include "dsputil_
mmx
.h"
#include "dsputil_
x86
.h"
#include "vc1dsp.h"
#if HAVE_INLINE_ASM
...
...
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