diff options
author | James Almer <jamrial@gmail.com> | 2016-08-02 14:46:55 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-08-02 15:47:38 -0300 |
commit | 7a9a8afc8253f495c090d8aaf867549435cf6029 (patch) | |
tree | ad05a7316735e7683cb5c19614f4348e0413cb1e /libavcodec/ttaenc.c | |
parent | 35e7fc60301ecddf841868adfb2965277cb79731 (diff) | |
download | ffmpeg-7a9a8afc8253f495c090d8aaf867549435cf6029.tar.gz |
avcodec/ttaenc: split off hybrid filter processing as ttaencdsp
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/ttaenc.c')
-rw-r--r-- | libavcodec/ttaenc.c | 38 |
1 files changed, 6 insertions, 32 deletions
diff --git a/libavcodec/ttaenc.c b/libavcodec/ttaenc.c index 2f1c8db556..3cc54d78c5 100644 --- a/libavcodec/ttaenc.c +++ b/libavcodec/ttaenc.c @@ -20,6 +20,7 @@ #define BITSTREAM_WRITER_LE #include "ttadata.h" +#include "ttaencdsp.h" #include "avcodec.h" #include "put_bits.h" #include "internal.h" @@ -29,6 +30,7 @@ typedef struct TTAEncContext { const AVCRC *crc_table; int bps; TTAChannel *ch_ctx; + TTAEncDSPContext dsp; } TTAEncContext; static av_cold int tta_encode_init(AVCodecContext *avctx) @@ -57,38 +59,9 @@ static av_cold int tta_encode_init(AVCodecContext *avctx) if (!s->ch_ctx) return AVERROR(ENOMEM); - return 0; -} - -static inline void ttafilter_process(TTAFilter *c, int32_t *in) -{ - register int32_t *dl = c->dl, *qm = c->qm, *dx = c->dx, sum = c->round; - - if (c->error < 0) { - qm[0] -= dx[0]; qm[1] -= dx[1]; qm[2] -= dx[2]; qm[3] -= dx[3]; - qm[4] -= dx[4]; qm[5] -= dx[5]; qm[6] -= dx[6]; qm[7] -= dx[7]; - } else if (c->error > 0) { - qm[0] += dx[0]; qm[1] += dx[1]; qm[2] += dx[2]; qm[3] += dx[3]; - qm[4] += dx[4]; qm[5] += dx[5]; qm[6] += dx[6]; qm[7] += dx[7]; - } + ff_ttaencdsp_init(&s->dsp); - sum += dl[0] * qm[0] + dl[1] * qm[1] + dl[2] * qm[2] + dl[3] * qm[3] + - dl[4] * qm[4] + dl[5] * qm[5] + dl[6] * qm[6] + dl[7] * qm[7]; - - dx[0] = dx[1]; dx[1] = dx[2]; dx[2] = dx[3]; dx[3] = dx[4]; - dl[0] = dl[1]; dl[1] = dl[2]; dl[2] = dl[3]; dl[3] = dl[4]; - - dx[4] = ((dl[4] >> 30) | 1); - dx[5] = ((dl[5] >> 30) | 2) & ~1; - dx[6] = ((dl[6] >> 30) | 2) & ~1; - dx[7] = ((dl[7] >> 30) | 4) & ~3; - - dl[4] = -dl[5]; dl[5] = -dl[6]; - dl[6] = *in - dl[7]; dl[7] = *in; - dl[5] += dl[6]; dl[4] += dl[5]; - - *in -= (sum >> c->shift); - c->error = *in; + return 0; } static int32_t get_sample(const AVFrame *frame, int sample, @@ -155,7 +128,8 @@ pkt_alloc: } c->predictor = temp; - ttafilter_process(filter, &value); + s->dsp.filter_process(filter->qm, filter->dx, filter->dl, &filter->error, &value, + filter->shift, filter->round); outval = (value > 0) ? (value << 1) - 1: -value << 1; k = rice->k0; |