Go to the documentation of this file.
31 #define MAX_REFERENCES 8
40 VAProcFilterCapDeinterlacing
57 #define D(name) case VAProcDeinterlacing ## name: return #name
73 for (
i = 0;
i <
ctx->queue_count;
i++)
85 VAProcFilterParameterBufferDeinterlacing params;
88 ctx->nb_deint_caps = VAProcDeinterlacingCount;
89 vas = vaQueryVideoProcFilterCaps(vpp_ctx->
hwctx->
display,
91 VAProcFilterDeinterlacing,
94 if (vas != VA_STATUS_SUCCESS) {
96 "caps: %d (%s).\n", vas, vaErrorStr(vas));
100 if (
ctx->mode == VAProcDeinterlacingNone) {
101 for (
i = 0;
i <
ctx->nb_deint_caps;
i++) {
102 if (
ctx->deint_caps[
i].type >
ctx->mode)
103 ctx->mode =
ctx->deint_caps[
i].type;
106 "deinterlacing mode.\n",
ctx->mode,
109 for (
i = 0;
i <
ctx->nb_deint_caps;
i++) {
110 if (
ctx->deint_caps[
i].type ==
ctx->mode)
113 if (
i >=
ctx->nb_deint_caps) {
115 "not supported.\n",
ctx->mode,
121 params.type = VAProcFilterDeinterlacing;
122 params.algorithm =
ctx->mode;
126 VAProcFilterParameterBufferType,
133 vas = vaQueryVideoProcPipelineCaps(vpp_ctx->
hwctx->
display,
136 &
ctx->pipeline_caps);
137 if (vas != VA_STATUS_SUCCESS) {
139 "caps: %d (%s).\n", vas, vaErrorStr(vas));
143 ctx->extra_delay_for_timestamps =
ctx->field_rate == 2 &&
144 ctx->pipeline_caps.num_backward_references == 0;
146 ctx->queue_depth =
ctx->pipeline_caps.num_backward_references +
147 ctx->pipeline_caps.num_forward_references +
148 ctx->extra_delay_for_timestamps + 1;
151 "references (%u forward, %u back).\n",
152 ctx->pipeline_caps.num_forward_references,
153 ctx->pipeline_caps.num_backward_references);
185 VASurfaceID input_surface;
188 VAProcPipelineParameterBuffer params;
189 VAProcFilterParameterBufferDeinterlacing *filter_params;
191 void *filter_params_addr =
NULL;
192 int err,
i,
field, current_frame_index;
200 if (
ctx->queue_count <
ctx->queue_depth) {
201 ctx->frame_queue[
ctx->queue_count++] = input_frame;
202 if (
ctx->queue_count <
ctx->queue_depth) {
208 for (
i = 0;
i + 1 <
ctx->queue_count;
i++)
209 ctx->frame_queue[
i] =
ctx->frame_queue[
i + 1];
210 ctx->frame_queue[
i] = input_frame;
213 current_frame_index =
ctx->pipeline_caps.num_forward_references;
215 input_frame =
ctx->frame_queue[current_frame_index];
219 input_surface = (VASurfaceID)(uintptr_t)input_frame->
data[3];
220 for (
i = 0;
i <
ctx->pipeline_caps.num_forward_references;
i++)
221 forward_references[
i] = (VASurfaceID)(uintptr_t)
222 ctx->frame_queue[current_frame_index -
i - 1]->data[3];
223 for (
i = 0;
i <
ctx->pipeline_caps.num_backward_references;
i++)
224 backward_references[
i] = (VASurfaceID)(uintptr_t)
225 ctx->frame_queue[current_frame_index +
i + 1]->data[3];
228 "deinterlace input.\n", input_surface);
230 for (
i = 0;
i <
ctx->pipeline_caps.num_backward_references;
i++)
234 for (
i = 0;
i <
ctx->pipeline_caps.num_forward_references;
i++)
257 &filter_params_addr);
258 if (vas != VA_STATUS_SUCCESS) {
260 "buffer: %d (%s).\n", vas, vaErrorStr(vas));
264 filter_params = filter_params_addr;
265 filter_params->flags = 0;
267 filter_params->flags |=
field ? VA_DEINTERLACING_BOTTOM_FIELD : 0;
269 filter_params->flags |= VA_DEINTERLACING_BOTTOM_FIELD_FIRST;
270 filter_params->flags |=
field ? 0 : VA_DEINTERLACING_BOTTOM_FIELD;
272 filter_params_addr =
NULL;
274 if (vas != VA_STATUS_SUCCESS)
276 "buffer: %d (%s).\n", vas, vaErrorStr(vas));
279 params.num_filters = 1;
281 params.forward_references = forward_references;
282 params.num_forward_references =
283 ctx->pipeline_caps.num_forward_references;
284 params.backward_references = backward_references;
285 params.num_backward_references =
286 ctx->pipeline_caps.num_backward_references;
289 params.filters =
NULL;
290 params.num_filters = 0;
297 if (
ctx->field_rate == 2) {
304 ctx->frame_queue[current_frame_index + 1]->pts;
317 ctx->prev_pts = input_frame->
pts;
322 if (filter_params_addr)
359 #define OFFSET(x) offsetof(DeintVAAPIContext, x)
360 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM)
362 {
"mode",
"Deinterlacing mode",
364 VAProcDeinterlacingNone, VAProcDeinterlacingCount - 1,
FLAGS,
"mode" },
365 {
"default",
"Use the highest-numbered (and therefore possibly most advanced) deinterlacing algorithm",
367 {
"bob",
"Use the bob deinterlacing algorithm",
369 {
"weave",
"Use the weave deinterlacing algorithm",
371 {
"motion_adaptive",
"Use the motion adaptive deinterlacing algorithm",
373 {
"motion_compensated",
"Use the motion compensated deinterlacing algorithm",
376 {
"rate",
"Generate output at frame rate or field rate",
378 {
"frame",
"Output at frame rate (one frame of output for each field-pair)",
380 {
"field",
"Output at field rate (one frame of output for each field)",
383 {
"auto",
"Only deinterlace fields, passing frames through unchanged",
415 .
name =
"deinterlace_vaapi",
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
void ff_vaapi_vpp_pipeline_uninit(AVFilterContext *avctx)
void ff_vaapi_vpp_ctx_init(AVFilterContext *avctx)
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
int ff_vaapi_vpp_render_picture(AVFilterContext *avctx, VAProcPipelineParameterBuffer *params, AVFrame *output_frame)
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
#define AVERROR_EOF
End of file.
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
static int deint_vaapi_config_output(AVFilterLink *outlink)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
static void deint_vaapi_pipeline_uninit(AVFilterContext *avctx)
static av_cold int deint_vaapi_init(AVFilterContext *avctx)
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
int top_field_first
If the content is interlaced, is top field displayed first.
#define FILTER_QUERY_FUNC(func)
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
AVFrame * frame_queue[MAX_REFERENCES]
#define AV_LOG_VERBOSE
Detailed information.
VADisplay display
The VADisplay handle, to be filled by the user.
const char * name
Filter name.
A link between two filters.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int(* build_filter_params)(AVFilterContext *avctx)
void * priv
private data for use by the filter
static const char * deint_vaapi_mode_name(int mode)
A filter pad used for either input or output.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int flags
Flags modifying the (de)muxer behaviour.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable; if left to 0/0,...
const AVFilter ff_vf_deinterlace_vaapi
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
enum AVPixelFormat output_format
int ff_vaapi_vpp_make_param_buffers(AVFilterContext *avctx, int type, const void *data, size_t size, int count)
VAProcFilterCapDeinterlacing deint_caps[VAProcDeinterlacingCount]
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 field
AVVAAPIDeviceContext * hwctx
static const AVFilterPad deint_vaapi_outputs[]
#define FILTER_INPUTS(array)
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a link
static int deint_vaapi_request_frame(AVFilterLink *link)
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
static const AVClass deint_vaapi_class
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Rational number (pair of numerator and denominator).
AVFilterLink ** inputs
array of pointers to input links
const char * av_default_item_name(void *ptr)
Return the context name.
int extra_delay_for_timestamps
static int deint_vaapi_build_filter_params(AVFilterContext *avctx)
int ff_vaapi_vpp_config_input(AVFilterLink *inlink)
void ff_vaapi_vpp_ctx_uninit(AVFilterContext *avctx)
int ff_vaapi_vpp_query_formats(AVFilterContext *avctx)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static const AVOption deint_vaapi_options[]
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
AVFilterContext * src
source filter
static int output_frame(H264Context *h, AVFrame *dst, H264Picture *srcp)
int interlaced_frame
The content of the picture is interlaced.
#define i(width, name, range_min, range_max)
VABufferID filter_buffers[VAProcFilterCount]
const char * name
Pad name.
VAProcPipelineCaps pipeline_caps
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
int ff_vaapi_vpp_config_output(AVFilterLink *outlink)
void(* pipeline_uninit)(AVFilterContext *avctx)
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
#define FILTER_OUTPUTS(array)
static int deint_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
static av_cold int uninit(AVCodecContext *avctx)
static const AVFilterPad deint_vaapi_inputs[]
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
int ff_vaapi_vpp_init_params(AVFilterContext *avctx, VAProcPipelineParameterBuffer *params, const AVFrame *input_frame, AVFrame *output_frame)
AVFilterLink ** outputs
array of pointers to output links