changeset 9744:bcd71ae6ea74 libavcodec

Cosmetics: fix indentation in lclenc.c
author reimar
date Sun, 31 May 2009 08:38:51 +0000
parents f36c5b72c4e3
children 2b2cf4039589
files lclenc.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lclenc.c	Sun May 31 08:36:44 2009 +0000
+++ b/lclenc.c	Sun May 31 08:38:51 2009 +0000
@@ -52,8 +52,8 @@
  */
 typedef struct LclEncContext {
 
-        AVCodecContext *avctx;
-        AVFrame pic;
+    AVCodecContext *avctx;
+    AVFrame pic;
     PutBitContext pb;
 
     // Image type
@@ -175,9 +175,9 @@
         return 1;
     }
 
-        /* Conservative upper bound taken from zlib v1.2.1 source */
-        c->max_comp_size = c->decomp_size + ((c->decomp_size + 7) >> 3) +
-                           ((c->decomp_size + 63) >> 6) + 11;
+    /* Conservative upper bound taken from zlib v1.2.1 source */
+    c->max_comp_size = c->decomp_size + ((c->decomp_size + 7) >> 3) +
+                       ((c->decomp_size + 63) >> 6) + 11;
     if ((c->comp_buf = av_malloc(c->max_comp_size)) == NULL) {
         av_log(avctx, AV_LOG_ERROR, "Can't allocate compression buffer.\n");
         return 1;