diff options
author | James Almer <jamrial@gmail.com> | 2016-08-06 18:27:01 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-08-06 18:27:01 -0300 |
commit | d950279cbfede7270c6d55d0dd6eed35a962fd86 (patch) | |
tree | d6134dc89a19db9ce9abd29344c7c399a2cb16ad /libavcodec/tta.c | |
parent | 803c058a6f0c835c3094621d03d6e8c02565f28e (diff) | |
download | ffmpeg-d950279cbfede7270c6d55d0dd6eed35a962fd86.tar.gz |
avcodec/ttadsp: cosmetics
Clean some header includes and use the same naming scheme as
in ttaencdsp
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/tta.c')
-rw-r--r-- | libavcodec/tta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 9cb044e991..c0162c5849 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -314,8 +314,8 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data, *p = 1 + ((value >> 1) ^ ((value & 1) - 1)); // run hybrid filter - s->dsp.ttafilter_process_dec(filter->qm, filter->dx, filter->dl, &filter->error, p, - filter->shift, filter->round); + s->dsp.filter_process(filter->qm, filter->dx, filter->dl, &filter->error, p, + filter->shift, filter->round); // fixed order prediction #define PRED(x, k) (int32_t)((((uint64_t)(x) << (k)) - (x)) >> (k)) |