ffmpeg plugin: fix passing the wrong alignment, fixes some older .avi files being distorted.

This commit is contained in:
Marco Cawthorne 2023-06-08 22:09:58 -07:00
parent 7604e8e655
commit 7e39cdd689
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ static qboolean AVDec_SetSize (void *vctx, int width, int height)
if (width == ctx->width && height == ctx->height && ctx->pScaleCtx)
return true;
if (av_image_alloc(rgb_data, rgb_linesize, width, height, AV_PIX_FMT_BGRA, 16) >= 0)
if (av_image_alloc(rgb_data, rgb_linesize, width, height, AV_PIX_FMT_BGRA, 1) >= 0)
{
//update the scale context as required
//clear the old stuff out