diff options
author | Jordi Ortiz <nenjordi@gmail.com> | 2011-11-03 17:32:10 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-04 23:59:20 +0100 |
commit | 1b95b52c0a73a5f29060de4861f36470a05df65d (patch) | |
tree | 070a7331b73e411969c68e15c6920eef017dde02 | |
parent | 38a444e05dd980af321211b1584421fb28b67faa (diff) | |
download | ffmpeg-streaming-1b95b52c0a73a5f29060de4861f36470a05df65d.zip ffmpeg-streaming-1b95b52c0a73a5f29060de4861f36470a05df65d.tar.gz |
Dirac: Solved problem with make checkheaders
(cherry picked from commit d611ea0a44f3e4f67fef7ba916da5a25adef58da)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/diracdsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/diracdsp.h b/libavcodec/diracdsp.h index 454fa3b..68c04c2 100644 --- a/libavcodec/diracdsp.h +++ b/libavcodec/diracdsp.h @@ -21,6 +21,8 @@ #ifndef AVCODEC_DIRACDSP_H #define AVCODEC_DIRACDSP_H +#include <stdint.h> + typedef void (*dirac_weight_func)(uint8_t *block, int stride, int log2_denom, int weight, int h); typedef void (*dirac_biweight_func)(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int h); |