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

Unified Diff: source/libvpx/vp9/common/vp9_extend.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_extend.h ('k') | source/libvpx/vp9/common/vp9_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp9/common/vp9_extend.c
===================================================================
--- source/libvpx/vp9/common/vp9_extend.c (revision 177019)
+++ source/libvpx/vp9/common/vp9_extend.c (working copy)
@@ -11,9 +11,9 @@
#include "vp9/common/vp9_extend.h"
#include "vpx_mem/vpx_mem.h"
-static void copy_and_extend_plane(unsigned char *s, /* source */
+static void copy_and_extend_plane(uint8_t *s, /* source */
int sp, /* source pitch */
- unsigned char *d, /* destination */
+ uint8_t *d, /* destination */
int dp, /* destination pitch */
int h, /* height */
int w, /* width */
@@ -22,8 +22,8 @@
int eb, /* extend bottom border */
int er) { /* extend right border */
int i;
- unsigned char *src_ptr1, *src_ptr2;
- unsigned char *dest_ptr1, *dest_ptr2;
+ uint8_t *src_ptr1, *src_ptr2;
+ uint8_t *dest_ptr1, *dest_ptr2;
int linesize;
/* copy the left and right most columns out */
@@ -143,8 +143,8 @@
}
/* note the extension is only for the last row, for intra prediction purpose */
-void vp9_extend_mb_row(YV12_BUFFER_CONFIG *ybf, unsigned char *YPtr,
- unsigned char *UPtr, unsigned char *VPtr) {
+void vp9_extend_mb_row(YV12_BUFFER_CONFIG *ybf, uint8_t *YPtr,
+ uint8_t *UPtr, uint8_t *VPtr) {
int i;
YPtr += ybf->y_stride * 14;
« no previous file with comments | « source/libvpx/vp9/common/vp9_extend.h ('k') | source/libvpx/vp9/common/vp9_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698