Commit 11404545 authored by fbarchard@google.com's avatar fbarchard@google.com

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
parent a18ba50d
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 730 Version: 731
License: BSD License: BSD
License File: LICENSE License File: LICENSE
......
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 730 #define LIBYUV_VERSION 731
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
...@@ -61,7 +61,7 @@ static __inline uint32 Abs(int32 v) { ...@@ -61,7 +61,7 @@ static __inline uint32 Abs(int32 v) {
// floating point reciprocal. // floating point reciprocal.
extern const float kRecipTable[4097] = { 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, 10922.666992f, 9362.286133f, 8192.000000f, 7281.777832f, 6553.600098f,
5957.818359f, 5461.333496f, 5041.230957f, 4681.143066f, 4369.066895f, 5957.818359f, 5461.333496f, 5041.230957f, 4681.143066f, 4369.066895f,
4096.000000f, 3855.058838f, 3640.888916f, 3449.263184f, 3276.800049f, 4096.000000f, 3855.058838f, 3640.888916f, 3449.263184f, 3276.800049f,
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include "./fixed_math.h" // For FixedDiv
#include "libyuv/cpu_id.h" #include "libyuv/cpu_id.h"
#include "libyuv/planar_functions.h" // For CopyPlane #include "libyuv/planar_functions.h" // For CopyPlane
#include "libyuv/row.h" #include "libyuv/row.h"
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include "./fixed_math.h" // For FixedDiv
#include "libyuv/cpu_id.h" #include "libyuv/cpu_id.h"
#include "libyuv/planar_functions.h" // For CopyARGB #include "libyuv/planar_functions.h" // For CopyARGB
#include "libyuv/row.h" #include "libyuv/row.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment