Go to the documentation of this file.
37 int motion_x,
int motion_y,
int motion_scale,
42 mb->motion_x = motion_x;
43 mb->motion_y = motion_y;
44 mb->motion_scale = motion_scale;
47 mb->src_x = dst_x + motion_x / motion_scale;
48 mb->src_y = dst_y + motion_y / motion_scale;
49 mb->source = direction ? 1 : -1;
56 int y,
int h,
int picture_structure,
59 const int field_pic = picture_structure !=
PICT_FRAME;
97 y, picture_structure,
h);
100 #define HAS_MV_EXT(mb_type, flags, dir) ((mb_type) & flags[(dir)])
123 else if (!
HAS_MV_EXT(mb_type, 1, mb_type_mv_flags))
125 else if (!
HAS_MV_EXT(mb_type, 0, mb_type_mv_flags))
156 const uint32_t *mbtype_table,
157 const int8_t *qscale_table, int16_t (*
const motion_val[2])[2],
158 int mb_width,
int mb_height,
int mb_stride,
int quarter_sample)
165 const int shift = 1 + quarter_sample;
167 const int mv_sample_log2 = is_h264 ? 2 : 1;
168 const int mv_stride = (mb_width << mv_sample_log2) + !is_h264;
169 int mb_x, mb_y, mbcount = 0;
177 for (mb_y = 0; mb_y < mb_height; mb_y++) {
178 for (mb_x = 0; mb_x < mb_width; mb_x++) {
179 int i, direction, mb_type = mbtype_table[mb_x + mb_y * mb_stride];
180 for (direction = 0; direction < 2; direction++) {
181 if (!
HAS_MV_EXT(mb_type, direction, mb_type_mv_flags))
184 for (
i = 0;
i < 4;
i++) {
185 int sx = mb_x * 16 + 4 + 8 * (
i & 1);
186 int sy = mb_y * 16 + 4 + 8 * (
i >> 1);
187 int xy = (mb_x * 2 + (
i & 1) +
188 (mb_y * 2 + (
i >> 1)) * mv_stride) << (mv_sample_log2 - 1);
189 int mx = motion_val[direction][xy][0];
190 int my = motion_val[direction][xy][1];
191 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy,
mx,
my,
scale, direction);
194 for (
i = 0;
i < 2;
i++) {
195 int sx = mb_x * 16 + 8;
196 int sy = mb_y * 16 + 4 + 8 *
i;
197 int xy = (mb_x * 2 + (mb_y * 2 +
i) * mv_stride) << (mv_sample_log2 - 1);
198 int mx = motion_val[direction][xy][0];
199 int my = motion_val[direction][xy][1];
204 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy,
mx,
my,
scale, direction);
207 for (
i = 0;
i < 2;
i++) {
208 int sx = mb_x * 16 + 4 + 8 *
i;
209 int sy = mb_y * 16 + 8;
210 int xy = (mb_x * 2 +
i + mb_y * 2 * mv_stride) << (mv_sample_log2 - 1);
211 int mx = motion_val[direction][xy][0];
212 int my = motion_val[direction][xy][1];
217 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy,
mx,
my,
scale, direction);
220 int sx = mb_x * 16 + 8;
221 int sy = mb_y * 16 + 8;
222 int xy = (mb_x + mb_y * mv_stride) << mv_sample_log2;
223 int mx = motion_val[direction][xy][0];
224 int my = motion_val[direction][xy][1];
225 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy,
mx,
my,
scale, direction);
247 if (avctx->
hwaccel || !mbtype_table)
274 x_step = (mb_width * 16 > 999) ? 8 : 4;
275 for (x = 0; x < mb_width; x += x_step)
280 for (y = 0; y < mb_height; y++) {
282 for (x = 0; x < mb_width; x++) {
284 av_bprintf(&buf,
"%*d ", margin_left - 1, y << 4);
286 av_bprintf(&buf,
"%2d", qscale_table[x + y * mb_stride]);
289 int mb_type = mbtype_table[x + y * mb_stride];
void ff_draw_horiz_band(AVCodecContext *avctx, const AVFrame *cur, const AVFrame *last, int y, int h, int picture_structure, int first_field, int low_delay)
Draw a horizontal band if supported.
const struct AVHWAccel * hwaccel
Hardware accelerator in use.
#define AV_BPRINT_SIZE_UNLIMITED
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
AVFrameSideData * av_frame_new_side_data(AVFrame *frame, enum AVFrameSideDataType type, size_t size)
Add a new side data to a frame.
#define SLICE_FLAG_CODED_ORDER
draw_horiz_band() is called in coded order instead of display
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define SLICE_FLAG_ALLOW_FIELD
allow draw_horiz_band() with field slices (MPEG-2 field pics)
This structure describes decoded (raw) audio or video data.
static char get_type_mv_char(int mb_type, const int mb_type_mv_flags[2])
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t mx
#define HAS_MV_EXT(mb_type, flags, dir)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t my
int slice_flags
slice flags
void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, const uint32_t *mbtype_table, const int8_t *qscale_table, int16_t(*const motion_val[2])[2], int mb_width, int mb_height, int mb_stride, int quarter_sample)
Print debugging info for the given picture.
enum AVPictureType pict_type
Picture type of the frame.
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
static int shift(int a, int b)
#define AV_NUM_DATA_POINTERS
static char get_interlacement_char(int mb_type)
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
#define i(width, name, range_min, range_max)
#define av_malloc_array(a, b)
#define MB_TYPE_BACKWARD_MV
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int64_t frame_num
Frame counter, set by libavcodec.
void av_bprintf(AVBPrint *buf, const char *fmt,...)
void(* draw_horiz_band)(struct AVCodecContext *s, const AVFrame *src, int offset[AV_NUM_DATA_POINTERS], int y, int type, int height)
If non NULL, 'draw_horiz_band' is called by the libavcodec decoder to draw a horizontal band.
main external API structure.
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
int export_side_data
Bit set of AV_CODEC_EXPORT_DATA_* flags, which affects the kind of metadata exported in frame,...
#define AV_CODEC_EXPORT_DATA_MVS
Export motion vectors through frame side data.
Structure to hold side data for an AVFrame.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
static void scale(int *out, const int *in, const int w, const int h, const int shift)
static int add_mb(AVMotionVector *mb, uint32_t mb_type, int dst_x, int dst_y, int motion_x, int motion_y, int motion_scale, int direction)
@ AV_FRAME_DATA_MOTION_VECTORS
Motion vectors exported by some codecs (on demand through the export_mvs flag set in the libavcodec A...
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
static char get_segmentation_char(int mb_type)
static int first_field(const struct video_data *s)
#define MB_TYPE_FORWARD_MV