diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-03 11:21:19 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-09-03 11:31:47 +0200 |
commit | 7681b8837a2679991c022c0f2e70dc08b81f942d (patch) | |
tree | ba2b8b9110bce148d29c1c4bcde1965d565fb0ae | |
parent | 13b6b7e0e233265e42f98455f372c9a2582b6eca (diff) | |
download | ffmpeg-7681b8837a2679991c022c0f2e70dc08b81f942d.tar.gz |
intrax8dsp: Add missing #include to make header standalone
-rw-r--r-- | libavcodec/intrax8dsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/intrax8dsp.h b/libavcodec/intrax8dsp.h index d67fa4eda5..5c3cc4aa74 100644 --- a/libavcodec/intrax8dsp.h +++ b/libavcodec/intrax8dsp.h @@ -19,6 +19,8 @@ #ifndef AVCODEC_INTRAX8DSP_H #define AVCODEC_INTRAX8DSP_H +#include <stdint.h> + typedef struct IntraX8DSPContext { void (*v_loop_filter)(uint8_t *src, int stride, int qscale); void (*h_loop_filter)(uint8_t *src, int stride, int qscale); |