From 597900a7ec63de3f2e46ebbdf9c4bb301b836568 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Fri, 22 Mar 2013 06:57:44 +0000 Subject: [PATCH] _CRT_SECURE_NO_WARNINGS fix for windows BUG=204 TEST=none Review URL: https://webrtc-codereview.appspot.com/1227004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@616 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- util/psnr_main.cc | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.chromium b/README.chromium index 18d511886..4949db590 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 615 +Version: 616 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 653f70018..65e89b653 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 615 +#define LIBYUV_VERSION 616 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/util/psnr_main.cc b/util/psnr_main.cc index 1658ef178..9bcb3762b 100644 --- a/util/psnr_main.cc +++ b/util/psnr_main.cc @@ -18,7 +18,9 @@ // // Usage: psnr org_seq rec_seq -s width height [-skip skip_org skip_rec] +#ifndef _CRT_SECURE_NO_WARNINGS #define _CRT_SECURE_NO_WARNINGS +#endif #include #include