summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorLuca Abeni <lucabe72@email.it>2007-02-28 15:07:35 +0000
committerLuca Abeni <lucabe72@email.it>2007-02-28 15:07:35 +0000
commit7a1686185971a5bcb556efbd6d6e632ebb655dfb (patch)
treee2f171bc595bb29c686e682c4b57d0690a86035a /ffmpeg.c
parent4c02e46daf43c133cf3cafe7daa8d3decaeb05d1 (diff)
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
Diffstat (limited to 'ffmpeg.c')
-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),