changeset 7812:54348529f568 libavcodec

Remove commented out code.
author vitor
date Sun, 07 Sep 2008 13:47:30 +0000
parents ed61b4ffdd7e
children 0bd07f3d3556
files mace.c
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mace.c	Sun Sep 07 13:46:09 2008 +0000
+++ b/mace.c	Sun Sep 07 13:47:30 2008 +0000
@@ -269,7 +269,6 @@
     current = mace_broken_clip_int16(current + ctx->lev);
 
     ctx->lev = current - (current >> 3);
-    //*ctx->outPtr++=current >> 8;
     *output = QT_8S_2_16S(current);
     if (( ctx->index += tab1[val]-(ctx->index >> 5) ) < 0)
         ctx->index = 0;
@@ -297,8 +296,6 @@
     ctx->level = ((current*ctx->factor) >> 15);
     current >>= 1;
 
-//  *ctx->outPtr++=(ctx->previous+ctx->prev2-((ctx->prev2-current) >> 2)) >> 8;
-//  *ctx->outPtr++=(ctx->previous+current+((ctx->prev2-current) >> 2)) >> 8;
     output[0] = QT_8S_2_16S(ctx->previous + ctx->prev2 -
                             ((ctx->prev2-current) >> 2));
     output[numChannels] = QT_8S_2_16S(ctx->previous + current +