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
Xiph.Org
aom-rav1e
Commits
5d86f388
Commit
5d86f388
authored
Aug 02, 2013
by
Dmitry Kovalev
Browse files
Moving struct loop_filter_info from *.h to *.c file.
Change-Id: I3fe90eb40088a5b07bdc7d66d93ffe6ef99943d5
parent
60ff1235
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_loopfilter.c
View file @
5d86f388
...
...
@@ -16,6 +16,12 @@
#include
"vp9/common/vp9_seg_common.h"
struct
loop_filter_info
{
const
uint8_t
*
mblim
;
const
uint8_t
*
lim
;
const
uint8_t
*
hev_thr
;
};
static
void
lf_init_lut
(
loop_filter_info_n
*
lfi
)
{
lfi
->
mode_lf_lut
[
DC_PRED
]
=
0
;
lfi
->
mode_lf_lut
[
D45_PRED
]
=
0
;
...
...
vp9/common/vp9_loopfilter.h
View file @
5d86f388
...
...
@@ -35,13 +35,6 @@ typedef struct {
uint8_t
mode_lf_lut
[
MB_MODE_COUNT
];
}
loop_filter_info_n
;
struct
loop_filter_info
{
const
uint8_t
*
mblim
;
const
uint8_t
*
lim
;
const
uint8_t
*
hev_thr
;
};
/* assorted loopfilter functions which get used elsewhere */
struct
VP9Common
;
struct
macroblockd
;
...
...
vp9/common/vp9_rtcd_defs.sh
View file @
5d86f388
...
...
@@ -7,9 +7,7 @@ cat <<EOF
#include "vpx/vpx_integer.h"
#include "vp9/common/vp9_enums.h"
struct loop_filter_info;
struct macroblockd;
struct loop_filter_info;
/* Encoder forward decls */
struct macroblock;
...
...
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