Decode n bits (n <= 16) without modelling */
| 287 | |
| 288 | /** Decode n bits (n <= 16) without modelling */ |
| 289 | static inline int range_decode_bits(APEContext * ctx, int n) |
| 290 | { |
| 291 | int sym = range_decode_culshift(ctx, n); |
| 292 | range_decode_update(ctx, 1, sym); |
| 293 | return sym; |
| 294 | } |
| 295 | |
| 296 | |
| 297 | #define MODEL_ELEMENTS 64 |
no test coverage detected