Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
4ee9300e
Commit
4ee9300e
authored
Jul 10, 2017
by
James Zern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dct tests: quiet unused param warnings
Change-Id: I696effc72117b24739947be80ae298de8c6c0e2a
parent
d9b5726f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
test/dct16x16_test.cc
test/dct16x16_test.cc
+2
-2
test/fdct4x4_test.cc
test/fdct4x4_test.cc
+2
-2
test/fdct8x8_test.cc
test/fdct8x8_test.cc
+1
-1
No files found.
test/dct16x16_test.cc
View file @
4ee9300e
...
...
@@ -236,12 +236,12 @@ typedef std::tr1::tuple<IdctFunc, IdctFunc, int, aom_bit_depth_t>
Idct16x16Param
;
void
fdct16x16_ref
(
const
int16_t
*
in
,
tran_low_t
*
out
,
int
stride
,
FWD_TXFM_PARAM
*
fwd_txfm_param
)
{
FWD_TXFM_PARAM
*
/*
fwd_txfm_param
*/
)
{
aom_fdct16x16_c
(
in
,
out
,
stride
);
}
void
idct16x16_ref
(
const
tran_low_t
*
in
,
uint8_t
*
dest
,
int
stride
,
const
INV_TXFM_PARAM
*
inv_txfm_param
)
{
const
INV_TXFM_PARAM
*
/*
inv_txfm_param
*/
)
{
aom_idct16x16_256_add_c
(
in
,
dest
,
stride
);
}
...
...
test/fdct4x4_test.cc
View file @
4ee9300e
...
...
@@ -41,7 +41,7 @@ typedef std::tr1::tuple<FdctFunc, IdctFunc, int, aom_bit_depth_t, int>
typedef
std
::
tr1
::
tuple
<
FhtFunc
,
IhtFunc
,
int
,
aom_bit_depth_t
,
int
>
Ht4x4Param
;
void
fdct4x4_ref
(
const
int16_t
*
in
,
tran_low_t
*
out
,
int
stride
,
FWD_TXFM_PARAM
*
fwd_txfm_param
)
{
FWD_TXFM_PARAM
*
/*
fwd_txfm_param
*/
)
{
aom_fdct4x4_c
(
in
,
out
,
stride
);
}
...
...
@@ -51,7 +51,7 @@ void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride,
}
void
fwht4x4_ref
(
const
int16_t
*
in
,
tran_low_t
*
out
,
int
stride
,
FWD_TXFM_PARAM
*
fwd_txfm_param
)
{
FWD_TXFM_PARAM
*
/*
fwd_txfm_param
*/
)
{
av1_fwht4x4_c
(
in
,
out
,
stride
);
}
...
...
test/fdct8x8_test.cc
View file @
4ee9300e
...
...
@@ -78,7 +78,7 @@ void reference_8x8_dct_2d(const int16_t input[kNumCoeffs],
}
void
fdct8x8_ref
(
const
int16_t
*
in
,
tran_low_t
*
out
,
int
stride
,
FWD_TXFM_PARAM
*
fwd_txfm_param
)
{
FWD_TXFM_PARAM
*
/*
fwd_txfm_param
*/
)
{
aom_fdct8x8_c
(
in
,
out
,
stride
);
}
...
...
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