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>
This commit is contained in:
Michael Niedermayer 2013-11-24 05:21:19 +01:00
commit ccdfa3e271
37 changed files with 65 additions and 1 deletions

View file

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

View file

@ -24,6 +24,8 @@
* huffman tree builder and VLC generator
*/
#include <stdint.h>
#include "avcodec.h"
#include "get_bits.h"
#include "huffman.h"

View file

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

View file

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

View file

@ -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"

View file

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

View file

@ -20,6 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include <string.h>
#include "parser.h"