summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index ff33f85d6f..cc8d285e45 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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),