add f to float constant

BUG=none
TEST=none
R=johannkoenig@google.com

Review URL: https://webrtc-codereview.appspot.com/1671005

git-svn-id: http://libyuv.googlecode.com/svn/trunk@731 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2013-06-17 23:23:51 +00:00
parent a18ba50d23
commit 1140454596
5 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 730
Version: 731
License: BSD
License File: LICENSE

View File

@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 730
#define LIBYUV_VERSION 731
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT

View File

@ -61,7 +61,7 @@ static __inline uint32 Abs(int32 v) {
// floating point reciprocal.
extern const float kRecipTable[4097] = {
0.f, 65536.f, 32768., 21845.333984f, 16384.000000f, 13107.200195f,
0.f, 65536.f, 32768.f, 21845.333984f, 16384.000000f, 13107.200195f,
10922.666992f, 9362.286133f, 8192.000000f, 7281.777832f, 6553.600098f,
5957.818359f, 5461.333496f, 5041.230957f, 4681.143066f, 4369.066895f,
4096.000000f, 3855.058838f, 3640.888916f, 3449.263184f, 3276.800049f,

View File

@ -13,7 +13,6 @@
#include <assert.h>
#include <string.h>
#include "./fixed_math.h" // For FixedDiv
#include "libyuv/cpu_id.h"
#include "libyuv/planar_functions.h" // For CopyPlane
#include "libyuv/row.h"

View File

@ -13,7 +13,6 @@
#include <assert.h>
#include <string.h>
#include "./fixed_math.h" // For FixedDiv
#include "libyuv/cpu_id.h"
#include "libyuv/planar_functions.h" // For CopyARGB
#include "libyuv/row.h"