summaryrefslogtreecommitdiff
path: root/libavcodec/lclenc.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-05-31 08:38:51 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-05-31 08:38:51 +0000
commit8f033e3e035374308289b6b34474af6b0f0c3d84 (patch)
tree795f2e04348033fe215c4029bdf479070a075213 /libavcodec/lclenc.c
parent7ff7ac60e1f3b33a8e91c31ba79a8774feae2fc0 (diff)
Cosmetics: fix indentation in lclenc.c
Originally committed as revision 19027 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lclenc.c')
-rw-r--r--libavcodec/lclenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/lclenc.c b/libavcodec/lclenc.c
index 8bae7c7f5f..1e6bebbab8 100644
--- a/libavcodec/lclenc.c
+++ b/libavcodec/lclenc.c
@@ -52,8 +52,8 @@
*/
typedef struct LclEncContext {
- AVCodecContext *avctx;
- AVFrame pic;
+ AVCodecContext *avctx;
+ AVFrame pic;
PutBitContext pb;
// Image type
@@ -175,9 +175,9 @@ static av_cold int encode_init(AVCodecContext *avctx)
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;