MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ir2_get_code

Function ir2_get_code

libavcodec/indeo2.c:43–46  ·  view source on GitHub ↗

Indeo 2 codes are in range 0x01..0x7F and 0x81..0x90 */

Source from the content-addressed store, hash-verified

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

Callers 2

ir2_decode_planeFunction · 0.85
ir2_decode_plane_interFunction · 0.85

Calls 1

get_vlc2Function · 0.85

Tested by

no test coverage detected