Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Unified Diff: source/libvpx/vp8/encoder/ratectrl.c

Issue 11555023: libvpx: Add VP9 decoder. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/libvpx/vp8/encoder/ratectrl.c
===================================================================
--- source/libvpx/vp8/encoder/ratectrl.c (revision 172621)
+++ source/libvpx/vp8/encoder/ratectrl.c (working copy)
@@ -242,8 +242,8 @@
vp8_copy(cc->ymode_prob, cpi->common.fc.ymode_prob);
vp8_copy(cc->uv_mode_prob, cpi->common.fc.uv_mode_prob);
- vp8_copy(cc->ymode_count, cpi->mb.ymode_count);
- vp8_copy(cc->uv_mode_count, cpi->mb.uv_mode_count);
+ vp8_copy(cc->ymode_count, cpi->ymode_count);
+ vp8_copy(cc->uv_mode_count, cpi->uv_mode_count);
/* Stats */
@@ -280,8 +280,8 @@
vp8_copy(cpi->common.fc.ymode_prob, cc->ymode_prob);
vp8_copy(cpi->common.fc.uv_mode_prob, cc->uv_mode_prob);
- vp8_copy(cpi->mb.ymode_count, cc->ymode_count);
- vp8_copy(cpi->mb.uv_mode_count, cc->uv_mode_count);
+ vp8_copy(cpi->ymode_count, cc->ymode_count);
+ vp8_copy(cpi->uv_mode_count, cc->uv_mode_count);
/* Stats */
#ifdef MODE_STATS

Powered by Google App Engine
This is Rietveld 408576698