From 9e0f21af0b7a8c715e030b952a24e0060659ab95 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 14 Aug 2014 19:42:48 +0000 Subject: [PATCH] fixes for blank line lint warnings BUG=348 TESTED=cpplint.py --filter=-casting source/*.cc include/libyuv/*.h R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/18139004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1045 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/mjpeg_decoder.h | 1 - include/libyuv/version.h | 2 +- source/row_win.cc | 2 -- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.chromium b/README.chromium index 79a53e503..b88a3e2ea 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1044 +Version: 1045 License: BSD License File: LICENSE diff --git a/include/libyuv/mjpeg_decoder.h b/include/libyuv/mjpeg_decoder.h index 82fd95df2..8423121d1 100644 --- a/include/libyuv/mjpeg_decoder.h +++ b/include/libyuv/mjpeg_decoder.h @@ -153,7 +153,6 @@ class LIBYUV_API MJpegDecoder { int* subsample_x, int* subsample_y, int number_of_components); private: - void AllocOutputBuffers(int num_outbufs); void DestroyOutputBuffers(); diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 73d831889..82f402a96 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 1044 +#define LIBYUV_VERSION 1045 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_win.cc b/source/row_win.cc index 8eb888926..4c69f8159 100644 --- a/source/row_win.cc +++ b/source/row_win.cc @@ -78,7 +78,6 @@ void I422ToARGBRow_SSSE3(const uint8* y_buf, const uint8* v_buf, uint8* dst_argb, int width) { - __m128i xmm0, xmm1, xmm2, xmm3; const __m128i xmm5 = _mm_set1_epi8(-1); const __m128i xmm4 = _mm_setzero_si128(); @@ -132,7 +131,6 @@ void I422ToARGBRow_Unaligned_SSSE3(const uint8* y_buf, const uint8* v_buf, uint8* dst_argb, int width) { - __m128i xmm0, xmm1, xmm2, xmm3; const __m128i xmm5 = _mm_set1_epi8(-1); const __m128i xmm4 = _mm_setzero_si128();