COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user