2012-01-28 11:07:08 +01:00
|
|
|
/*
|
2012-01-31 13:45:30 +01:00
|
|
|
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
|
2012-01-28 11:07:08 +01:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
2012-11-30 01:36:10 +01:00
|
|
|
#ifndef VP9_COMMON_VP9_PRED_COMMON_H_
|
|
|
|
#define VP9_COMMON_VP9_PRED_COMMON_H_
|
2012-01-28 11:07:08 +01:00
|
|
|
|
2013-03-05 23:12:16 +01:00
|
|
|
#include "vp9/common/vp9_blockd.h"
|
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2012-01-28 11:07:08 +01:00
|
|
|
|
|
|
|
// Predicted items
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef enum {
|
2013-03-05 23:12:16 +01:00
|
|
|
PRED_SEG_ID = 0, // Segment identifier
|
2013-06-06 22:44:34 +02:00
|
|
|
PRED_MBSKIP = 1,
|
|
|
|
PRED_SWITCHABLE_INTERP = 2,
|
|
|
|
PRED_INTRA_INTER = 3,
|
|
|
|
PRED_COMP_INTER_INTER = 4,
|
|
|
|
PRED_SINGLE_REF_P1 = 5,
|
|
|
|
PRED_SINGLE_REF_P2 = 6,
|
|
|
|
PRED_COMP_REF_P = 7,
|
2013-06-06 20:14:04 +02:00
|
|
|
PRED_TX_SIZE = 8
|
2012-01-28 11:07:08 +01:00
|
|
|
} PRED_ID;
|
|
|
|
|
2013-06-26 19:27:28 +02:00
|
|
|
unsigned char vp9_get_pred_context(const VP9_COMMON *cm, const MACROBLOCKD *xd,
|
2013-03-05 23:12:16 +01:00
|
|
|
PRED_ID pred_id);
|
|
|
|
|
2013-06-26 19:27:28 +02:00
|
|
|
vp9_prob vp9_get_pred_prob(const VP9_COMMON *cm, const MACROBLOCKD *xd,
|
2013-03-05 23:12:16 +01:00
|
|
|
PRED_ID pred_id);
|
2012-01-28 11:07:08 +01:00
|
|
|
|
2013-06-26 19:27:28 +02:00
|
|
|
const vp9_prob *vp9_get_pred_probs(const VP9_COMMON *cm, const MACROBLOCKD *xd,
|
2013-03-05 23:12:16 +01:00
|
|
|
PRED_ID pred_id);
|
2012-01-28 11:07:08 +01:00
|
|
|
|
2013-06-26 19:27:28 +02:00
|
|
|
unsigned char vp9_get_pred_flag(const MACROBLOCKD *xd, PRED_ID pred_id);
|
2012-07-18 22:43:01 +02:00
|
|
|
|
2013-06-26 19:27:28 +02:00
|
|
|
void vp9_set_pred_flag(MACROBLOCKD *xd, PRED_ID pred_id,
|
2013-03-05 23:12:16 +01:00
|
|
|
unsigned char pred_flag);
|
2012-01-28 11:07:08 +01:00
|
|
|
|
2013-06-26 19:27:28 +02:00
|
|
|
int vp9_get_segment_id(VP9_COMMON *cm, const uint8_t *segment_ids,
|
|
|
|
BLOCK_SIZE_TYPE bsize, int mi_row, int mi_col);
|
2012-01-28 11:07:08 +01:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_PRED_COMMON_H_
|