summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2012-02-02 14:33:34 +0000
committerPaul Wilkins <paulwilkins@google.com>2012-02-06 16:37:11 +0000
commitc98e9d2882b4dcfe70d1a7136eb8bcb4b2eb5292 (patch)
treef406c54654431daa59704f42f0b322c359e70db2 /vp8/encoder/onyx_if.c
parent58ec6fe8c399c3f21e8e0ba368a80270581b2aa6 (diff)
downloadlibvpx-c98e9d2882b4dcfe70d1a7136eb8bcb4b2eb5292.tar
libvpx-c98e9d2882b4dcfe70d1a7136eb8bcb4b2eb5292.tar.gz
libvpx-c98e9d2882b4dcfe70d1a7136eb8bcb4b2eb5292.tar.bz2
libvpx-c98e9d2882b4dcfe70d1a7136eb8bcb4b2eb5292.zip
Moved prob_dualpred to common.
Moved the prob_dualpred[] sturcture to common. Created common prediction entry for Dual flag. Change-Id: I9ac3d128bae6114f09e5c18216d4b95cf36453d5
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index e3656e2d8..c50898886 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -2355,9 +2355,9 @@ VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf)
cm->prob_gf_coded = 128;
cm->prob_intra_coded = 63;
#if CONFIG_DUALPRED
- cpi->prob_dualpred[0] = 128;
- cpi->prob_dualpred[1] = 128;
- cpi->prob_dualpred[2] = 128;
+ cm->prob_dualpred[0] = 128;
+ cm->prob_dualpred[1] = 128;
+ cm->prob_dualpred[2] = 128;
#endif /* CONFIG_DUALPRED */
// Prime the recent reference frame useage counters.