summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2016-04-15 04:58:37 -0700
committerScott LaVarnway <slavarnway@google.com>2016-04-15 04:58:37 -0700
commitef98a8f61f81a488e59855eeca83711228047d12 (patch)
treec18bc495b5aa3c52d1f32ff5287a9dd5c191d7a5 /vp9/encoder
parent9c2ed00c8c16b0f55fbc994d15cbc3b3c279dc99 (diff)
downloadlibvpx-ef98a8f61f81a488e59855eeca83711228047d12.tar
libvpx-ef98a8f61f81a488e59855eeca83711228047d12.tar.gz
libvpx-ef98a8f61f81a488e59855eeca83711228047d12.tar.bz2
libvpx-ef98a8f61f81a488e59855eeca83711228047d12.zip
VP9: inline vp9_get_intra_inter_context()
Change-Id: I71366140799b9b39474b9b459082cdb250bd1905
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_encodeframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index cdc58ea84..634e5cfe8 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -1404,7 +1404,7 @@ static void update_stats(VP9_COMMON *cm, ThreadData *td) {
const int seg_ref_active = segfeature_active(&cm->seg, mi->segment_id,
SEG_LVL_REF_FRAME);
if (!seg_ref_active) {
- counts->intra_inter[vp9_get_intra_inter_context(xd)][inter_block]++;
+ counts->intra_inter[get_intra_inter_context(xd)][inter_block]++;
// If the segment reference feature is enabled we have only a single
// reference frame allowed for the segment so exclude it from
// the reference frame counts used to work out probabilities.