summaryrefslogtreecommitdiff
path: root/libavcodec/mace.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-09-07 13:47:30 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-09-07 13:47:30 +0000
commit934bc927a87b282b729e354fc92ce1d9c2030325 (patch)
tree14fcb8ed4177715c52f4e0c13e420f634beafd51 /libavcodec/mace.c
parentf9f7210e5ebe35308112e6144afb0054c7725719 (diff)
Remove commented out code.
Originally committed as revision 15249 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mace.c')
-rw-r--r--libavcodec/mace.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/mace.c b/libavcodec/mace.c
index dced77da1f..2a767d0d7f 100644
--- a/libavcodec/mace.c
+++ b/libavcodec/mace.c
@@ -269,7 +269,6 @@ static void chomp3(ChannelData *ctx, int16_t *output, uint8_t val,
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 @@ static void chomp6(ChannelData *ctx, int16_t *output, uint8_t val,
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 +