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:
authorJordi Ortiz <nenjordi@gmail.com>2011-11-03 20:32:52 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-11-05 02:59:28 +0400
commit4bb2b5afc995ccf290860d349dfbff4561e25fc4 (patch)
tree0a0da7e9bf99ed01b14356b734862e306b39085c /libavcodec/dwt.h
parent1b95b52c0a73a5f29060de4861f36470a05df65d (diff)
dwt: removed some warnings in make checkheaders
(cherry picked from commit 1124056ac054842f36866b4dabb9f8aae0ad06b6) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dwt.h')
-rw-r--r--libavcodec/dwt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/dwt.h b/libavcodec/dwt.h
index 441d5e6ebb..ec27a61446 100644
--- a/libavcodec/dwt.h
+++ b/libavcodec/dwt.h
@@ -68,11 +68,11 @@ typedef struct DWTContext {
int support;
void (*spatial_compose)(struct DWTContext *cs, int level, int width, int height, int stride);
- void (*vertical_compose_l0)();
- void (*vertical_compose_h0)();
- void (*vertical_compose_l1)();
- void (*vertical_compose_h1)();
- void (*vertical_compose)(); ///< one set of lowpass and highpass combined
+ void (*vertical_compose_l0)(void);
+ void (*vertical_compose_h0)(void);
+ void (*vertical_compose_l1)(void);
+ void (*vertical_compose_h1)(void);
+ void (*vertical_compose)(void); ///< one set of lowpass and highpass combined
void (*horizontal_compose)(IDWTELEM *b, IDWTELEM *tmp, int width);
void (*vertical_compose97i)(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width);