Commit 7a168618 authored by Luca Abeni's avatar Luca Abeni

Do not jump to "fail" without having a proper sws context in img_resample_ctx

(avoid calling sws_freeContext(NULL))

Originally committed as revision 8162 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4c02e46d
......@@ -1614,7 +1614,7 @@ static int av_encode(AVFormatContext **output_files,
avcodec_get_frame_defaults(&ost->pict_tmp);
if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, codec->pix_fmt,
codec->width, codec->height ) )
goto fail;
exit(1);
ost->img_resample_ctx = sws_getContext(
icodec->width - (frame_leftBand + frame_rightBand),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment