vaapi_encode: Fix fallback when input does not match any format
Just a typo. Add a comment to make it clearer what it's doing.
This commit is contained in:
parent
8c3c7b8920
commit
11b8030309
1 changed files with 5 additions and 2 deletions
|
@ -1114,8 +1114,11 @@ av_cold int ff_vaapi_encode_init(AVCodecContext *avctx,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (recon_format == AV_PIX_FMT_NONE)
|
if (recon_format == AV_PIX_FMT_NONE) {
|
||||||
recon_format = constraints->valid_sw_formats[i];
|
// No match. Just use the first in the supported list and
|
||||||
|
// hope for the best.
|
||||||
|
recon_format = constraints->valid_sw_formats[0];
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// No idea what to use; copy input format.
|
// No idea what to use; copy input format.
|
||||||
recon_format = ctx->input_frames->sw_format;
|
recon_format = ctx->input_frames->sw_format;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue