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

Unified Diff: source/libvpx/vp9/common/vp9_setupintrarecon.c

Issue 11974002: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 11 months 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
« no previous file with comments | « source/libvpx/vp9/common/vp9_setupintrarecon.h ('k') | source/libvpx/vp9/common/vp9_subpelvar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp9/common/vp9_setupintrarecon.c
===================================================================
--- source/libvpx/vp9/common/vp9_setupintrarecon.c (revision 177019)
+++ source/libvpx/vp9/common/vp9_setupintrarecon.c (working copy)
@@ -18,14 +18,14 @@
/* set up frame new frame for intra coded blocks */
vpx_memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
for (i = 0; i < ybf->y_height; i++)
- ybf->y_buffer[ybf->y_stride * i - 1] = (unsigned char) 129;
+ ybf->y_buffer[ybf->y_stride * i - 1] = (uint8_t) 129;
vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
for (i = 0; i < ybf->uv_height; i++)
- ybf->u_buffer[ybf->uv_stride * i - 1] = (unsigned char) 129;
+ ybf->u_buffer[ybf->uv_stride * i - 1] = (uint8_t) 129;
vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
for (i = 0; i < ybf->uv_height; i++)
- ybf->v_buffer[ybf->uv_stride * i - 1] = (unsigned char) 129;
+ ybf->v_buffer[ybf->uv_stride * i - 1] = (uint8_t) 129;
}
« no previous file with comments | « source/libvpx/vp9/common/vp9_setupintrarecon.h ('k') | source/libvpx/vp9/common/vp9_subpelvar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698