Searched refs:AVMotionVector (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
H A D | motion_vector.h | 24 typedef struct AVMotionVector { struct 55 } AVMotionVector; typedef
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpegutils.c | 32 static int add_mb(AVMotionVector *mb, uint32_t mb_type, in add_mb() 117 AVMotionVector *mvs = av_malloc_array(mb_width * mb_height, 2 * 4 * sizeof(AVMotionVector)); in ff_print_debug_info2() 179 sd = av_frame_new_side_data(pict, AV_FRAME_DATA_MOTION_VECTORS, mbcount * sizeof(AVMotionVector)); in ff_print_debug_info2() 184 memcpy(sd->data, mvs, mbcount * sizeof(AVMotionVector)); in ff_print_debug_info2()
|
H A D | snowdec.c | 90 AVMotionVector *avmv = s->avmv + s->avmv_index; in predict_slice_buffered() 494 res = av_size_mult(s->b_width * s->b_height, sizeof(AVMotionVector) << (s->block_max_depth*2), &size); in decode_frame() 625 sd = av_frame_new_side_data(picture, AV_FRAME_DATA_MOTION_VECTORS, s->avmv_index * sizeof(AVMotionVector)); in decode_frame() 628 memcpy(sd->data, s->avmv, s->avmv_index * sizeof(AVMotionVector)); in decode_frame()
|
H A D | snow.h | 190 AVMotionVector *avmv;
|
/third_party/ffmpeg/doc/examples/ |
H A D | extract_mvs.c | 61 const AVMotionVector *mvs = (const AVMotionVector *)sd->data; in decode_packet() 63 const AVMotionVector *mv = &mvs[i]; in decode_packet()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_mestimate.c | 108 static void add_mv_data(AVMotionVector *mv, int mb_size, in add_mv_data() 129 add_mv_data(((AVMotionVector *) sd->data) + mv_count++, me_ctx->mb_size, x_mb, y_mb, mv[0], mv[1], dir);\ 177 sd = av_frame_new_side_data(out, AV_FRAME_DATA_MOTION_VECTORS, 2 * s->b_count * sizeof(AVMotionVector)); in filter_frame() 251 add_mv_data(((AVMotionVector *) sd->data) + mv_count++, me_ctx->mb_size, x_mb, y_mb, mv[0], mv[1], dir); in filter_frame() 323 add_mv_data(((AVMotionVector *) sd->data) + mv_count++, s->mb_size, x_mb, y_mb, mv[0], mv[1], dir); in filter_frame()
|
H A D | vf_codecview.c | 282 const AVMotionVector *mvs = (const AVMotionVector *)sd->data; in filter_frame() 288 const AVMotionVector *mv = &mvs[i]; in filter_frame()
|
Completed in 6 milliseconds