1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-28 04:06:12 +02:00

ffmpeg: fix width/height overrides for sub2video processing

This commit is contained in:
Hendrik Leppkes 2016-11-03 16:20:59 +01:00
parent b6422902d8
commit 31d657130b

View File

@ -692,8 +692,8 @@ static int sub2video_prepare(InputStream *ist, InputFilter *ifilter)
}
av_log(avf, AV_LOG_INFO, "sub2video: using %dx%d canvas\n", w, h);
}
ist->sub2video.w = ist->resample_width = w;
ist->sub2video.h = ist->resample_height = h;
ist->sub2video.w = ist->resample_width = ifilter->width = w;
ist->sub2video.h = ist->resample_height = ifilter->height = h;
/* rectangles are AV_PIX_FMT_PAL8, but we have no guarantee that the
palettes for all rectangles are identical or compatible */