| 198 | } |
| 199 | |
| 200 | static av_always_inline int mp_get_vlc(MotionPixelsContext *mp, GetBitContext *gb) |
| 201 | { |
| 202 | return mp->vlc.table ? get_vlc2(gb, mp->vlc.table, mp->max_codes_bits, 1) |
| 203 | : mp->codes[0].delta; |
| 204 | } |
| 205 | |
| 206 | static void mp_decode_line(MotionPixelsContext *mp, GetBitContext *gb, int y) |
| 207 | { |
no test coverage detected