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
Xiph.Org
aom-rav1e
Commits
4d503d10
Commit
4d503d10
authored
Apr 15, 2016
by
Jingning Han
Browse files
Remove duplicated TxfmFunc declarations
Change-Id: If3876610a1fbce0988cc21ea917596bbb467df93
parent
9638ee1f
Changes
2
Show whitespace changes
Inline
Side-by-side
vp10/common/vp10_fwd_txfm2d.c
View file @
4d503d10
...
...
@@ -11,9 +11,6 @@
#include "vp10/common/vp10_txfm.h"
#include "vp10/common/vp10_fwd_txfm1d.h"
typedef
void
(
*
TxfmFunc
)(
const
int32_t
*
input
,
int32_t
*
output
,
const
int8_t
*
cos_bit
,
const
int8_t
*
stage_range
);
static
inline
TxfmFunc
fwd_txfm_type_to_func
(
TXFM_TYPE
txfm_type
)
{
switch
(
txfm_type
)
{
case
TXFM_TYPE_DCT4
:
...
...
vp10/common/vp10_inv_txfm2d.c
View file @
4d503d10
...
...
@@ -11,9 +11,6 @@
#include "vp10/common/vp10_txfm.h"
#include "vp10/common/vp10_inv_txfm1d.h"
typedef
void
(
*
TxfmFunc
)(
const
int32_t
*
input
,
int32_t
*
output
,
const
int8_t
*
cos_bit
,
const
int8_t
*
stage_range
);
static
inline
TxfmFunc
inv_txfm_type_to_func
(
TXFM_TYPE
txfm_type
)
{
switch
(
txfm_type
)
{
case
TXFM_TYPE_DCT4
:
...
...
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