/third_party/ffmpeg/libavfilter/ |
D | vf_codecview.c | 52 unsigned mv_type; member 67 …{ "mv_type", "set motion vectors type", OFFSET(mv_type), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, … 68 …{ "mvt", "set motion vectors type", OFFSET(mv_type), AV_OPT_TYPE_FLAGS, {.i64=0}, 0, INT_MAX, … 253 if (s->mv || s->mv_type) { in filter_frame() 266 if (s->mv_type) { in filter_frame() 267 const int is_fp = direction == 0 && (s->mv_type & MV_TYPE_FOR); in filter_frame() 268 const int is_bp = direction == 1 && (s->mv_type & MV_TYPE_BACK); in filter_frame()
|
/third_party/ffmpeg/libavcodec/ |
D | mpeg4video.c | 129 s->mv_type = MV_TYPE_8X8; in ff_mpeg4_set_direct_mv() 134 s->mv_type = MV_TYPE_FIELD; in ff_mpeg4_set_direct_mv() 177 s->mv_type = MV_TYPE_16X16; in ff_mpeg4_set_direct_mv() 179 s->mv_type = MV_TYPE_8X8; in ff_mpeg4_set_direct_mv()
|
D | mpeg_er.c | 62 static void mpeg_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type, in mpeg_er_decode_mb() argument 69 s->mv_type = mv_type; in mpeg_er_decode_mb()
|
D | mpegvideo_xvmc.c | 234 switch(s->mv_type) { in ff_xvmc_decode_mb() 278 if (s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8) { in ff_xvmc_decode_mb()
|
D | h263.h | 139 const int offset= (s->mv_type==MV_TYPE_16X16 ? 0 : 16) + (s->dquant ? 8 : 0); in get_p_cbp() 166 if ((motion_x | motion_y | s->dquant) == 0 && s->mv_type==MV_TYPE_16X16){ in get_p_cbp()
|
D | h263.c | 62 if(s->mv_type != MV_TYPE_8X8){ in ff_h263_update_motion_val() 67 } else if (s->mv_type == MV_TYPE_16X16) { in ff_h263_update_motion_val() 97 if (s->mv_type == MV_TYPE_8X8) in ff_h263_update_motion_val()
|
D | error_resilience.h | 86 void (*decode_mb)(void *opaque, int ref, int mv_dir, int mv_type,
|
D | mpegvideo_enc.c | 2275 if (s->mv_type == MV_TYPE_8X8) in encode_mb_internal() 2677 d->mv_type= s->mv_type; in copy_context_after_encode() 3181 s->mv_type = MV_TYPE_16X16; in encode_thread() 3190 s->mv_type = MV_TYPE_FIELD; in encode_thread() 3202 s->mv_type = MV_TYPE_16X16; in encode_thread() 3211 s->mv_type = MV_TYPE_8X8; in encode_thread() 3222 s->mv_type = MV_TYPE_16X16; in encode_thread() 3231 s->mv_type = MV_TYPE_16X16; in encode_thread() 3240 s->mv_type = MV_TYPE_16X16; in encode_thread() 3251 s->mv_type = MV_TYPE_FIELD; in encode_thread() [all …]
|
D | ituh263dec.c | 672 s->mv_type = MV_TYPE_8X8; in set_direct_mv() 690 s->mv_type = MV_TYPE_8X8; in set_direct_mv() 714 s->mv_type = MV_TYPE_16X16; in ff_h263_decode_mb() 755 s->mv_type = MV_TYPE_16X16; in ff_h263_decode_mb() 779 s->mv_type = MV_TYPE_8X8; in ff_h263_decode_mb() 860 s->mv_type= MV_TYPE_16X16; in ff_h263_decode_mb()
|
D | msmpeg4dec.c | 115 s->mv_type = MV_TYPE_16X16; in msmpeg4v12_decode_mb() 165 s->mv_type = MV_TYPE_16X16; in msmpeg4v12_decode_mb() 220 s->mv_type = MV_TYPE_16X16; in msmpeg4v34_decode_mb() 260 s->mv_type = MV_TYPE_16X16; in msmpeg4v34_decode_mb()
|
D | mpeg4videoenc.c | 553 put_bits(&s->pb, 1, s->mv_type == MV_TYPE_FIELD); in ff_mpeg4_encode_mb() 566 if (s->mv_type != MV_TYPE_FIELD) { in ff_mpeg4_encode_mb() 634 s->mv_type == MV_TYPE_16X16) { in ff_mpeg4_encode_mb() 702 if (s->mv_type == MV_TYPE_16X16) { in ff_mpeg4_encode_mb() 729 } else if (s->mv_type == MV_TYPE_FIELD) { in ff_mpeg4_encode_mb() 764 av_assert2(s->mv_type == MV_TYPE_8X8); in ff_mpeg4_encode_mb()
|
D | mpeg12enc.c | 768 if (cbp == 0 && !first_mb && s->mv_type == MV_TYPE_16X16 && in mpeg1_encode_mb_internal() 822 if (s->mv_type == MV_TYPE_16X16) { in mpeg1_encode_mb_internal() 871 av_assert2(!s->frame_pred_frame_dct && s->mv_type == MV_TYPE_FIELD); in mpeg1_encode_mb_internal() 913 if (s->mv_type == MV_TYPE_16X16) { in mpeg1_encode_mb_internal() 958 av_assert2(s->mv_type == MV_TYPE_FIELD); in mpeg1_encode_mb_internal()
|
D | mpeg12dec.c | 799 s->mv_type = MV_TYPE_16X16; in mpeg_decode_mb() 801 s->mv_type = MV_TYPE_FIELD; in mpeg_decode_mb() 837 s->mv_type = MV_TYPE_16X16; in mpeg_decode_mb() 860 s->mv_type = MV_TYPE_16X8; in mpeg_decode_mb() 878 s->mv_type = MV_TYPE_FIELD; in mpeg_decode_mb() 920 s->mv_type = MV_TYPE_DMV; in mpeg_decode_mb() 1821 } else if (s->mv_type == MV_TYPE_16X16 || in mpeg_decode_slice() 1822 (s->mv_type == MV_TYPE_FIELD && field_pic)) { in mpeg_decode_slice() 1948 s->mv_type = MV_TYPE_16X16; in mpeg_decode_slice() 1950 s->mv_type = MV_TYPE_FIELD; in mpeg_decode_slice()
|
D | h261dec.c | 207 s->mv_type = MV_TYPE_16X16; in h261_decode_mb_skipped() 438 s->mv_type = MV_TYPE_16X16; in h261_decode_mb()
|
D | wmv2dec.c | 394 s->mv_type = MV_TYPE_16X16; in ff_wmv2_decode_mb() 449 s->mv_type = MV_TYPE_16X16; in ff_wmv2_decode_mb()
|
D | mpeg4videodec.c | 1341 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_partitioned_mb() 1357 s->mv_type = MV_TYPE_8X8; in mpeg4_decode_partitioned_mb() 1359 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_partitioned_mb() 1418 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_mb() 1480 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_mb() 1490 s->mv_type = MV_TYPE_FIELD; in mpeg4_decode_mb() 1512 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_mb() 1528 s->mv_type = MV_TYPE_8X8; in mpeg4_decode_mb() 1572 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_mb() 1629 s->mv_type = MV_TYPE_16X16; in mpeg4_decode_mb() [all …]
|
D | ituh263enc.c | 461 if ((cbp | motion_x | motion_y | s->dquant | (s->mv_type - MV_TYPE_16X16)) == 0) { in ff_h263_encode_mb() 479 if(s->mv_type==MV_TYPE_16X16){ in ff_h263_encode_mb()
|
D | error_resilience.c | 1157 int mv_type; in ff_er_frame_end() local 1171 mv_type = MV_TYPE_8X8; in ff_er_frame_end() 1177 mv_type = MV_TYPE_16X16; in ff_er_frame_end() 1183 mv_dir, mv_type, &s->mv, mb_x, mb_y, 0, 0); in ff_er_frame_end()
|
D | motion_est.c | 123 if(s->mv_type==MV_TYPE_8X8){ in cmp_direct_inline() 1406 s->mv_type= MV_TYPE_8X8; in direct_search() 1408 s->mv_type= MV_TYPE_16X16; in direct_search() 1436 if(s->mv_type == MV_TYPE_16X16) break; in direct_search()
|
D | mpegvideo.h | 265 int mv_type; member
|
D | rv10.c | 537 s->mv_type = MV_TYPE_16X16; in rv10_decode_packet()
|
D | h263dec.c | 263 s->mv_type = MV_TYPE_16X16; in decode_slice()
|
D | h264dec.c | 67 static void h264_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type, in h264_er_decode_mb() argument
|
D | mpegvideo_motion.c | 849 switch (s->mv_type) { in mpv_motion_internal()
|
/third_party/libnl/lib/route/cls/ematch/ |
D | meta.c | 28 uint8_t mv_type; member 50 value->mv_type = type; in meta_alloc() 236 switch (v->mv_type) { in dump_value() 292 hdr.left.kind = (m->left->mv_type << 12) & TCF_META_TYPE_MASK; in meta_fill() 296 hdr.right.kind = (m->right->mv_type << 12) & TCF_META_TYPE_MASK; in meta_fill()
|