Просмотр исходного кода

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>
Michael Niedermayer 11 лет назад
Родитель
Сommit
ccdfa3e271
10 измененных файлов с 18 добавлено и 0 удалено
  1. 1 0
      cmdutils.c
  2. 3 0
      ffmpeg.c
  3. 2 0
      ffmpeg_filter.c
  4. 2 0
      ffplay.c
  5. 1 0
      libavcodec/aacdec.c
  6. 2 0
      libavcodec/huffman.c
  7. 2 0
      libavcodec/iff.c
  8. 2 0
      libavcodec/mpeg12enc.c
  9. 2 0
      libavcodec/mpegvideo_enc.c
  10. 1 0
      libavcodec/options_table.h

+ 1 - 0
cmdutils.c

@@ -20,6 +20,7 @@
  */
 
 #include <string.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <errno.h>
 #include <math.h>

+ 3 - 0
ffmpeg.c

@@ -30,6 +30,8 @@
 #include <stdlib.h>
 #include <errno.h>
 #include <limits.h>
+#include <stdint.h>
+
 #if HAVE_ISATTY
 #if HAVE_IO_H
 #include <io.h>
@@ -38,6 +40,7 @@
 #include <unistd.h>
 #endif
 #endif
+
 #include "libavformat/avformat.h"
 #include "libavdevice/avdevice.h"
 #include "libswresample/swresample.h"

+ 2 - 0
ffmpeg_filter.c

@@ -18,6 +18,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <stdint.h>
+
 #include "ffmpeg.h"
 
 #include "libavfilter/avfilter.h"

+ 2 - 0
ffplay.c

@@ -28,6 +28,8 @@
 #include <math.h>
 #include <limits.h>
 #include <signal.h>
+#include <stdint.h>
+
 #include "libavutil/avstring.h"
 #include "libavutil/colorspace.h"
 #include "libavutil/mathematics.h"

+ 1 - 0
libavcodec/aacdec.c

@@ -105,6 +105,7 @@
 #include <assert.h>
 #include <errno.h>
 #include <math.h>
+#include <stdint.h>
 #include <string.h>
 
 #if ARCH_ARM

+ 2 - 0
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"

+ 2 - 0
libavcodec/iff.c

@@ -25,6 +25,8 @@
  * IFF ACBM/DEEP/ILBM/PBM bitmap decoder
  */
 
+#include <stdint.h>
+
 #include "libavutil/imgutils.h"
 #include "bytestream.h"
 #include "avcodec.h"

+ 2 - 0
libavcodec/mpeg12enc.c

@@ -25,6 +25,8 @@
  * MPEG1/2 encoder
  */
 
+#include <stdint.h>
+
 #include "libavutil/attributes.h"
 #include "libavutil/avassert.h"
 #include "libavutil/log.h"

+ 2 - 0
libavcodec/mpegvideo_enc.c

@@ -27,6 +27,8 @@
  * The simplest mpeg encoder (well, it was the simplest!).
  */
 
+#include <stdint.h>
+
 #include "libavutil/internal.h"
 #include "libavutil/intmath.h"
 #include "libavutil/mathematics.h"

+ 1 - 0
libavcodec/options_table.h

@@ -24,6 +24,7 @@
 
 #include <float.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "libavutil/opt.h"
 #include "avcodec.h"

Некоторые файлы не были показаны из-за большого количества измененных файлов