mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-30 13:50:50 +08:00
Avoid segfaulting if the swscale context cannot be allocated
Originally committed as revision 5936 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
4
ffmpeg.c
4
ffmpeg.c
@@ -1665,6 +1665,10 @@ static int av_encode(AVFormatContext **output_files,
|
||||
codec->height - (frame_padtop + frame_padbottom),
|
||||
codec->pix_fmt,
|
||||
sws_flags, NULL, NULL, NULL);
|
||||
if (ost->img_resample_ctx == NULL) {
|
||||
fprintf(stderr, "Cannot get resampling context\n");
|
||||
exit(1);
|
||||
}
|
||||
ost->resample_height = icodec->height - (frame_topBand + frame_bottomBand);
|
||||
}
|
||||
ost->encoding_needed = 1;
|
||||
|
||||
Reference in New Issue
Block a user