Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
39fe2350
Commit
39fe2350
authored
Aug 12, 2013
by
Jingning Han
Committed by
Gerrit Code Review
Aug 12, 2013
Browse files
Merge "SSE2 high precision 32x32 forward DCT"
parents
4417c045
78136edc
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_blockd.h
View file @
39fe2350
...
...
@@ -143,7 +143,7 @@ typedef struct {
unsigned
char
mb_skip_coeff
;
/* does this mb has coefficients at all, 1=no coefficients, 0=need decode tokens */
unsigned
char
segment_id
;
// Segment id for current frame
// Flags used for prediction status of various bistream signals
// Flags used for prediction status of various bi
t-
stream signals
unsigned
char
seg_id_predicted
;
// Indicates if the mb is part of the image (1) vs border (0)
...
...
vp9/common/vp9_idct.h
View file @
39fe2350
...
...
@@ -27,6 +27,9 @@
#define pair_set_epi16(a, b) \
_mm_set1_epi32(((uint16_t)(a)) + (((uint16_t)(b)) << 16))
#define pair_set_epi32(a, b) \
_mm_set_epi32(b, a, b, a)
// Constants:
// for (int i = 1; i< 32; ++i)
// printf("static const int cospi_%d_64 = %.0f;\n", i,
...
...
vp9/common/vp9_rtcd_defs.sh
View file @
39fe2350
...
...
@@ -740,7 +740,7 @@ prototype void vp9_short_fdct8x4 "int16_t *InputData, int16_t *OutputData, int p
specialize vp9_short_fdct8x4 sse2
prototype void vp9_short_fdct32x32
"int16_t *InputData, int16_t *OutputData, int pitch"
specialize vp9_short_fdct32x32
specialize vp9_short_fdct32x32
sse2
prototype void vp9_short_fdct32x32_rd
"int16_t *InputData, int16_t *OutputData, int pitch"
specialize vp9_short_fdct32x32_rd sse2
...
...
vp9/encoder/vp9_rdopt.c
View file @
39fe2350
...
...
@@ -8,7 +8,6 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include <stdio.h>
#include <math.h>
#include <limits.h>
...
...
vp9/encoder/x86/vp9_dct32x32_sse2.c
View file @
39fe2350
This diff is collapsed.
Click to expand it.
vp9/encoder/x86/vp9_dct_sse2.c
View file @
39fe2350
...
...
@@ -2573,13 +2573,13 @@ void vp9_short_fht16x16_sse2(int16_t *input, int16_t *output,
}
#define FDCT32x32_2D vp9_short_fdct32x32_rd_sse2
#define FDCT32x32_
LOW
_PRECISION
1
#define FDCT32x32_
HIGH
_PRECISION
0
#include "vp9/encoder/x86/vp9_dct32x32_sse2.c"
#undef FDCT32x32_2D
#undef FDCT32x32_
LOW
_PRECISION
#undef FDCT32x32_
HIGH
_PRECISION
#define FDCT32x32_2D vp9_short_fdct32x32_sse2
#define FDCT32x32_
LOW
_PRECISION
0
#define FDCT32x32_
HIGH
_PRECISION
1
#include "vp9/encoder/x86/vp9_dct32x32_sse2.c" // NOLINT
#undef FDCT32x32_2D
#undef FDCT32x32_
LOW
_PRECISION
#undef FDCT32x32_
HIGH
_PRECISION
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