[FFmpeg-cvslog] rangecoder: Kill non-compiling disabled cruft
Diego Biurrun
git at videolan.org
Sun Mar 19 14:46:55 EET 2017
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Aug 2 12:02:21 2016 +0200| [e4d5b55193109d08be47c42d320334546c006b51] | committer: Diego Biurrun
rangecoder: Kill non-compiling disabled cruft
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e4d5b55193109d08be47c42d320334546c006b51
---
libavcodec/rangecoder.h | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/libavcodec/rangecoder.h b/libavcodec/rangecoder.h
index 4c88169..2ead446 100644
--- a/libavcodec/rangecoder.h
+++ b/libavcodec/rangecoder.h
@@ -117,7 +117,6 @@ static inline int get_rac(RangeCoder *c, uint8_t *const state)
int range1 = (c->range * (*state)) >> 8;
c->range -= range1;
-#if 1
if (c->low < c->range) {
*state = c->zero_state[*state];
refill(c);
@@ -129,19 +128,6 @@ static inline int get_rac(RangeCoder *c, uint8_t *const state)
refill(c);
return 1;
}
-#else
- {
- int one_mask 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;
-#endif
}
#endif /* AVCODEC_RANGECODER_H */
More information about the ffmpeg-cvslog
mailing list