FFmpeg
vf_deinterlace_qsv.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 /**
20  * @file
21  * deinterlace video filter - QSV
22  */
23 
24 #include <mfx/mfxvideo.h>
25 
26 #include <stdio.h>
27 #include <string.h>
28 
29 #include "libavutil/avstring.h"
30 #include "libavutil/common.h"
31 #include "libavutil/hwcontext.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/pixdesc.h"
37 #include "libavutil/time.h"
38 #include "libavfilter/qsvvpp.h"
39 
40 #include "avfilter.h"
41 #include "formats.h"
42 #include "internal.h"
43 #include "video.h"
44 
45 #define MFX_IMPL_VIA_MASK(impl) (0x0f00 & (impl))
46 
47 enum {
50 };
51 
52 typedef struct QSVDeintContext {
53  const AVClass *class;
54 
56  /* a clone of the main session, used internally for deinterlacing */
57  mfxSession session;
58 
59  mfxMemId *mem_ids;
61 
62  mfxFrameSurface1 **surface_ptrs;
64 
65  mfxExtOpaqueSurfaceAlloc opaque_alloc;
66  mfxExtVPPDeinterlacing deint_conf;
67  mfxExtBuffer *ext_buffers[2];
69 
71 
72  int64_t last_pts;
73 
74  int eof;
75 
76  /* option for Deinterlacing algorithm to be used */
77  int mode;
79 
81 {
82  QSVDeintContext *s = ctx->priv;
83  QSVFrame *cur;
84 
85  if (s->session) {
86  MFXClose(s->session);
87  s->session = NULL;
88  }
89  av_buffer_unref(&s->hw_frames_ctx);
90 
91  cur = s->work_frames;
92  while (cur) {
93  s->work_frames = cur->next;
94  av_frame_free(&cur->frame);
95  av_freep(&cur);
96  cur = s->work_frames;
97  }
98 
99  av_freep(&s->mem_ids);
100  s->nb_mem_ids = 0;
101 
102  av_freep(&s->surface_ptrs);
103  s->nb_surface_ptrs = 0;
104 }
105 
106 static mfxStatus frame_alloc(mfxHDL pthis, mfxFrameAllocRequest *req,
107  mfxFrameAllocResponse *resp)
108 {
109  AVFilterContext *ctx = pthis;
110  QSVDeintContext *s = ctx->priv;
111 
112  if (!(req->Type & MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET) ||
113  !(req->Type & (MFX_MEMTYPE_FROM_VPPIN | MFX_MEMTYPE_FROM_VPPOUT)) ||
114  !(req->Type & MFX_MEMTYPE_EXTERNAL_FRAME))
115  return MFX_ERR_UNSUPPORTED;
116 
117  resp->mids = s->mem_ids;
118  resp->NumFrameActual = s->nb_mem_ids;
119 
120  return MFX_ERR_NONE;
121 }
122 
123 static mfxStatus frame_free(mfxHDL pthis, mfxFrameAllocResponse *resp)
124 {
125  return MFX_ERR_NONE;
126 }
127 
128 static mfxStatus frame_lock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
129 {
130  return MFX_ERR_UNSUPPORTED;
131 }
132 
133 static mfxStatus frame_unlock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
134 {
135  return MFX_ERR_UNSUPPORTED;
136 }
137 
138 static mfxStatus frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl)
139 {
140  mfxHDLPair *pair_dst = (mfxHDLPair*)hdl;
141  mfxHDLPair *pair_src = (mfxHDLPair*)mid;
142 
143  pair_dst->first = pair_src->first;
144 
145  if (pair_src->second != (mfxMemId)MFX_INFINITE)
146  pair_dst->second = pair_src->second;
147  return MFX_ERR_NONE;
148 }
149 
151 {
152 
153  QSVDeintContext *s = ctx->priv;
154  AVHWFramesContext *hw_frames_ctx = (AVHWFramesContext*)s->hw_frames_ctx->data;
155  AVQSVFramesContext *hw_frames_hwctx = hw_frames_ctx->hwctx;
156  AVQSVDeviceContext *device_hwctx = hw_frames_ctx->device_ctx->hwctx;
157 
158  int opaque = !!(hw_frames_hwctx->frame_type & MFX_MEMTYPE_OPAQUE_FRAME);
159 
160  mfxHDL handle = NULL;
161  mfxHandleType handle_type;
162  mfxVersion ver;
163  mfxIMPL impl;
164  mfxVideoParam par;
165  mfxStatus err;
166  int i;
167 
168  /* extract the properties of the "master" session given to us */
169  err = MFXQueryIMPL(device_hwctx->session, &impl);
170  if (err == MFX_ERR_NONE)
171  err = MFXQueryVersion(device_hwctx->session, &ver);
172  if (err != MFX_ERR_NONE) {
173  av_log(ctx, AV_LOG_ERROR, "Error querying the session attributes\n");
174  return AVERROR_UNKNOWN;
175  }
176 
177  if (MFX_IMPL_VIA_VAAPI == MFX_IMPL_VIA_MASK(impl)) {
178  handle_type = MFX_HANDLE_VA_DISPLAY;
179  } else if (MFX_IMPL_VIA_D3D11 == MFX_IMPL_VIA_MASK(impl)) {
180  handle_type = MFX_HANDLE_D3D11_DEVICE;
181  } else if (MFX_IMPL_VIA_D3D9 == MFX_IMPL_VIA_MASK(impl)) {
182  handle_type = MFX_HANDLE_D3D9_DEVICE_MANAGER;
183  } else {
184  av_log(ctx, AV_LOG_ERROR, "Error unsupported handle type\n");
185  return AVERROR_UNKNOWN;
186  }
187 
188  err = MFXVideoCORE_GetHandle(device_hwctx->session, handle_type, &handle);
189  if (err < 0)
190  return ff_qsvvpp_print_error(ctx, err, "Error getting the session handle");
191  else if (err > 0) {
192  ff_qsvvpp_print_warning(ctx, err, "Warning in getting the session handle");
193  return AVERROR_UNKNOWN;
194  }
195 
196  /* create a "slave" session with those same properties, to be used for
197  * actual deinterlacing */
198  err = MFXInit(impl, &ver, &s->session);
199  if (err < 0)
200  return ff_qsvvpp_print_error(ctx, err, "Error initializing a session for deinterlacing");
201  else if (err > 0) {
202  ff_qsvvpp_print_warning(ctx, err, "Warning in session initialization");
203  return AVERROR_UNKNOWN;
204  }
205 
206  if (handle) {
207  err = MFXVideoCORE_SetHandle(s->session, handle_type, handle);
208  if (err != MFX_ERR_NONE)
209  return AVERROR_UNKNOWN;
210  }
211 
212  if (QSV_RUNTIME_VERSION_ATLEAST(ver, 1, 25)) {
213  err = MFXJoinSession(device_hwctx->session, s->session);
214  if (err != MFX_ERR_NONE)
215  return AVERROR_UNKNOWN;
216  }
217 
218  memset(&par, 0, sizeof(par));
219 
220  s->deint_conf.Header.BufferId = MFX_EXTBUFF_VPP_DEINTERLACING;
221  s->deint_conf.Header.BufferSz = sizeof(s->deint_conf);
222  s->deint_conf.Mode = s->mode;
223 
224  s->ext_buffers[s->num_ext_buffers++] = (mfxExtBuffer *)&s->deint_conf;
225 
226  if (opaque) {
227  s->surface_ptrs = av_calloc(hw_frames_hwctx->nb_surfaces,
228  sizeof(*s->surface_ptrs));
229  if (!s->surface_ptrs)
230  return AVERROR(ENOMEM);
231  for (i = 0; i < hw_frames_hwctx->nb_surfaces; i++)
232  s->surface_ptrs[i] = hw_frames_hwctx->surfaces + i;
233  s->nb_surface_ptrs = hw_frames_hwctx->nb_surfaces;
234 
235  s->opaque_alloc.In.Surfaces = s->surface_ptrs;
236  s->opaque_alloc.In.NumSurface = s->nb_surface_ptrs;
237  s->opaque_alloc.In.Type = hw_frames_hwctx->frame_type;
238 
239  s->opaque_alloc.Out = s->opaque_alloc.In;
240 
241  s->opaque_alloc.Header.BufferId = MFX_EXTBUFF_OPAQUE_SURFACE_ALLOCATION;
242  s->opaque_alloc.Header.BufferSz = sizeof(s->opaque_alloc);
243 
244  s->ext_buffers[s->num_ext_buffers++] = (mfxExtBuffer *)&s->opaque_alloc;
245 
246  par.IOPattern = MFX_IOPATTERN_IN_OPAQUE_MEMORY | MFX_IOPATTERN_OUT_OPAQUE_MEMORY;
247  } else {
248  mfxFrameAllocator frame_allocator = {
249  .pthis = ctx,
250  .Alloc = frame_alloc,
251  .Lock = frame_lock,
252  .Unlock = frame_unlock,
253  .GetHDL = frame_get_hdl,
254  .Free = frame_free,
255  };
256 
257  s->mem_ids = av_calloc(hw_frames_hwctx->nb_surfaces,
258  sizeof(*s->mem_ids));
259  if (!s->mem_ids)
260  return AVERROR(ENOMEM);
261  for (i = 0; i < hw_frames_hwctx->nb_surfaces; i++)
262  s->mem_ids[i] = hw_frames_hwctx->surfaces[i].Data.MemId;
263  s->nb_mem_ids = hw_frames_hwctx->nb_surfaces;
264 
265  err = MFXVideoCORE_SetFrameAllocator(s->session, &frame_allocator);
266  if (err != MFX_ERR_NONE)
267  return AVERROR_UNKNOWN;
268 
269  par.IOPattern = MFX_IOPATTERN_IN_VIDEO_MEMORY | MFX_IOPATTERN_OUT_VIDEO_MEMORY;
270  }
271 
272  par.ExtParam = s->ext_buffers;
273  par.NumExtParam = s->num_ext_buffers;
274 
275  par.AsyncDepth = 1; // TODO async
276 
277  par.vpp.In = hw_frames_hwctx->surfaces[0].Info;
278 
279  par.vpp.In.CropW = ctx->inputs[0]->w;
280  par.vpp.In.CropH = ctx->inputs[0]->h;
281 
282  if (ctx->inputs[0]->frame_rate.num) {
283  par.vpp.In.FrameRateExtN = ctx->inputs[0]->frame_rate.num;
284  par.vpp.In.FrameRateExtD = ctx->inputs[0]->frame_rate.den;
285  } else {
286  par.vpp.In.FrameRateExtN = ctx->inputs[0]->time_base.num;
287  par.vpp.In.FrameRateExtD = ctx->inputs[0]->time_base.den;
288  }
289 
290  par.vpp.Out = par.vpp.In;
291 
292  if (ctx->outputs[0]->frame_rate.num) {
293  par.vpp.Out.FrameRateExtN = ctx->outputs[0]->frame_rate.num;
294  par.vpp.Out.FrameRateExtD = ctx->outputs[0]->frame_rate.den;
295  } else {
296  par.vpp.Out.FrameRateExtN = ctx->outputs[0]->time_base.num;
297  par.vpp.Out.FrameRateExtD = ctx->outputs[0]->time_base.den;
298  }
299 
300  /* Print input memory mode */
301  ff_qsvvpp_print_iopattern(ctx, par.IOPattern & 0x0F, "VPP");
302  /* Print output memory mode */
303  ff_qsvvpp_print_iopattern(ctx, par.IOPattern & 0xF0, "VPP");
304  err = MFXVideoVPP_Init(s->session, &par);
305  if (err < 0)
306  return ff_qsvvpp_print_error(ctx, err,
307  "Error opening the VPP for deinterlacing");
308  else if (err > 0) {
310  "Warning in VPP initialization");
311  return AVERROR_UNKNOWN;
312  }
313 
314  return 0;
315 }
316 
318 {
319  AVFilterContext *ctx = outlink->src;
320  AVFilterLink *inlink = ctx->inputs[0];
321  QSVDeintContext *s = ctx->priv;
322  int ret;
323 
325 
326  s->last_pts = AV_NOPTS_VALUE;
327  outlink->frame_rate = av_mul_q(inlink->frame_rate,
328  (AVRational){ 2, 1 });
329  outlink->time_base = av_mul_q(inlink->time_base,
330  (AVRational){ 1, 2 });
331 
332  /* check that we have a hw context */
333  if (!inlink->hw_frames_ctx) {
334  av_log(ctx, AV_LOG_ERROR, "No hw context provided on input\n");
335  return AVERROR(EINVAL);
336  }
337 
338  s->hw_frames_ctx = av_buffer_ref(inlink->hw_frames_ctx);
339  if (!s->hw_frames_ctx)
340  return AVERROR(ENOMEM);
341 
342  av_buffer_unref(&outlink->hw_frames_ctx);
343  outlink->hw_frames_ctx = av_buffer_ref(inlink->hw_frames_ctx);
344  if (!outlink->hw_frames_ctx) {
346  return AVERROR(ENOMEM);
347  }
348 
350  if (ret < 0)
351  return ret;
352 
353 
354  return 0;
355 }
356 
358 {
359  QSVFrame *cur = s->work_frames;
360  while (cur) {
361  if (!cur->surface.Data.Locked) {
362  av_frame_free(&cur->frame);
363  cur->queued = 0;
364  }
365  cur = cur->next;
366  }
367 }
368 
370 {
371  QSVFrame *frame, **last;
372 
374 
375  frame = s->work_frames;
376  last = &s->work_frames;
377  while (frame) {
378  if (!frame->queued) {
379  *f = frame;
380  return 0;
381  }
382 
383  last = &frame->next;
384  frame = frame->next;
385  }
386 
387  frame = av_mallocz(sizeof(*frame));
388  if (!frame)
389  return AVERROR(ENOMEM);
390  *last = frame;
391  *f = frame;
392 
393  return 0;
394 }
395 
397  mfxFrameSurface1 **surface)
398 {
399  QSVDeintContext *s = ctx->priv;
400  QSVFrame *qf;
401  int ret;
402 
403  ret = get_free_frame(s, &qf);
404  if (ret < 0)
405  return ret;
406 
407  qf->frame = frame;
408 
409  qf->surface = *(mfxFrameSurface1*)qf->frame->data[3];
410 
411  qf->surface.Data.Locked = 0;
412  qf->surface.Info.CropW = qf->frame->width;
413  qf->surface.Info.CropH = qf->frame->height;
414 
415  qf->surface.Info.PicStruct = !qf->frame->interlaced_frame ? MFX_PICSTRUCT_PROGRESSIVE :
416  (qf->frame->top_field_first ? MFX_PICSTRUCT_FIELD_TFF :
417  MFX_PICSTRUCT_FIELD_BFF);
418  if (qf->frame->repeat_pict == 1) {
419  qf->surface.Info.PicStruct |= MFX_PICSTRUCT_FIELD_REPEATED;
420  qf->surface.Info.PicStruct |= qf->frame->top_field_first ? MFX_PICSTRUCT_FIELD_TFF :
421  MFX_PICSTRUCT_FIELD_BFF;
422  } else if (qf->frame->repeat_pict == 2)
423  qf->surface.Info.PicStruct |= MFX_PICSTRUCT_FRAME_DOUBLING;
424  else if (qf->frame->repeat_pict == 4)
425  qf->surface.Info.PicStruct |= MFX_PICSTRUCT_FRAME_TRIPLING;
426 
427  if (ctx->inputs[0]->frame_rate.num) {
428  qf->surface.Info.FrameRateExtN = ctx->inputs[0]->frame_rate.num;
429  qf->surface.Info.FrameRateExtD = ctx->inputs[0]->frame_rate.den;
430  } else {
431  qf->surface.Info.FrameRateExtN = ctx->inputs[0]->time_base.num;
432  qf->surface.Info.FrameRateExtD = ctx->inputs[0]->time_base.den;
433  }
434 
435  qf->surface.Data.TimeStamp = av_rescale_q(qf->frame->pts,
436  ctx->inputs[0]->time_base,
437  (AVRational){1, 90000});
438 
439  *surface = &qf->surface;
440  qf->queued = 1;
441 
442  return 0;
443 }
444 
445 static int process_frame(AVFilterContext *ctx, const AVFrame *in,
446  mfxFrameSurface1 *surf_in)
447 {
448  QSVDeintContext *s = ctx->priv;
449  AVFilterLink *inlink = ctx->inputs[0];
450  AVFilterLink *outlink = ctx->outputs[0];
451 
452  AVFrame *out;
453  mfxFrameSurface1 *surf_out;
454  mfxSyncPoint sync = NULL;
455  mfxStatus err;
456  int ret, again = 0;
457 
458  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
459  if (!out) {
460  ret = AVERROR(ENOMEM);
461  goto fail;
462  }
463 
464  surf_out = (mfxFrameSurface1*)out->data[3];
465  surf_out->Info.CropW = outlink->w;
466  surf_out->Info.CropH = outlink->h;
467  surf_out->Info.PicStruct = MFX_PICSTRUCT_PROGRESSIVE;
468 
469  do {
470  err = MFXVideoVPP_RunFrameVPPAsync(s->session, surf_in, surf_out,
471  NULL, &sync);
472  if (err == MFX_WRN_DEVICE_BUSY)
473  av_usleep(1);
474  } while (err == MFX_WRN_DEVICE_BUSY);
475 
476  if (err == MFX_ERR_MORE_DATA) {
477  av_frame_free(&out);
478  return QSVDEINT_MORE_INPUT;
479  }
480 
481  if (err < 0 && err != MFX_ERR_MORE_SURFACE) {
482  ret = ff_qsvvpp_print_error(ctx, err, "Error during deinterlacing");
483  goto fail;
484  }
485 
486  if (!sync) {
487  av_log(ctx, AV_LOG_ERROR, "No sync during deinterlacing\n");
489  goto fail;
490  }
491  if (err == MFX_ERR_MORE_SURFACE)
492  again = 1;
493 
494  do {
495  err = MFXVideoCORE_SyncOperation(s->session, sync, 1000);
496  } while (err == MFX_WRN_IN_EXECUTION);
497  if (err < 0) {
498  ret = ff_qsvvpp_print_error(ctx, err, "Error synchronizing the operation");
499  goto fail;
500  }
501 
502  ret = av_frame_copy_props(out, in);
503  if (ret < 0)
504  goto fail;
505 
506  out->width = outlink->w;
507  out->height = outlink->h;
508  out->interlaced_frame = 0;
509 
510  out->pts = av_rescale_q(out->pts, inlink->time_base, outlink->time_base);
511  if (out->pts == s->last_pts)
512  out->pts++;
513  s->last_pts = out->pts;
514 
515  ret = ff_filter_frame(outlink, out);
516  if (ret < 0)
517  return ret;
518 
519  return again ? QSVDEINT_MORE_OUTPUT : 0;
520 fail:
521  av_frame_free(&out);
522  return ret;
523 }
524 
526 {
527  AVFilterContext *ctx = link->dst;
528 
529  mfxFrameSurface1 *surf_in;
530  int ret;
531 
532  ret = submit_frame(ctx, in, &surf_in);
533  if (ret < 0) {
534  av_frame_free(&in);
535  return ret;
536  }
537 
538  do {
539  ret = process_frame(ctx, in, surf_in);
540  if (ret < 0)
541  return ret;
542  } while (ret == QSVDEINT_MORE_OUTPUT);
543 
544  return 0;
545 }
546 
548 {
549  AVFilterContext *ctx = outlink->src;
550 
551  return ff_request_frame(ctx->inputs[0]);
552 }
553 
554 #define OFFSET(x) offsetof(QSVDeintContext, x)
555 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
556 static const AVOption options[] = {
557  { "mode", "set deinterlace mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64 = MFX_DEINTERLACING_ADVANCED}, MFX_DEINTERLACING_BOB, MFX_DEINTERLACING_ADVANCED, FLAGS, "mode"},
558  { "bob", "bob algorithm", 0, AV_OPT_TYPE_CONST, {.i64 = MFX_DEINTERLACING_BOB}, MFX_DEINTERLACING_BOB, MFX_DEINTERLACING_ADVANCED, FLAGS, "mode"},
559  { "advanced", "Motion adaptive algorithm", 0, AV_OPT_TYPE_CONST, {.i64 = MFX_DEINTERLACING_ADVANCED}, MFX_DEINTERLACING_BOB, MFX_DEINTERLACING_ADVANCED, FLAGS, "mode"},
560  { NULL },
561 };
562 
563 static const AVClass qsvdeint_class = {
564  .class_name = "deinterlace_qsv",
565  .item_name = av_default_item_name,
566  .option = options,
567  .version = LIBAVUTIL_VERSION_INT,
568 };
569 
570 static const AVFilterPad qsvdeint_inputs[] = {
571  {
572  .name = "default",
573  .type = AVMEDIA_TYPE_VIDEO,
574  .filter_frame = qsvdeint_filter_frame,
575  },
576 };
577 
578 static const AVFilterPad qsvdeint_outputs[] = {
579  {
580  .name = "default",
581  .type = AVMEDIA_TYPE_VIDEO,
582  .config_props = qsvdeint_config_props,
583  .request_frame = qsvdeint_request_frame,
584  },
585 };
586 
588  .name = "deinterlace_qsv",
589  .description = NULL_IF_CONFIG_SMALL("QuickSync video deinterlacing"),
590 
591  .uninit = qsvdeint_uninit,
592 
593  .priv_size = sizeof(QSVDeintContext),
594  .priv_class = &qsvdeint_class,
595 
599 
600  .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
601 };
qsvdeint_request_frame
static int qsvdeint_request_frame(AVFilterLink *outlink)
Definition: vf_deinterlace_qsv.c:547
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:98
AVHWDeviceContext::hwctx
void * hwctx
The format-specific data, allocated and freed by libavutil along with this context.
Definition: hwcontext.h:92
AVERROR
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
opt.h
out
FILE * out
Definition: movenc.c:54
QSVDEINT_MORE_OUTPUT
@ QSVDEINT_MORE_OUTPUT
Definition: vf_deinterlace_qsv.c:48
FF_FILTER_FLAG_HWFRAME_AWARE
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
Definition: internal.h:371
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1018
inlink
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
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:109
QSVDeintContext::mode
int mode
Definition: vf_deinterlace_qsv.c:77
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
pixdesc.h
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:424
AVFrame::width
int width
Definition: frame.h:389
AVQSVDeviceContext
This struct is allocated as AVHWDeviceContext.hwctx.
Definition: hwcontext_qsv.h:35
ff_vf_deinterlace_qsv
const AVFilter ff_vf_deinterlace_qsv
Definition: vf_deinterlace_qsv.c:587
AVFrame::top_field_first
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:474
AVOption
AVOption.
Definition: opt.h:247
ff_request_frame
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Definition: avfilter.c:420
mathematics.h
av_buffer_ref
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:103
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:169
AVERROR_UNKNOWN
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:73
video.h
QSVFrame::frame
AVFrame * frame
Definition: qsv_internal.h:73
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:338
formats.h
QSVDeintContext::hw_frames_ctx
AVBufferRef * hw_frames_ctx
Definition: vf_deinterlace_qsv.c:55
QSVDeintContext::last_pts
int64_t last_pts
Definition: vf_deinterlace_qsv.c:72
qsvvpp.h
fail
#define fail()
Definition: checkasm.h:127
QSVDeintContext::ext_buffers
mfxExtBuffer * ext_buffers[2]
Definition: vf_deinterlace_qsv.c:67
qsvdeint_filter_frame
static int qsvdeint_filter_frame(AVFilterLink *link, AVFrame *in)
Definition: vf_deinterlace_qsv.c:525
QSVDeintContext
Definition: vf_deinterlace_qsv.c:52
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:50
ff_qsvvpp_print_iopattern
int ff_qsvvpp_print_iopattern(void *log_ctx, int mfx_iopattern, const char *extra_string)
Definition: qsvvpp.c:55
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
QSVDeintContext::opaque_alloc
mfxExtOpaqueSurfaceAlloc opaque_alloc
Definition: vf_deinterlace_qsv.c:65
qsvdeint_uninit
static av_cold void qsvdeint_uninit(AVFilterContext *ctx)
Definition: vf_deinterlace_qsv.c:80
QSVDeintContext::surface_ptrs
mfxFrameSurface1 ** surface_ptrs
Definition: vf_deinterlace_qsv.c:62
s
#define s(width, name)
Definition: cbs_vp9.c:257
QSV_RUNTIME_VERSION_ATLEAST
#define QSV_RUNTIME_VERSION_ATLEAST(MFX_VERSION, MAJOR, MINOR)
Definition: qsv_internal.h:59
ctx
AVFormatContext * ctx
Definition: movenc.c:48
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:141
av_usleep
int av_usleep(unsigned usec)
Sleep for a period of time.
Definition: time.c:84
f
#define f(width, name)
Definition: cbs_vp9.c:255
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
link
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
Definition: filter_design.txt:23
if
if(ret)
Definition: filter_design.txt:179
QSVDeintContext::work_frames
QSVFrame * work_frames
Definition: vf_deinterlace_qsv.c:70
QSVFrame
Definition: qsv_internal.h:72
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:537
av_buffer_unref
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
Definition: buffer.c:139
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
QSVDeintContext::num_ext_buffers
int num_ext_buffers
Definition: vf_deinterlace_qsv.c:68
ff_qsvvpp_print_error
int ff_qsvvpp_print_error(void *log_ctx, mfxStatus err, const char *error_string)
Definition: qsvvpp.c:127
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
QSVFrame::surface
mfxFrameSurface1 surface
Definition: qsv_internal.h:74
OFFSET
#define OFFSET(x)
Definition: vf_deinterlace_qsv.c:554
time.h
QSVDeintContext::deint_conf
mfxExtVPPDeinterlacing deint_conf
Definition: vf_deinterlace_qsv.c:66
AV_PIX_FMT_QSV
@ AV_PIX_FMT_QSV
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
Definition: pixfmt.h:212
qsvdeint_class
static const AVClass qsvdeint_class
Definition: vf_deinterlace_qsv.c:563
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
frame_free
static mfxStatus frame_free(mfxHDL pthis, mfxFrameAllocResponse *resp)
Definition: vf_deinterlace_qsv.c:123
internal.h
QSVDeintContext::mem_ids
mfxMemId * mem_ids
Definition: vf_deinterlace_qsv.c:59
FILTER_SINGLE_PIXFMT
#define FILTER_SINGLE_PIXFMT(pix_fmt_)
Definition: internal.h:181
AVFrame::interlaced_frame
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:469
hwcontext_qsv.h
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
internal.h
common.h
frame_alloc
static mfxStatus frame_alloc(mfxHDL pthis, mfxFrameAllocRequest *req, mfxFrameAllocResponse *resp)
Definition: vf_deinterlace_qsv.c:106
clear_unused_frames
static void clear_unused_frames(QSVDeintContext *s)
Definition: vf_deinterlace_qsv.c:357
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:263
QSVDeintContext::session
mfxSession session
Definition: vf_deinterlace_qsv.c:57
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:56
QSVDeintContext::nb_mem_ids
int nb_mem_ids
Definition: vf_deinterlace_qsv.c:60
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Definition: mem.c:271
AVFilter
Filter definition.
Definition: avfilter.h:165
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:124
ret
ret
Definition: filter_design.txt:187
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
QSVFrame::queued
int queued
Definition: qsv_internal.h:81
AVHWFramesContext::device_ctx
AVHWDeviceContext * device_ctx
The parent AVHWDeviceContext.
Definition: hwcontext.h:149
MFX_IMPL_VIA_MASK
#define MFX_IMPL_VIA_MASK(impl)
Definition: vf_deinterlace_qsv.c:45
AVHWFramesContext::hwctx
void * hwctx
The format-specific data, allocated and freed automatically along with this context.
Definition: hwcontext.h:162
process_frame
static int process_frame(AVFilterContext *ctx, const AVFrame *in, mfxFrameSurface1 *surf_in)
Definition: vf_deinterlace_qsv.c:445
QSVDEINT_MORE_INPUT
@ QSVDEINT_MORE_INPUT
Definition: vf_deinterlace_qsv.c:49
AVFrame::height
int height
Definition: frame.h:389
again
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 again
Definition: filter_design.txt:25
options
static const AVOption options[]
Definition: vf_deinterlace_qsv.c:556
init_out_session
static int init_out_session(AVFilterContext *ctx)
Definition: vf_deinterlace_qsv.c:150
qsvdeint_config_props
static int qsvdeint_config_props(AVFilterLink *outlink)
Definition: vf_deinterlace_qsv.c:317
mode
mode
Definition: ebur128.h:83
qsvdeint_outputs
static const AVFilterPad qsvdeint_outputs[]
Definition: vf_deinterlace_qsv.c:578
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
avfilter.h
av_mul_q
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
QSVDeintContext::eof
int eof
Definition: vf_deinterlace_qsv.c:74
AVFilterContext
An instance of a filter.
Definition: avfilter.h:402
frame_lock
static mfxStatus frame_lock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
Definition: vf_deinterlace_qsv.c:128
qsvdeint_inputs
static const AVFilterPad qsvdeint_inputs[]
Definition: vf_deinterlace_qsv.c:570
AVQSVFramesContext
This struct is allocated as AVHWFramesContext.hwctx.
Definition: hwcontext_qsv.h:42
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
submit_frame
static int submit_frame(AVFilterContext *ctx, AVFrame *frame, mfxFrameSurface1 **surface)
Definition: vf_deinterlace_qsv.c:396
frame_unlock
static mfxStatus frame_unlock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
Definition: vf_deinterlace_qsv.c:133
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
get_free_frame
static int get_free_frame(QSVDeintContext *s, QSVFrame **f)
Definition: vf_deinterlace_qsv.c:369
hwcontext.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
frame_get_hdl
static mfxStatus frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl)
Definition: vf_deinterlace_qsv.c:138
avstring.h
QSVFrame::next
struct QSVFrame * next
Definition: qsv_internal.h:84
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:233
ff_qsvvpp_print_warning
int ff_qsvvpp_print_warning(void *log_ctx, mfxStatus err, const char *warning_string)
Definition: qsvvpp.c:137
AVFrame::repeat_pict
int repeat_pict
When decoding, this signals how much the picture must be delayed.
Definition: frame.h:464
QSVDeintContext::nb_surface_ptrs
int nb_surface_ptrs
Definition: vf_deinterlace_qsv.c:63
FLAGS
#define FLAGS
Definition: vf_deinterlace_qsv.c:555