You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
hwcontext_dxva2: do not assume the destination format during mapping is always the right one
Handle the cases where it is unsupported or unset.
This commit is contained in:
@@ -345,6 +345,10 @@ static int dxva2_map_from(AVHWFramesContext *ctx,
|
||||
{
|
||||
int err;
|
||||
|
||||
if (dst->format != AV_PIX_FMT_NONE && dst->format != ctx->sw_format)
|
||||
return AVERROR(ENOSYS);
|
||||
dst->format = ctx->sw_format;
|
||||
|
||||
err = dxva2_map_frame(ctx, dst, src, flags);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
Reference in New Issue
Block a user