diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
commit | 115329f16062074e11ccf3b89ead6176606c9696 (patch) | |
tree | e98aa993905a702688bf821737ab9a443969fc28 /libavutil/common.h | |
parent | d76319b1ab716320f6e6a4d690b85fe4504ebd5b (diff) | |
download | ffmpeg-115329f16062074e11ccf3b89ead6176606c9696.tar.gz |
COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index 5b2729cf9b..6b05997697 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -171,8 +171,8 @@ typedef uint64_t uint_fast64_t; #endif #if defined(CONFIG_OS2) || defined(CONFIG_SUNOS) -static inline float floorf(float f) { - return floor(f); +static inline float floorf(float f) { + return floor(f); } #endif @@ -311,7 +311,7 @@ extern const uint32_t inverse[256]; #else # define FASTDIV(a,b) ((a)/(b)) #endif - + /* define it to include statistics code (useful only for optimizing codec efficiency */ //#define STATS @@ -424,9 +424,9 @@ static inline int ff_sqrt(int a) int ret=0; int s; int ret_sq=0; - + if(a<128) return ff_sqrt_tab[a]; - + for(s=15; s>=0; s--){ int b= ret_sq + (1<<(s*2)) + (ret<<s)*2; if(b<=a){ @@ -544,7 +544,7 @@ tend= read_time();\ }\ } #else -#define START_TIMER +#define START_TIMER #define STOP_TIMER(id) {} #endif |