Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
48de07d8
Commit
48de07d8
authored
Jul 23, 2015
by
Jingning Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant function definitions in vp9_dct_sse2.h
Change-Id: I283d364a4e65ca9bf6ff581da1d0b498433c5402
parent
252ec598
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
11 deletions
+1
-11
vp9/encoder/x86/vp9_dct_sse2.c
vp9/encoder/x86/vp9_dct_sse2.c
+1
-1
vp9/encoder/x86/vp9_dct_sse2.h
vp9/encoder/x86/vp9_dct_sse2.h
+0
-10
No files found.
vp9/encoder/x86/vp9_dct_sse2.c
View file @
48de07d8
...
...
@@ -12,8 +12,8 @@
#include <emmintrin.h> // SSE2
#include "./vp9_rtcd.h"
#include "./vpx_dsp_rtcd.h"
#include "vp9/common/vp9_idct.h" // for cospi constants
#include "vp9/encoder/vp9_dct.h"
#include "vp9/encoder/x86/vp9_dct_sse2.h"
#include "vpx_ports/mem.h"
...
...
vp9/encoder/x86/vp9_dct_sse2.h
View file @
48de07d8
...
...
@@ -18,16 +18,6 @@ extern "C" {
#define pair_set_epi32(a, b) \
_mm_set_epi32((int)(b), (int)(a), (int)(b), (int)(a))
void
vp9_fdct4x4_sse2
(
const
int16_t
*
input
,
tran_low_t
*
output
,
int
stride
);
void
vp9_fdct8x8_sse2
(
const
int16_t
*
input
,
tran_low_t
*
output
,
int
stride
);
void
vp9_fdct16x16_sse2
(
const
int16_t
*
input
,
tran_low_t
*
output
,
int
stride
);
void
vp9_highbd_fdct4x4_sse2
(
const
int16_t
*
input
,
tran_low_t
*
output
,
int
stride
);
void
vp9_highbd_fdct8x8_sse2
(
const
int16_t
*
input
,
tran_low_t
*
output
,
int
stride
);
void
vp9_highbd_fdct16x16_sse2
(
const
int16_t
*
input
,
tran_low_t
*
output
,
int
stride
);
static
INLINE
__m128i
k_madd_epi32
(
__m128i
a
,
__m128i
b
)
{
__m128i
buf0
,
buf1
;
buf0
=
_mm_mul_epu32
(
a
,
b
);
...
...
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