Moving struct loop_filter_info from *.h to *.c file.
Change-Id: I3fe90eb40088a5b07bdc7d66d93ffe6ef99943d5
This commit is contained in:
Родитель
60ff123536
Коммит
5d86f3886d
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче