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:
commit
ccdfa3e271
37 changed files with 65 additions and 1 deletions
|
|
@ -105,6 +105,7 @@
|
|||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <math.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
#if ARCH_ARM
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@
|
|||
* huffman tree builder and VLC generator
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "avcodec.h"
|
||||
#include "get_bits.h"
|
||||
#include "huffman.h"
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@
|
|||
* IFF ACBM/DEEP/ILBM/PBM bitmap decoder
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "bytestream.h"
|
||||
#include "avcodec.h"
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@
|
|||
* MPEG1/2 encoder
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/log.h"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include <float.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "libavutil/opt.h"
|
||||
#include "avcodec.h"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue