diff options
author | Diego Biurrun | 2012-10-20 21:09:25 +0200 |
---|---|---|
committer | Diego Biurrun | 2012-10-20 21:10:21 +0200 |
commit | 6cfca5b6ae5a2212082408ee751facd37810d606 (patch) | |
tree | a75e4dde625ee6af6e5949281ea6ed23cfee8bb6 /libavcodec/ffv1.h | |
parent | 2d09b36c0379fcda8f984bc8ad8816c8326fd7bd (diff) |
ffv1: Add missing #includes to header file
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 74f1159537..4752cea951 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -22,7 +22,14 @@ #ifndef AVCODEC_FFV1_H #define AVCODEC_FFV1_H + +#include <stdint.h> + #include "avcodec.h" +#include "dsputil.h" +#include "get_bits.h" +#include "put_bits.h" +#include "rangecoder.h" #define MAX_PLANES 4 #define CONTEXT_SIZE 32 |