Searched refs:mv_code (Results 1 – 1 of 1) sorted by relevance
376 uint16_t mv_code = get_vlc2(gb, lc[level].mv_cb.table, CLV_VLC_BITS, 2); in decode_tile_info() local378 if (mv_code != MV_ESC) { in decode_tile_info()379 mv.x = (int8_t)(mv_code & 0xff); in decode_tile_info()380 mv.y = (int8_t)(mv_code >> 8); in decode_tile_info()