Go to the documentation of this file.
35 int motion_x,
int motion_y,
int motion_scale,
40 mb->motion_x = motion_x;
41 mb->motion_y = motion_y;
42 mb->motion_scale = motion_scale;
45 mb->src_x = dst_x + motion_x / motion_scale;
46 mb->src_y = dst_y + motion_y / motion_scale;
47 mb->source = direction ? 1 : -1;
54 int y,
int h,
int picture_structure,
57 const int field_pic = picture_structure !=
PICT_FRAME;
90 int vshift =
desc->log2_chroma_h;
94 offset[2] = (y >> vshift) *
src->linesize[1];
102 y, picture_structure,
h);
159 const uint8_t *mbskip_table,
const uint32_t *mbtype_table,
160 const int8_t *qscale_table, int16_t (*
const motion_val[2])[2],
161 int mb_width,
int mb_height,
int mb_stride,
int quarter_sample)
164 const int shift = 1 + quarter_sample;
167 const int mv_stride = (mb_width << mv_sample_log2) +
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++) {
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)
256 for (y = 0; y < mb_height; y++) {
257 for (x = 0; x < mb_width; x++) {
259 int count = mbskip_table ? mbskip_table[x + y * mb_stride] : 0;
266 qscale_table[x + y * mb_stride]);
269 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.
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.
const struct AVCodec * codec
#define USES_LIST(a, list)
static av_always_inline float scale(float x, float s)
#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 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(* 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.
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...
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.