Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-08-07 00:27:01 +0300
committerJames Almer <jamrial@gmail.com>2016-08-07 00:27:01 +0300
commitd950279cbfede7270c6d55d0dd6eed35a962fd86 (patch)
treed6134dc89a19db9ce9abd29344c7c399a2cb16ad /libavcodec/ttadsp.h
parent803c058a6f0c835c3094621d03d6e8c02565f28e (diff)
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/ttadsp.h')
-rw-r--r--libavcodec/ttadsp.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/ttadsp.h b/libavcodec/ttadsp.h
index 56930f1c85..737d9bdbaa 100644
--- a/libavcodec/ttadsp.h
+++ b/libavcodec/ttadsp.h
@@ -20,12 +20,11 @@
#define AVCODEC_TTADSP_H
#include <stdint.h>
-#include "ttadata.h"
typedef struct TTADSPContext {
- void (*ttafilter_process_dec)(int32_t *qm, int32_t *dx, int32_t *dl,
- int32_t *error, int32_t *in, int32_t shift,
- int32_t round);
+ void (*filter_process)(int32_t *qm, int32_t *dx, int32_t *dl,
+ int32_t *error, int32_t *in, int32_t shift,
+ int32_t round);
} TTADSPContext;
void ff_ttadsp_init(TTADSPContext *c);