diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-24 05:21:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-24 05:21:19 +0100 |
commit | ccdfa3e2711c42b6f8b7902c4dd08f7ac89b4f59 (patch) | |
tree | 752fdf35a10a7d2df7168f59b9d1b49fd7d01a64 /libavcodec/huffman.c | |
parent | f67ec7f3a2698f28c17aab4bb40c9a3d9f1289f7 (diff) | |
parent | 8f8bc92365a943e96cc08b5369408c20f35193c7 (diff) | |
download | ffmpeg-ccdfa3e2711c42b6f8b7902c4dd08f7ac89b4f59.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
Add missing #includes for *INT64_MAX and *INT64_C
Conflicts:
ffmpeg.c
ffmpeg_filter.c
ffplay.c
libavformat/assdec.c
libavformat/avidec.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/huffman.c')
-rw-r--r-- | libavcodec/huffman.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/huffman.c b/libavcodec/huffman.c index 2b64b3ece9..8dd356dde4 100644 --- a/libavcodec/huffman.c +++ b/libavcodec/huffman.c @@ -24,6 +24,8 @@ * huffman tree builder and VLC generator */ +#include <stdint.h> + #include "avcodec.h" #include "get_bits.h" #include "huffman.h" |