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
82dd1026
Commit
82dd1026
authored
Jan 29, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: dsputil: Move hpeldsp-related declarations to a separate header
parent
ae116cd3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
42 additions
and
18 deletions
+42
-18
dsputil_x86.h
libavcodec/x86/dsputil_x86.h
+0
-14
hpeldsp.h
libavcodec/x86/hpeldsp.h
+38
-0
hpeldsp_init.c
libavcodec/x86/hpeldsp_init.c
+1
-1
hpeldsp_mmx.c
libavcodec/x86/hpeldsp_mmx.c
+1
-1
rnd_mmx.c
libavcodec/x86/rnd_mmx.c
+1
-1
rv40dsp_init.c
libavcodec/x86/rv40dsp_init.c
+1
-1
No files found.
libavcodec/x86/dsputil_x86.h
View file @
82dd1026
...
...
@@ -22,7 +22,6 @@
#ifndef AVCODEC_X86_DSPUTIL_X86_H
#define AVCODEC_X86_DSPUTIL_X86_H
#include <stddef.h>
#include <stdint.h>
#include "libavcodec/avcodec.h"
...
...
@@ -61,17 +60,4 @@ 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_x2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels8_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels16_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels8_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels16_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
#endif
/* AVCODEC_X86_DSPUTIL_X86_H */
libavcodec/x86/hpeldsp.h
0 → 100644
View file @
82dd1026
/*
* 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_HPELDSP_H
#define AVCODEC_X86_HPELDSP_H
#include <stddef.h>
#include <stdint.h>
void
ff_avg_pixels8_x2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels8_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_avg_pixels16_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels8_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
void
ff_put_pixels16_xy2_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
);
#endif
/* AVCODEC_X86_HPELDSP_H */
libavcodec/x86/hpeldsp_init.c
View file @
82dd1026
...
...
@@ -29,8 +29,8 @@
#include "libavcodec/avcodec.h"
#include "libavcodec/hpeldsp.h"
#include "libavcodec/pixels.h"
#include "dsputil_x86.h"
#include "fpel.h"
#include "hpeldsp.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 @
82dd1026
...
...
@@ -24,7 +24,7 @@
#include <stdint.h>
#include "config.h"
#include "
dsputil_x86
.h"
#include "
hpeldsp
.h"
#include "inline_asm.h"
#if HAVE_MMX_INLINE
...
...
libavcodec/x86/rnd_mmx.c
View file @
82dd1026
...
...
@@ -18,7 +18,7 @@
#include "config.h"
#include "libavcodec/pixels.h"
#include "
dsputil_x86
.h"
#include "
hpeldsp
.h"
#include "inline_asm.h"
#if HAVE_INLINE_ASM
...
...
libavcodec/x86/rv40dsp_init.c
View file @
82dd1026
...
...
@@ -30,7 +30,7 @@
#include "libavutil/attributes.h"
#include "libavutil/mem.h"
#include "libavutil/x86/cpu.h"
#include "
dsputil_x86
.h"
#include "
hpeldsp
.h"
#if HAVE_YASM
void
ff_put_rv40_chroma_mc8_mmx
(
uint8_t
*
dst
,
uint8_t
*
src
,
...
...
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