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
6655c933
Commit
6655c933
authored
Jan 28, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: dsputil: Move fpel declarations to a separate header
parent
322a1dda
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
50 additions
and
21 deletions
+50
-21
cavsdsp.c
libavcodec/x86/cavsdsp.c
+1
-0
dsputil_init.c
libavcodec/x86/dsputil_init.c
+1
-0
dsputil_x86.h
libavcodec/x86/dsputil_x86.h
+0
-17
fpel.h
libavcodec/x86/fpel.h
+43
-0
fpel_mmx.c
libavcodec/x86/fpel_mmx.c
+1
-1
h264_qpel.c
libavcodec/x86/h264_qpel.c
+1
-1
hpeldsp_init.c
libavcodec/x86/hpeldsp_init.c
+1
-0
vc1dsp_init.c
libavcodec/x86/vc1dsp_init.c
+1
-1
vc1dsp_mmx.c
libavcodec/x86/vc1dsp_mmx.c
+1
-1
No files found.
libavcodec/x86/cavsdsp.c
View file @
6655c933
...
...
@@ -30,6 +30,7 @@
#include "libavcodec/cavsdsp.h"
#include "constants.h"
#include "dsputil_x86.h"
#include "fpel.h"
#include "config.h"
#if HAVE_MMX_INLINE
...
...
libavcodec/x86/dsputil_init.c
View file @
6655c933
...
...
@@ -28,6 +28,7 @@
#include "libavcodec/simple_idct.h"
#include "libavcodec/version.h"
#include "dsputil_x86.h"
#include "fpel.h"
#include "idct_xvid.h"
void
ff_put_pixels8_l2_mmxext
(
uint8_t
*
dst
,
uint8_t
*
src1
,
uint8_t
*
src2
,
...
...
libavcodec/x86/dsputil_x86.h
View file @
6655c933
...
...
@@ -61,23 +61,6 @@ void ff_gmc_mmx(uint8_t *dst, uint8_t *src,
void
ff_vector_clipf_sse
(
float
*
dst
,
const
float
*
src
,
float
min
,
float
max
,
int
len
);
void
ff_avg_pixels8_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels16_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels8_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels16_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels8_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels8_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels16_sse2
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels16_sse2
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels8_x2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
...
...
libavcodec/x86/fpel.h
0 → 100644
View file @
6655c933
/*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Libav is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_X86_FPEL_H
#define AVCODEC_X86_FPEL_H
#include <stddef.h>
#include <stdint.h>
void
ff_avg_pixels8_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels8_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels16_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels16_sse2
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels8_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels8_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels16_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels16_sse2
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
#endif
/* AVCODEC_X86_FPEL_H */
libavcodec/x86/fpel_mmx.c
View file @
6655c933
...
...
@@ -25,7 +25,7 @@
#include <stdint.h>
#include "config.h"
#include "
dsputil_x86
.h"
#include "
fpel
.h"
#include "inline_asm.h"
#if HAVE_MMX_INLINE
...
...
libavcodec/x86/h264_qpel.c
View file @
6655c933
...
...
@@ -26,7 +26,7 @@
#include "libavcodec/h264qpel.h"
#include "libavcodec/mpegvideo.h"
#include "libavcodec/pixels.h"
#include "
dsputil_x86
.h"
#include "
fpel
.h"
#if HAVE_YASM
void
ff_put_pixels4_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
...
...
libavcodec/x86/hpeldsp_init.c
View file @
6655c933
...
...
@@ -30,6 +30,7 @@
#include "libavcodec/hpeldsp.h"
#include "libavcodec/pixels.h"
#include "dsputil_x86.h"
#include "fpel.h"
void
ff_put_pixels8_x2_mmxext
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
...
...
libavcodec/x86/vc1dsp_init.c
View file @
6655c933
...
...
@@ -28,7 +28,7 @@
#include "libavutil/cpu.h"
#include "libavutil/x86/cpu.h"
#include "libavcodec/vc1dsp.h"
#include "
dsputil_x86
.h"
#include "
fpel
.h"
#include "vc1dsp.h"
#include "config.h"
...
...
libavcodec/x86/vc1dsp_mmx.c
View file @
6655c933
...
...
@@ -31,7 +31,7 @@
#include "libavutil/x86/cpu.h"
#include "libavcodec/vc1dsp.h"
#include "constants.h"
#include "
dsputil_x86
.h"
#include "
fpel
.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