diff options
author | Luca Abeni <lucabe72@email.it> | 2006-04-10 10:16:13 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-04-10 10:16:13 +0000 |
commit | f122deb45cbd00ef0e1726e79dd3658b553d1eab (patch) | |
tree | 9a3349ad02996fb8478103de37d0a43e4894c1a5 /ffmpeg.c | |
parent | 07d0cdfc9f44bbf38d433a71df49a974b04edd2f (diff) | |
download | ffmpeg-f122deb45cbd00ef0e1726e79dd3658b553d1eab.tar.gz |
Cosmetic patch: fix indentation (broken by previous cropping / padding
patch)
Originally committed as revision 5280 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 38 |
1 files changed, 19 insertions, 19 deletions
@@ -804,28 +804,28 @@ static void do_video_out(AVFormatContext *s, img_resample(ost->img_resample_ctx, (AVPicture *)resampling_dst, (AVPicture*)formatted_picture); } - if (enc->pix_fmt != target_pixfmt) { - int size; - - av_free(buf); - /* create temporary picture */ - size = avpicture_get_size(enc->pix_fmt, enc->width, enc->height); - buf = av_malloc(size); - if (!buf) - return; - final_picture = &picture_format_temp; - avpicture_fill((AVPicture*)final_picture, buf, enc->pix_fmt, enc->width, enc->height); - - if (img_convert((AVPicture*)final_picture, enc->pix_fmt, - (AVPicture*)&ost->pict_tmp, target_pixfmt, - enc->width, enc->height) < 0) { + if (enc->pix_fmt != target_pixfmt) { + int size; - if (verbose >= 0) - fprintf(stderr, "pixel format conversion not handled\n"); + av_free(buf); + /* create temporary picture */ + size = avpicture_get_size(enc->pix_fmt, enc->width, enc->height); + buf = av_malloc(size); + if (!buf) + return; + final_picture = &picture_format_temp; + avpicture_fill((AVPicture*)final_picture, buf, enc->pix_fmt, enc->width, enc->height); - goto the_end; - } + if (img_convert((AVPicture*)final_picture, enc->pix_fmt, + (AVPicture*)&ost->pict_tmp, target_pixfmt, + enc->width, enc->height) < 0) { + + if (verbose >= 0) + fprintf(stderr, "pixel format conversion not handled\n"); + + goto the_end; } + } if (ost->video_pad) { img_pad((AVPicture*)final_picture, (AVPicture *)padding_src, |