From eddc482dff253f7afe3f0d87eb929140d3019b71 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 31 Mar 2007 16:04:44 +0000 Subject: [PATCH] print error message Originally committed as revision 8569 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index f93b4c8eaa..c9bac5de60 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1610,9 +1610,10 @@ static int av_encode(AVFormatContext **output_files, if (ost->video_resample) { avcodec_get_frame_defaults(&ost->pict_tmp); if( avpicture_alloc( (AVPicture*)&ost->pict_tmp, codec->pix_fmt, - codec->width, codec->height ) ) + codec->width, codec->height ) ) { + fprintf(stderr, "Cannot allocate temp picture, check pix fmt\n"); exit(1); - + } ost->img_resample_ctx = sws_getContext( icodec->width - (frame_leftBand + frame_rightBand), icodec->height - (frame_topBand + frame_bottomBand),