From 32ad6e0e12fec058efdf85a5a4b32ed657f27c36 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Tue, 14 Apr 2015 02:50:35 +0000 Subject: [PATCH] Remove unused variable 'I422ToRGB565Row' that breaks osx builds. BUG=426 TESTED=untested Review URL: https://webrtc-codereview.appspot.com/48079004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1368 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/convert_from.cc | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/README.chromium b/README.chromium index a34b15f3b..20b80bcd6 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1366 +Version: 1368 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 1156f3891..b04b86c41 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 1366 +#define LIBYUV_VERSION 1368 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/convert_from.cc b/source/convert_from.cc index f78b54569..31f1ac992 100644 --- a/source/convert_from.cc +++ b/source/convert_from.cc @@ -1025,11 +1025,6 @@ int I420ToRGB565Dither(const uint8* src_y, int src_stride_y, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) { int y; - void (*I422ToRGB565Row)(const uint8* y_buf, - const uint8* u_buf, - const uint8* v_buf, - uint8* rgb_buf, - int width) = I422ToRGB565Row_C; void (*I422ToARGBRow)(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf,