summaryrefslogtreecommitdiff
path: root/vp8
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2012-01-18 14:22:55 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2012-01-18 14:22:55 -0800
commit6a4ff6f32595918f91dd734700313b9fc86b13c2 (patch)
tree95a38c6c6a80043337346fead3a18c8b4e58ce03 /vp8
parent315b58ec386bdd48e9f103e3e71426f8ef8d5030 (diff)
parent4753ee416629c2a6a32c361cc6320d822f12bca9 (diff)
downloadlibvpx-6a4ff6f32595918f91dd734700313b9fc86b13c2.tar
libvpx-6a4ff6f32595918f91dd734700313b9fc86b13c2.tar.gz
libvpx-6a4ff6f32595918f91dd734700313b9fc86b13c2.tar.bz2
libvpx-6a4ff6f32595918f91dd734700313b9fc86b13c2.zip
Merge "get_plane_pointers: use u/v planes consistently"
Diffstat (limited to 'vp8')
-rw-r--r--vp8/encoder/rdopt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/rdopt.h b/vp8/encoder/rdopt.h
index c93a69f17..db939f96c 100644
--- a/vp8/encoder/rdopt.h
+++ b/vp8/encoder/rdopt.h
@@ -77,7 +77,7 @@ static void get_plane_pointers(const YV12_BUFFER_CONFIG *fb,
{
plane[0] = fb->y_buffer + recon_yoffset;
plane[1] = fb->u_buffer + recon_uvoffset;
- plane[2] = fb->u_buffer + recon_uvoffset;
+ plane[2] = fb->v_buffer + recon_uvoffset;
}