Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
632e4197
Commit
632e4197
authored
Aug 22, 2014
by
James Zern
Browse files
dct16x16_test.cc: remove unused param warnings
Change-Id: I744342b12ae7e5423b06b87ceec2d2ab4a3a3cbb
parent
cd2ac828
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/dct16x16_test.cc
View file @
632e4197
...
...
@@ -268,11 +268,13 @@ typedef void (*IhtFunc)(const int16_t *in, uint8_t *out, int stride,
typedef
std
::
tr1
::
tuple
<
FdctFunc
,
IdctFunc
,
int
>
Dct16x16Param
;
typedef
std
::
tr1
::
tuple
<
FhtFunc
,
IhtFunc
,
int
>
Ht16x16Param
;
void
fdct16x16_ref
(
const
int16_t
*
in
,
int16_t
*
out
,
int
stride
,
int
tx_type
)
{
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
)
{
void
idct16x16_ref
(
const
int16_t
*
in
,
uint8_t
*
dest
,
int
stride
,
int
/*tx_type*/
)
{
vp9_idct16x16_256_add_c
(
in
,
dest
,
stride
);
}
...
...
Write
Preview
Supports
Markdown
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