Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
8f8bc923
Commit
8f8bc923
authored
Nov 23, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing #includes for *INT64_MAX and *INT64_C
parent
0eeeb964
Changes
37
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
64 additions
and
1 deletion
+64
-1
avconv.c
avconv.c
+2
-0
avconv_filter.c
avconv_filter.c
+2
-0
avplay.c
avplay.c
+2
-0
cmdutils.c
cmdutils.c
+1
-0
libavcodec/aacdec.c
libavcodec/aacdec.c
+1
-0
libavcodec/huffman.c
libavcodec/huffman.c
+2
-0
libavcodec/iff.c
libavcodec/iff.c
+2
-0
libavcodec/mpeg12enc.c
libavcodec/mpeg12enc.c
+2
-0
libavcodec/mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+2
-0
libavcodec/options_table.h
libavcodec/options_table.h
+1
-0
libavcodec/parser.c
libavcodec/parser.c
+1
-0
libavfilter/af_asyncts.c
libavfilter/af_asyncts.c
+2
-0
libavfilter/trim.c
libavfilter/trim.c
+1
-0
libavfilter/vf_fps.c
libavfilter/vf_fps.c
+1
-0
libavfilter/vsrc_movie.c
libavfilter/vsrc_movie.c
+1
-0
libavformat/aiffenc.c
libavformat/aiffenc.c
+2
-0
libavformat/assdec.c
libavformat/assdec.c
+2
-0
libavformat/avidec.c
libavformat/avidec.c
+2
-0
libavformat/ffmdec.c
libavformat/ffmdec.c
+2
-0
libavformat/hlsenc.c
libavformat/hlsenc.c
+1
-0
libavformat/matroskaenc.c
libavformat/matroskaenc.c
+2
-0
libavformat/mov.c
libavformat/mov.c
+1
-0
libavformat/movenc.c
libavformat/movenc.c
+2
-0
libavformat/mpegenc.c
libavformat/mpegenc.c
+2
-0
libavformat/mxfdec.c
libavformat/mxfdec.c
+2
-0
libavformat/nutenc.c
libavformat/nutenc.c
+2
-0
libavformat/oggenc.c
libavformat/oggenc.c
+2
-0
libavformat/rl2.c
libavformat/rl2.c
+2
-0
libavformat/rpl.c
libavformat/rpl.c
+3
-1
libavformat/seek.c
libavformat/seek.c
+2
-0
libavformat/utils.c
libavformat/utils.c
+2
-0
libavformat/wavdec.c
libavformat/wavdec.c
+2
-0
libavformat/xwma.c
libavformat/xwma.c
+1
-0
libavresample/options.c
libavresample/options.c
+2
-0
libavutil/channel_layout.c
libavutil/channel_layout.c
+2
-0
libavutil/common.h
libavutil/common.h
+1
-0
libavutil/cpu.c
libavutil/cpu.c
+2
-0
No files found.
avconv.c
View file @
8f8bc923
...
...
@@ -27,6 +27,8 @@
#include <errno.h>
#include <signal.h>
#include <limits.h>
#include <stdint.h>
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
...
...
avconv_filter.c
View file @
8f8bc923
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "avconv.h"
#include "libavfilter/avfilter.h"
...
...
avplay.c
View file @
8f8bc923
...
...
@@ -23,6 +23,8 @@
#include <inttypes.h>
#include <math.h>
#include <limits.h>
#include <stdint.h>
#include "libavutil/avstring.h"
#include "libavutil/colorspace.h"
#include "libavutil/mathematics.h"
...
...
cmdutils.c
View file @
8f8bc923
...
...
@@ -20,6 +20,7 @@
*/
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <errno.h>
#include <math.h>
...
...
libavcodec/aacdec.c
View file @
8f8bc923
...
...
@@ -103,6 +103,7 @@
#include <assert.h>
#include <errno.h>
#include <math.h>
#include <stdint.h>
#include <string.h>
#if ARCH_ARM
...
...
libavcodec/huffman.c
View file @
8f8bc923
...
...
@@ -24,6 +24,8 @@
* huffman tree builder and VLC generator
*/
#include <stdint.h>
#include "avcodec.h"
#include "get_bits.h"
#include "huffman.h"
...
...
libavcodec/iff.c
View file @
8f8bc923
...
...
@@ -25,6 +25,8 @@
* IFF PBM/ILBM bitmap decoder
*/
#include <stdint.h>
#include "libavutil/imgutils.h"
#include "bytestream.h"
#include "avcodec.h"
...
...
libavcodec/mpeg12enc.c
View file @
8f8bc923
...
...
@@ -25,6 +25,8 @@
* MPEG1/2 encoder
*/
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
...
...
libavcodec/mpegvideo_enc.c
View file @
8f8bc923
...
...
@@ -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"
...
...
libavcodec/options_table.h
View file @
8f8bc923
...
...
@@ -22,6 +22,7 @@
#include <float.h>
#include <limits.h>
#include <stdint.h>
#include "libavutil/opt.h"
#include "avcodec.h"
...
...
libavcodec/parser.c
View file @
8f8bc923
...
...
@@ -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"
...
...
libavfilter/af_asyncts.c
View file @
8f8bc923
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavresample/avresample.h"
#include "libavutil/attributes.h"
#include "libavutil/audio_fifo.h"
...
...
libavfilter/trim.c
View file @
8f8bc923
...
...
@@ -18,6 +18,7 @@
#include <float.h>
#include <math.h>
#include <stdint.h>
#include "config.h"
...
...
libavfilter/vf_fps.c
View file @
8f8bc923
...
...
@@ -22,6 +22,7 @@
*/
#include <float.h>
#include <stdint.h>
#include "libavutil/common.h"
#include "libavutil/fifo.h"
...
...
libavfilter/vsrc_movie.c
View file @
8f8bc923
...
...
@@ -29,6 +29,7 @@
*/
#include <float.h>
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/avstring.h"
...
...
libavformat/aiffenc.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/intfloat.h"
#include "avformat.h"
#include "internal.h"
...
...
libavformat/assdec.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/mathematics.h"
#include "avformat.h"
#include "internal.h"
...
...
libavformat/avidec.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/avstring.h"
#include "libavutil/bswap.h"
#include "libavutil/dict.h"
...
...
libavformat/ffmdec.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "avformat.h"
...
...
libavformat/hlsenc.c
View file @
8f8bc923
...
...
@@ -20,6 +20,7 @@
*/
#include <float.h>
#include <stdint.h>
#include "libavutil/mathematics.h"
#include "libavutil/parseutils.h"
...
...
libavformat/matroskaenc.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "avc.h"
#include "avformat.h"
#include "avlanguage.h"
...
...
libavformat/mov.c
View file @
8f8bc923
...
...
@@ -24,6 +24,7 @@
*/
#include <limits.h>
#include <stdint.h>
//#define MOV_EXPORT_ALL_METADATA
...
...
libavformat/movenc.c
View file @
8f8bc923
...
...
@@ -21,6 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "movenc.h"
#include "avformat.h"
#include "avio_internal.h"
...
...
libavformat/mpegenc.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/fifo.h"
#include "libavutil/log.h"
...
...
libavformat/mxfdec.c
View file @
8f8bc923
...
...
@@ -43,6 +43,8 @@
* Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
*/
#include <stdint.h>
#include "libavutil/aes.h"
#include "libavutil/mathematics.h"
#include "libavcodec/bytestream.h"
...
...
libavformat/nutenc.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "libavutil/tree.h"
...
...
libavformat/oggenc.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/crc.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
...
...
libavformat/rl2.c
View file @
8f8bc923
...
...
@@ -32,6 +32,8 @@
* optional background_frame
*/
#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "avformat.h"
...
...
libavformat/rpl.c
View file @
8f8bc923
...
...
@@ -19,11 +19,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include <stdlib.h>
#include "libavutil/avstring.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "internal.h"
#include <stdlib.h>
#define RPL_SIGNATURE "ARMovie\x0A"
#define RPL_SIGNATURE_SIZE 8
...
...
libavformat/seek.c
View file @
8f8bc923
...
...
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "seek.h"
#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
...
...
libavformat/utils.c
View file @
8f8bc923
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
...
...
libavformat/wavdec.c
View file @
8f8bc923
...
...
@@ -23,6 +23,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/avassert.h"
#include "libavutil/dict.h"
#include "libavutil/log.h"
...
...
libavformat/xwma.c
View file @
8f8bc923
...
...
@@ -20,6 +20,7 @@
*/
#include <inttypes.h>
#include <stdint.h>
#include "avformat.h"
#include "internal.h"
...
...
libavresample/options.c
View file @
8f8bc923
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
...
...
libavutil/channel_layout.c
View file @
8f8bc923
...
...
@@ -23,6 +23,8 @@
* audio channel layout utility functions
*/
#include <stdint.h>
#include "avstring.h"
#include "avutil.h"
#include "channel_layout.h"
...
...
libavutil/common.h
View file @
8f8bc923
...
...
@@ -30,6 +30,7 @@
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
libavutil/cpu.c
View file @
8f8bc923
...
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "cpu.h"
#include "cpu_internal.h"
#include "config.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment