Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
56c2cb75
Commit
56c2cb75
authored
Jul 31, 2015
by
Jingning Han
Browse files
Use precise header files in inverse transform msa implementations
Change-Id: Ie8a79d9e2837842c3f60776b661cd42782b108d5
parent
d8642d83
Changes
4
Hide whitespace changes
Inline
Side-by-side
vp9/common/mips/msa/vp9_idct16x16_msa.c
View file @
56c2cb75
...
...
@@ -9,7 +9,9 @@
*/
#include
<assert.h>
#include
"vp9/common/mips/msa/vp9_idct_msa.h"
#include
"vp9/common/vp9_enums.h"
void
vp9_idct16_1d_rows_msa
(
const
int16_t
*
input
,
int16_t
*
output
)
{
v8i16
loc0
,
loc1
,
loc2
,
loc3
;
...
...
vp9/common/mips/msa/vp9_idct4x4_msa.c
View file @
56c2cb75
...
...
@@ -9,7 +9,9 @@
*/
#include
<assert.h>
#include
"vp9/common/mips/msa/vp9_idct_msa.h"
#include
"vp9/common/vp9_enums.h"
void
vp9_iwht4x4_16_add_msa
(
const
int16_t
*
input
,
uint8_t
*
dst
,
int32_t
dst_stride
)
{
...
...
vp9/common/mips/msa/vp9_idct8x8_msa.c
View file @
56c2cb75
...
...
@@ -9,7 +9,9 @@
*/
#include
<assert.h>
#include
"vp9/common/mips/msa/vp9_idct_msa.h"
#include
"vp9/common/vp9_enums.h"
void
vp9_idct8x8_64_add_msa
(
const
int16_t
*
input
,
uint8_t
*
dst
,
int32_t
dst_stride
)
{
...
...
vp9/common/mips/msa/vp9_idct_msa.h
View file @
56c2cb75
...
...
@@ -11,10 +11,10 @@
#ifndef VP9_COMMON_MIPS_MSA_VP9_IDCT_MSA_H_
#define VP9_COMMON_MIPS_MSA_VP9_IDCT_MSA_H_
#include
"vpx_ports/mem.h"
#include
"vp9/common/vp9_idct.h"
#include
"vpx_dsp/mips/macros_msa.h"
#include
"vpx_dsp/mips/txfm_macros_msa.h"
#include
"vpx_dsp/txfm_common.h"
#include
"vpx_ports/mem.h"
#define VP9_ADST8(in0, in1, in2, in3, in4, in5, in6, in7, \
out0, out1, out2, out3, out4, out5, out6, out7) { \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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