diff options
author | Chip <szarlada@freemail.hu> | 2004-01-22 12:09:14 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-01-22 12:09:14 +0000 |
commit | d398a27e0b98f2d575d4e69ce4974768dff9f7d8 (patch) | |
tree | bc98a6b6417c56d3ccd3e33b6e499e1a8ba5b1b3 | |
parent | 403f10996d68def09d4f358a311d619a6d54cff8 (diff) | |
download | ffmpeg-d398a27e0b98f2d575d4e69ce4974768dff9f7d8.tar.gz |
inttypes.h patch by (Chip <szarlada at freemail dot hu>)
Originally committed as revision 2717 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/golomb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/golomb.c b/libavcodec/golomb.c index a696b2a766..a63f822809 100644 --- a/libavcodec/golomb.c +++ b/libavcodec/golomb.c @@ -25,7 +25,7 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ -#include <inttypes.h> +#include "common.h" const uint8_t ff_golomb_vlc_len[512]={ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, |