Browse Source

lavf/qsvvpp: add P010 output format support

Signed-off-by: Zhong Li <zhong.li@intel.com>
tags/n4.2
Zhong Li 6 years ago
parent
commit
e62f625163
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      libavfilter/qsvvpp.c
  2. +1
    -0
      libavfilter/vf_vpp_qsv.c

+ 1
- 0
libavfilter/qsvvpp.c View File

@@ -153,6 +153,7 @@ static int map_frame_to_surface(AVFrame *frame, mfxFrameSurface1 *surface)
{
switch (frame->format) {
case AV_PIX_FMT_NV12:
case AV_PIX_FMT_P010:
surface->Data.Y = frame->data[0];
surface->Data.UV = frame->data[1];
break;


+ 1
- 0
libavfilter/vf_vpp_qsv.c View File

@@ -367,6 +367,7 @@ static int query_formats(AVFilterContext *ctx)
};
static const enum AVPixelFormat out_pix_fmts[] = {
AV_PIX_FMT_NV12,
AV_PIX_FMT_P010,
AV_PIX_FMT_QSV,
AV_PIX_FMT_NONE
};


Loading…
Cancel
Save