Home
last modified time | relevance | path

Searched refs:mvd_table (Results 1 – 5 of 5) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtph261pay.c225 static const guint16 mvd_table[MVD_LEN][MVD_WID] = { variable
456 if ((code & mvd_table[i][1]) == mvd_table[i][0]) { in decode_mvd()
457 SKIP_BITS (br, mvd_table[i][2]); in decode_mvd()
458 *mvd1 = (gint16) mvd_table[i][3]; in decode_mvd()
459 *mvd2 = (gint16) mvd_table[i][4]; in decode_mvd()
/third_party/ffmpeg/libavcodec/
Dh264dec.c145 av_freep(&h->mvd_table[0]); in ff_h264_free_tables()
146 av_freep(&h->mvd_table[1]); in ff_h264_free_tables()
193 !FF_ALLOCZ_TYPED_ARRAY(h->mvd_table[0], row_mb_num * 8) || in ff_h264_alloc_tables()
194 !FF_ALLOCZ_TYPED_ARRAY(h->mvd_table[1], row_mb_num * 8) || in ff_h264_alloc_tables()
201 h->slice_ctx[0].mvd_table[0] = h->mvd_table[0]; in ff_h264_alloc_tables()
202 h->slice_ctx[0].mvd_table[1] = h->mvd_table[1]; in ff_h264_alloc_tables()
Dh264dec.h320 uint8_t (*mvd_table[2])[2]; member
424 uint8_t (*mvd_table[2])[2]; member
761 uint8_t (*mvd_dst)[2] = &sl->mvd_table[list][FMO ? 8 * sl->mb_xy in write_back_motion_list()
Dh264_slice.c989 sl->mvd_table[0] = h->mvd_table[0] + i * 8 * 2 * h->mb_stride; in h264_slice_header_init()
990 sl->mvd_table[1] = h->mvd_table[1] + i * 8 * 2 * h->mb_stride; in h264_slice_header_init()
Dh264_mvpred.h693 uint8_t(*mvd)[2] = sl->mvd_table[list]; in fill_decode_caches()