summaryrefslogtreecommitdiff
path: root/libavcodec/mace.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-09-07 09:38:37 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-09-07 09:38:37 +0000
commitb6d544f54e7fb08829169a7096a3336ea00dbfc9 (patch)
tree6968f0d75491d9b38edfffd4ffac610163d558bb /libavcodec/mace.c
parentbd547403fe0a3416e6af77b62b6442549e855248 (diff)
Remove output pointer from context
Originally committed as revision 15243 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mace.c')
-rw-r--r--libavcodec/mace.c40
1 files changed, 21 insertions, 19 deletions
diff --git a/libavcodec/mace.c b/libavcodec/mace.c
index 2e6ff7c256..1fcfd84b25 100644
--- a/libavcodec/mace.c
+++ b/libavcodec/mace.c
@@ -236,10 +236,10 @@ static const uint16_t MACEtab4[][8] = {
typedef struct MACEContext {
short index, lev, factor, prev2, previous, level;
- short *outPtr;
} MACEContext;
-static void chomp3(MACEContext *ctx, uint8_t val, const uint16_t tab1[],
+static void chomp3(MACEContext *ctx, int16_t *output, uint8_t val,
+ const uint16_t tab1[],
const uint16_t tab2[][8], uint32_t numChannels)
{
short current;
@@ -255,13 +255,13 @@ static void chomp3(MACEContext *ctx, uint8_t val, const uint16_t tab1[],
ctx->lev = current - (current >> 3);
//*ctx->outPtr++=current >> 8;
- *ctx->outPtr = current;
- ctx->outPtr += numChannels;
+ *output = current;
if (( ctx->index += tab1[val]-(ctx->index >> 5) ) < 0)
ctx->index = 0;
}
-static void chomp6(MACEContext *ctx, uint8_t val, const uint16_t tab1[],
+static void chomp6(MACEContext *ctx, int16_t *output, uint8_t val,
+ const uint16_t tab1[],
const uint16_t tab2[][8], uint32_t numChannels)
{
short current;
@@ -292,10 +292,8 @@ static void chomp6(MACEContext *ctx, uint8_t val, const uint16_t tab1[],
// *ctx->outPtr++=(ctx->previous+ctx->prev2-((ctx->prev2-current) >> 2)) >> 8;
// *ctx->outPtr++=(ctx->previous+current+((ctx->prev2-current) >> 2)) >> 8;
- *ctx->outPtr = (ctx->previous + ctx->prev2 - ((ctx->prev2-current) >> 2));
- ctx->outPtr += numChannels;
- *ctx->outPtr = (ctx->previous + current + ((ctx->prev2-current) >> 2));
- ctx->outPtr += numChannels;
+ output[0] = (ctx->previous + ctx->prev2 - ((ctx->prev2-current) >> 2));
+ output[numChannels] = (ctx->previous + current + ((ctx->prev2-current) >> 2));
ctx->prev2 = ctx->previous;
ctx->previous = current;
@@ -320,16 +318,18 @@ static int mace3_decode_frame(AVCodecContext *avctx,
int i, j, k;
for(i = 0; i < avctx->channels; i++) {
+ int16_t *output = samples + i;
ctx->index = ctx->lev = 0;
- ctx->outPtr = samples + i;
-
for (j=0; j < buf_size / 2 / avctx->channels; j++)
for (k=0; k < 2; k++) {
uint8_t pkt = buf[i*2 + j*2*avctx->channels + k];
- chomp3(ctx, pkt &7, MACEtab1, MACEtab2, avctx->channels);
- chomp3(ctx,(pkt >> 3) &3, MACEtab3, MACEtab4, avctx->channels);
- chomp3(ctx, pkt >> 5 , MACEtab1, MACEtab2, avctx->channels);
+ chomp3(ctx, output, pkt &7, MACEtab1, MACEtab2, avctx->channels);
+ output += avctx->channels;
+ chomp3(ctx, output,(pkt >> 3) &3, MACEtab3, MACEtab4, avctx->channels);
+ output += avctx->channels;
+ chomp3(ctx, output, pkt >> 5 , MACEtab1, MACEtab2, avctx->channels);
+ output += avctx->channels;
}
}
@@ -347,16 +347,18 @@ static int mace6_decode_frame(AVCodecContext *avctx,
int i, j;
for(i = 0; i < avctx->channels; i++) {
+ int16_t *output = samples + i;
ctx->previous = ctx->prev2 = ctx->index = ctx->level = ctx->factor = 0;
- ctx->outPtr = samples + i;
-
for (j = 0; j < buf_size / avctx->channels; j++) {
uint8_t pkt = buf[i + j*avctx->channels];
- chomp6(ctx, pkt >> 5 , MACEtab1, MACEtab2, avctx->channels);
- chomp6(ctx,(pkt >> 3) & 3, MACEtab3, MACEtab4, avctx->channels);
- chomp6(ctx, pkt & 7, MACEtab1, MACEtab2, avctx->channels);
+ chomp6(ctx, output, pkt >> 5 , MACEtab1, MACEtab2, avctx->channels);
+ output += avctx->channels << 1;
+ chomp6(ctx, output,(pkt >> 3) & 3, MACEtab3, MACEtab4, avctx->channels);
+ output += avctx->channels << 1;
+ chomp6(ctx, output, pkt & 7, MACEtab1, MACEtab2, avctx->channels);
+ output += avctx->channels << 1;
}
}