Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */
| 41 | |
| 42 | /* Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */ |
| 43 | static inline int ir2_get_code(GetBitContext *gb) |
| 44 | { |
| 45 | return get_vlc2(gb, ir2_vlc.table, CODE_VLC_BITS, 1) + 1; |
| 46 | } |
| 47 | |
| 48 | static int ir2_decode_plane(Ir2Context *ctx, int width, int height, uint8_t *dst, int stride, |
| 49 | const uint8_t *table) |
no test coverage detected