AVVideoBlockParams

Data structure for storing block-level encoding information. It is allocated as a part of AVVideoEncParams and should be retrieved with av_video_enc_params_block().

sizeof(AVVideoBlockParams) is not a part of the ABI and new fields may be added to it.

extern (C) @nogc nothrow
struct AVVideoBlockParams {}

Members

Variables

delta_qp
int delta_qp;

Difference between this block's final quantization parameter and the corresponding per-frame value.

h
int h;
Undocumented in source.
src_x
int src_x;

Distance in luma pixels from the top-left corner of the visible frame to the top-left corner of the block. Can be negative if top/right padding is present on the coded frame.

src_y
int src_y;
Undocumented in source.
w
int w;

Width and height of the block in luma pixels.

Meta