2012-01-28 10:07:08 +00:00
|
|
|
/*
|
2012-01-31 12:45:30 +00:00
|
|
|
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
|
2012-01-28 10:07:08 +00: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-28 10:41:40 -08:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2012-11-27 13:59:17 -08:00
|
|
|
#include "vp9/common/vp9_blockd.h"
|
2012-01-28 10:07:08 +00:00
|
|
|
|
2012-11-29 16:36:10 -08:00
|
|
|
#ifndef VP9_COMMON_VP9_PRED_COMMON_H_
|
|
|
|
#define VP9_COMMON_VP9_PRED_COMMON_H_
|
2012-01-28 10:07:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Predicted items
|
2012-07-13 15:21:29 -07:00
|
|
|
typedef enum {
|
|
|
|
PRED_SEG_ID = 0, // Segment identifier
|
|
|
|
PRED_REF = 1,
|
|
|
|
PRED_COMP = 2,
|
|
|
|
PRED_MBSKIP = 3,
|
2012-10-22 14:43:01 -07:00
|
|
|
PRED_SWITCHABLE_INTERP = 4
|
2012-01-28 10:07:08 +00:00
|
|
|
} PRED_ID;
|
|
|
|
|
2012-10-30 17:53:32 -07:00
|
|
|
extern unsigned char vp9_get_pred_context(const VP9_COMMON *const cm,
|
2012-10-29 13:44:18 +00:00
|
|
|
const MACROBLOCKD *const xd,
|
|
|
|
PRED_ID pred_id);
|
2012-01-28 10:07:08 +00:00
|
|
|
|
2012-10-31 14:40:53 -07:00
|
|
|
extern vp9_prob vp9_get_pred_prob(const VP9_COMMON *const cm,
|
2012-10-29 13:44:18 +00:00
|
|
|
const MACROBLOCKD *const xd,
|
|
|
|
PRED_ID pred_id);
|
2012-01-28 10:07:08 +00:00
|
|
|
|
2012-10-31 14:40:53 -07:00
|
|
|
extern const vp9_prob *vp9_get_pred_probs(const VP9_COMMON *const cm,
|
2012-10-29 13:44:18 +00:00
|
|
|
const MACROBLOCKD *const xd,
|
|
|
|
PRED_ID pred_id);
|
2012-07-18 13:43:01 -07:00
|
|
|
|
2012-10-29 13:44:18 +00:00
|
|
|
extern unsigned char vp9_get_pred_flag(const MACROBLOCKD *const xd,
|
|
|
|
PRED_ID pred_id);
|
2012-01-28 10:07:08 +00:00
|
|
|
|
2012-10-29 13:44:18 +00:00
|
|
|
extern void vp9_set_pred_flag(MACROBLOCKD *const xd,
|
|
|
|
PRED_ID pred_id,
|
|
|
|
unsigned char pred_flag);
|
2012-01-28 10:07:08 +00:00
|
|
|
|
|
|
|
|
2012-10-30 17:53:32 -07:00
|
|
|
extern unsigned char vp9_get_pred_mb_segid(const VP9_COMMON *const cm,
|
2012-10-29 17:58:18 -07:00
|
|
|
const MACROBLOCKD *const xd,
|
2012-10-29 13:44:18 +00:00
|
|
|
int MbIndex);
|
2012-01-28 10:07:08 +00:00
|
|
|
|
2012-10-30 17:53:32 -07:00
|
|
|
extern MV_REFERENCE_FRAME vp9_get_pred_ref(const VP9_COMMON *const cm,
|
2012-10-16 13:52:39 -07:00
|
|
|
const MACROBLOCKD *const xd);
|
2012-10-30 17:53:32 -07:00
|
|
|
extern void vp9_compute_mod_refprobs(VP9_COMMON *const cm);
|
2012-01-28 10:07:08 +00:00
|
|
|
|
2012-12-18 15:31:19 -08:00
|
|
|
#endif // VP9_COMMON_VP9_PRED_COMMON_H_
|