You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavf/qsvvpp: add P010 output format support
Signed-off-by: Zhong Li <zhong.li@intel.com>
This commit is contained in:
@@ -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;
|
||||
|
@@ -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
|
||||
};
|
||||
|
Reference in New Issue
Block a user