]> git.sesse.net Git - ffmpeg/commitdiff
Fix indentation after last commit.
authorBenoit Fouet <benoit.fouet@free.fr>
Thu, 1 Oct 2009 12:21:54 +0000 (12:21 +0000)
committerBenoit Fouet <benoit.fouet@free.fr>
Thu, 1 Oct 2009 12:21:54 +0000 (12:21 +0000)
Originally committed as revision 20121 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/targaenc.c

index 9e481e60275f6fbf22468f182c8b422427be131b..82d7fe359956ef5e411094ee366e002bb7a9b4bc 100644 (file)
@@ -121,7 +121,7 @@ static int targa_encode_frame(AVCodecContext *avctx,
 
     /* try RLE compression */
     if (avctx->coder_type != FF_CODER_TYPE_RAW)
-    datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
+        datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
 
     /* if that worked well, mark the picture as RLE compressed */
     if(datasize >= 0)