Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
9593db4a
Commit
9593db4a
authored
10 years ago
by
Jingning Han
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Plain Diff
Merge "Add overflow check unit test for 16x16 inverse DCT/ADST transform"
parents
ba6bed37
49b4a274
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/dct16x16_test.cc
+64
-0
test/dct16x16_test.cc
with
64 additions
and
0 deletions
test/dct16x16_test.cc
+
64
−
0
View file @
9593db4a
...
...
@@ -272,10 +272,18 @@ void fdct16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
vp9_fdct16x16_c
(
in
,
out
,
stride
);
}
void
idct16x16_ref
(
const
int16_t
*
in
,
uint8_t
*
dest
,
int
stride
,
int
tx_type
)
{
vp9_idct16x16_256_add_c
(
in
,
dest
,
stride
);
}
void
fht16x16_ref
(
const
int16_t
*
in
,
int16_t
*
out
,
int
stride
,
int
tx_type
)
{
vp9_fht16x16_c
(
in
,
out
,
stride
,
tx_type
);
}
void
iht16x16_ref
(
const
int16_t
*
in
,
uint8_t
*
dest
,
int
stride
,
int
tx_type
)
{
vp9_iht16x16_256_add_c
(
in
,
dest
,
stride
,
tx_type
);
}
class
Trans16x16TestBase
{
public:
virtual
~
Trans16x16TestBase
()
{}
...
...
@@ -378,6 +386,47 @@ class Trans16x16TestBase {
}
}
void
RunQuantCheck
(
int
dc_thred
,
int
ac_thred
)
{
ACMRandom
rnd
(
ACMRandom
::
DeterministicSeed
());
const
int
count_test_block
=
1000
;
DECLARE_ALIGNED_ARRAY
(
16
,
int16_t
,
input_block
,
kNumCoeffs
);
DECLARE_ALIGNED_ARRAY
(
16
,
int16_t
,
input_extreme_block
,
kNumCoeffs
);
DECLARE_ALIGNED_ARRAY
(
16
,
int16_t
,
output_ref_block
,
kNumCoeffs
);
DECLARE_ALIGNED_ARRAY
(
16
,
uint8_t
,
dst
,
kNumCoeffs
);
DECLARE_ALIGNED_ARRAY
(
16
,
uint8_t
,
ref
,
kNumCoeffs
);
for
(
int
i
=
0
;
i
<
count_test_block
;
++
i
)
{
// Initialize a test block with input range [-255, 255].
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
{
input_block
[
j
]
=
rnd
.
Rand8
()
-
rnd
.
Rand8
();
input_extreme_block
[
j
]
=
rnd
.
Rand8
()
%
2
?
255
:
-
255
;
}
if
(
i
==
0
)
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
input_extreme_block
[
j
]
=
255
;
if
(
i
==
1
)
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
input_extreme_block
[
j
]
=
-
255
;
fwd_txfm_ref
(
input_extreme_block
,
output_ref_block
,
pitch_
,
tx_type_
);
// clear reconstructed pixel buffers
vpx_memset
(
dst
,
0
,
kNumCoeffs
*
sizeof
(
uint8_t
));
vpx_memset
(
ref
,
0
,
kNumCoeffs
*
sizeof
(
uint8_t
));
// quantization with maximum allowed step sizes
output_ref_block
[
0
]
=
(
output_ref_block
[
0
]
/
dc_thred
)
*
dc_thred
;
for
(
int
j
=
1
;
j
<
kNumCoeffs
;
++
j
)
output_ref_block
[
j
]
=
(
output_ref_block
[
j
]
/
ac_thred
)
*
ac_thred
;
inv_txfm_ref
(
output_ref_block
,
ref
,
pitch_
,
tx_type_
);
REGISTER_STATE_CHECK
(
RunInvTxfm
(
output_ref_block
,
dst
,
pitch_
));
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
EXPECT_EQ
(
ref
[
j
],
dst
[
j
]);
}
}
void
RunInvAccuracyCheck
()
{
ACMRandom
rnd
(
ACMRandom
::
DeterministicSeed
());
const
int
count_test_block
=
1000
;
...
...
@@ -414,6 +463,7 @@ class Trans16x16TestBase {
int
pitch_
;
int
tx_type_
;
fht_t
fwd_txfm_ref
;
iht_t
inv_txfm_ref
;
};
class
Trans16x16DCT
...
...
@@ -428,6 +478,7 @@ class Trans16x16DCT
tx_type_
=
GET_PARAM
(
2
);
pitch_
=
16
;
fwd_txfm_ref
=
fdct16x16_ref
;
inv_txfm_ref
=
idct16x16_ref
;
}
virtual
void
TearDown
()
{
libvpx_test
::
ClearSystemState
();
}
...
...
@@ -455,6 +506,12 @@ TEST_P(Trans16x16DCT, MemCheck) {
RunMemCheck
();
}
TEST_P
(
Trans16x16DCT
,
QuantCheck
)
{
// Use maximally allowed quantization step sizes for DC and AC
// coefficients respectively.
RunQuantCheck
(
1336
,
1828
);
}
TEST_P
(
Trans16x16DCT
,
InvAccuracyCheck
)
{
RunInvAccuracyCheck
();
}
...
...
@@ -471,6 +528,7 @@ class Trans16x16HT
tx_type_
=
GET_PARAM
(
2
);
pitch_
=
16
;
fwd_txfm_ref
=
fht16x16_ref
;
inv_txfm_ref
=
iht16x16_ref
;
}
virtual
void
TearDown
()
{
libvpx_test
::
ClearSystemState
();
}
...
...
@@ -498,6 +556,12 @@ TEST_P(Trans16x16HT, MemCheck) {
RunMemCheck
();
}
TEST_P
(
Trans16x16HT
,
QuantCheck
)
{
// The encoder skips any non-DC intra prediction modes,
// when the quantization step size goes beyond 988.
RunQuantCheck
(
549
,
988
);
}
using
std
::
tr1
::
make_tuple
;
INSTANTIATE_TEST_CASE_P
(
...
...
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets