From 115329f16062074e11ccf3b89ead6176606c9696 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 17 Dec 2005 18:14:38 +0000 Subject: COSMETICS: Remove all trailing whitespace. Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rangecoder.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libavcodec/rangecoder.h') diff --git a/libavcodec/rangecoder.h b/libavcodec/rangecoder.h index 6fd7b43bfb..31bf996126 100644 --- a/libavcodec/rangecoder.h +++ b/libavcodec/rangecoder.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ - + /** * @file rangecoder.h * Range coder. @@ -58,7 +58,7 @@ static inline void renorm_encoder(RangeCoder *c){ }else{ c->outstanding_count++; } - + c->low = (c->low & 0xFF)<<8; c->range <<= 8; } @@ -78,7 +78,7 @@ static inline void put_rac(RangeCoder *c, uint8_t * const state, int bit){ c->range = range1; *state= c->one_state[*state]; } - + renorm_encoder(c); } @@ -95,7 +95,7 @@ static inline void refill(RangeCoder *c){ static inline int get_rac(RangeCoder *c, uint8_t * const state){ int range1= (c->range * (*state)) >> 8; int attribute_unused one_mask; - + c->range -= range1; #if 1 if(c->low < c->range){ @@ -111,12 +111,12 @@ static inline int get_rac(RangeCoder *c, uint8_t * const state){ } #else one_mask= (c->range - c->low-1)>>31; - + c->low -= c->range & one_mask; c->range += (range1 - c->range) & one_mask; - + *state= c->zero_state[(*state) + (256&one_mask)]; - + refill(c); return one_mask&1; -- cgit v1.2.3