Go to the documentation of this file.
36 int motion_x,
int motion_y,
int motion_scale,
41 mb->motion_x = motion_x;
42 mb->motion_y = motion_y;
43 mb->motion_scale = motion_scale;
46 mb->src_x = dst_x + motion_x / motion_scale;
47 mb->src_y = dst_y + motion_y / motion_scale;
48 mb->source = direction ? 1 : -1;
55 int y,
int h,
int picture_structure,
58 const int field_pic = picture_structure !=
PICT_FRAME;
91 int vshift =
desc->log2_chroma_h;
95 offset[2] = (y >> vshift) *
src->linesize[1];
103 y, picture_structure,
h);
160 const uint8_t *mbskip_table,
const uint32_t *mbtype_table,
161 const int8_t *qscale_table, int16_t (*
const motion_val[2])[2],
162 int mb_width,
int mb_height,
int mb_stride,
int quarter_sample)
165 const int shift = 1 + quarter_sample;
168 const int mv_stride = (mb_width << mv_sample_log2) +
170 int mb_x, mb_y, mbcount = 0;
178 for (mb_y = 0; mb_y < mb_height; mb_y++) {
179 for (mb_x = 0; mb_x < mb_width; mb_x++) {
180 int i, direction, mb_type = mbtype_table[mb_x + mb_y * mb_stride];
181 for (direction = 0; direction < 2; direction++) {
185 for (
i = 0;
i < 4;
i++) {
186 int sx = mb_x * 16 + 4 + 8 * (
i & 1);
187 int sy = mb_y * 16 + 4 + 8 * (
i >> 1);
188 int xy = (mb_x * 2 + (
i & 1) +
189 (mb_y * 2 + (
i >> 1)) * mv_stride) << (mv_sample_log2 - 1);
190 int mx = motion_val[direction][xy][0];
191 int my = motion_val[direction][xy][1];
192 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy, mx, my,
scale, direction);
195 for (
i = 0;
i < 2;
i++) {
196 int sx = mb_x * 16 + 8;
197 int sy = mb_y * 16 + 4 + 8 *
i;
198 int xy = (mb_x * 2 + (mb_y * 2 +
i) * mv_stride) << (mv_sample_log2 - 1);
199 int mx = motion_val[direction][xy][0];
200 int my = motion_val[direction][xy][1];
205 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy, mx, my,
scale, direction);
208 for (
i = 0;
i < 2;
i++) {
209 int sx = mb_x * 16 + 4 + 8 *
i;
210 int sy = mb_y * 16 + 8;
211 int xy = (mb_x * 2 +
i + mb_y * 2 * mv_stride) << (mv_sample_log2 - 1);
212 int mx = motion_val[direction][xy][0];
213 int my = motion_val[direction][xy][1];
218 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy, mx, my,
scale, direction);
221 int sx = mb_x * 16 + 8;
222 int sy = mb_y * 16 + 8;
223 int xy = (mb_x + mb_y * mv_stride) << mv_sample_log2;
224 int mx = motion_val[direction][xy][0];
225 int my = motion_val[direction][xy][1];
226 mbcount +=
add_mb(mvs + mbcount, mb_type, sx, sy, mx, my,
scale, direction);
248 if (avctx->
hwaccel || !mbtype_table)
277 x_step = (mb_width * 16 > 999) ? 8 : 4;
278 for (x = 0; x < mb_width; x += x_step)
283 for (y = 0; y < mb_height; y++) {
285 for (x = 0; x < mb_width; x++) {
289 int count = mbskip_table ? mbskip_table[x + y * mb_stride] : 0;
298 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.
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
const struct AVCodec * codec
#define USES_LIST(a, list)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
int slice_flags
slice flags
static char get_type_mv_char(int mb_type)
enum AVPictureType pict_type
Picture type of the frame.
static void scale(int *out, const int *in, const int w, const int h, const int shift)
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)
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 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)
void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, const uint8_t *mbskip_table, 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.