Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
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
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
aacdec.c
libavcodec/aacdec.c
+1
-0
huffman.c
libavcodec/huffman.c
+2
-0
iff.c
libavcodec/iff.c
+2
-0
mpeg12enc.c
libavcodec/mpeg12enc.c
+2
-0
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+2
-0
options_table.h
libavcodec/options_table.h
+1
-0
parser.c
libavcodec/parser.c
+1
-0
af_asyncts.c
libavfilter/af_asyncts.c
+2
-0
trim.c
libavfilter/trim.c
+1
-0
vf_fps.c
libavfilter/vf_fps.c
+1
-0
vsrc_movie.c
libavfilter/vsrc_movie.c
+1
-0
aiffenc.c
libavformat/aiffenc.c
+2
-0
assdec.c
libavformat/assdec.c
+2
-0
avidec.c
libavformat/avidec.c
+2
-0
ffmdec.c
libavformat/ffmdec.c
+2
-0
hlsenc.c
libavformat/hlsenc.c
+1
-0
matroskaenc.c
libavformat/matroskaenc.c
+2
-0
mov.c
libavformat/mov.c
+1
-0
movenc.c
libavformat/movenc.c
+2
-0
mpegenc.c
libavformat/mpegenc.c
+2
-0
mxfdec.c
libavformat/mxfdec.c
+2
-0
nutenc.c
libavformat/nutenc.c
+2
-0
oggenc.c
libavformat/oggenc.c
+2
-0
rl2.c
libavformat/rl2.c
+2
-0
rpl.c
libavformat/rpl.c
+3
-1
seek.c
libavformat/seek.c
+2
-0
utils.c
libavformat/utils.c
+2
-0
wavdec.c
libavformat/wavdec.c
+2
-0
xwma.c
libavformat/xwma.c
+1
-0
options.c
libavresample/options.c
+2
-0
channel_layout.c
libavutil/channel_layout.c
+2
-0
common.h
libavutil/common.h
+1
-0
cpu.c
libavutil/cpu.c
+2
-0
No files found.
avconv.c
View file @
8f8bc923
...
@@ -27,6 +27,8 @@
...
@@ -27,6 +27,8 @@
#include <errno.h>
#include <errno.h>
#include <signal.h>
#include <signal.h>
#include <limits.h>
#include <limits.h>
#include <stdint.h>
#include "libavformat/avformat.h"
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
#include "libswscale/swscale.h"
...
...
avconv_filter.c
View file @
8f8bc923
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "avconv.h"
#include "avconv.h"
#include "libavfilter/avfilter.h"
#include "libavfilter/avfilter.h"
...
...
avplay.c
View file @
8f8bc923
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
#include <inttypes.h>
#include <inttypes.h>
#include <math.h>
#include <math.h>
#include <limits.h>
#include <limits.h>
#include <stdint.h>
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/colorspace.h"
#include "libavutil/colorspace.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
...
...
cmdutils.c
View file @
8f8bc923
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
*/
*/
#include <string.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#include <math.h>
#include <math.h>
...
...
libavcodec/aacdec.c
View file @
8f8bc923
...
@@ -103,6 +103,7 @@
...
@@ -103,6 +103,7 @@
#include <assert.h>
#include <assert.h>
#include <errno.h>
#include <errno.h>
#include <math.h>
#include <math.h>
#include <stdint.h>
#include <string.h>
#include <string.h>
#if ARCH_ARM
#if ARCH_ARM
...
...
libavcodec/huffman.c
View file @
8f8bc923
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
* huffman tree builder and VLC generator
* huffman tree builder and VLC generator
*/
*/
#include <stdint.h>
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "get_bits.h"
#include "huffman.h"
#include "huffman.h"
...
...
libavcodec/iff.c
View file @
8f8bc923
...
@@ -25,6 +25,8 @@
...
@@ -25,6 +25,8 @@
* IFF PBM/ILBM bitmap decoder
* IFF PBM/ILBM bitmap decoder
*/
*/
#include <stdint.h>
#include "libavutil/imgutils.h"
#include "libavutil/imgutils.h"
#include "bytestream.h"
#include "bytestream.h"
#include "avcodec.h"
#include "avcodec.h"
...
...
libavcodec/mpeg12enc.c
View file @
8f8bc923
...
@@ -25,6 +25,8 @@
...
@@ -25,6 +25,8 @@
* MPEG1/2 encoder
* MPEG1/2 encoder
*/
*/
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/log.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
...
...
libavcodec/mpegvideo_enc.c
View file @
8f8bc923
...
@@ -27,6 +27,8 @@
...
@@ -27,6 +27,8 @@
* The simplest mpeg encoder (well, it was the simplest!).
* The simplest mpeg encoder (well, it was the simplest!).
*/
*/
#include <stdint.h>
#include "libavutil/internal.h"
#include "libavutil/internal.h"
#include "libavutil/intmath.h"
#include "libavutil/intmath.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
...
...
libavcodec/options_table.h
View file @
8f8bc923
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <float.h>
#include <float.h>
#include <limits.h>
#include <limits.h>
#include <stdint.h>
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "avcodec.h"
...
...
libavcodec/parser.c
View file @
8f8bc923
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include <string.h>
#include <string.h>
#include "parser.h"
#include "parser.h"
...
...
libavfilter/af_asyncts.c
View file @
8f8bc923
...
@@ -16,6 +16,8 @@
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavresample/avresample.h"
#include "libavresample/avresample.h"
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/audio_fifo.h"
#include "libavutil/audio_fifo.h"
...
...
libavfilter/trim.c
View file @
8f8bc923
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include <float.h>
#include <float.h>
#include <math.h>
#include <math.h>
#include <stdint.h>
#include "config.h"
#include "config.h"
...
...
libavfilter/vf_fps.c
View file @
8f8bc923
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
*/
*/
#include <float.h>
#include <float.h>
#include <stdint.h>
#include "libavutil/common.h"
#include "libavutil/common.h"
#include "libavutil/fifo.h"
#include "libavutil/fifo.h"
...
...
libavfilter/vsrc_movie.c
View file @
8f8bc923
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
*/
*/
#include <float.h>
#include <float.h>
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
...
...
libavformat/aiffenc.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/intfloat.h"
#include "libavutil/intfloat.h"
#include "avformat.h"
#include "avformat.h"
#include "internal.h"
#include "internal.h"
...
...
libavformat/assdec.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "avformat.h"
#include "avformat.h"
#include "internal.h"
#include "internal.h"
...
...
libavformat/avidec.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/bswap.h"
#include "libavutil/bswap.h"
#include "libavutil/dict.h"
#include "libavutil/dict.h"
...
...
libavformat/ffmdec.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "libavutil/intfloat.h"
#include "avformat.h"
#include "avformat.h"
...
...
libavformat/hlsenc.c
View file @
8f8bc923
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
*/
*/
#include <float.h>
#include <float.h>
#include <stdint.h>
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavutil/parseutils.h"
#include "libavutil/parseutils.h"
...
...
libavformat/matroskaenc.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "avc.h"
#include "avc.h"
#include "avformat.h"
#include "avformat.h"
#include "avlanguage.h"
#include "avlanguage.h"
...
...
libavformat/mov.c
View file @
8f8bc923
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
*/
*/
#include <limits.h>
#include <limits.h>
#include <stdint.h>
//#define MOV_EXPORT_ALL_METADATA
//#define MOV_EXPORT_ALL_METADATA
...
...
libavformat/movenc.c
View file @
8f8bc923
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "movenc.h"
#include "movenc.h"
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "avio_internal.h"
...
...
libavformat/mpegenc.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/fifo.h"
#include "libavutil/fifo.h"
#include "libavutil/log.h"
#include "libavutil/log.h"
...
...
libavformat/mxfdec.c
View file @
8f8bc923
...
@@ -43,6 +43,8 @@
...
@@ -43,6 +43,8 @@
* Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
* Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
*/
*/
#include <stdint.h>
#include "libavutil/aes.h"
#include "libavutil/aes.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavcodec/bytestream.h"
#include "libavcodec/bytestream.h"
...
...
libavformat/nutenc.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavutil/tree.h"
#include "libavutil/tree.h"
...
...
libavformat/oggenc.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/crc.h"
#include "libavutil/crc.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
...
...
libavformat/rl2.c
View file @
8f8bc923
...
@@ -32,6 +32,8 @@
...
@@ -32,6 +32,8 @@
* optional background_frame
* optional background_frame
*/
*/
#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "avformat.h"
#include "avformat.h"
...
...
libavformat/rpl.c
View file @
8f8bc923
...
@@ -19,11 +19,13 @@
...
@@ -19,11 +19,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include <stdlib.h>
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/dict.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "avformat.h"
#include "internal.h"
#include "internal.h"
#include <stdlib.h>
#define RPL_SIGNATURE "ARMovie\x0A"
#define RPL_SIGNATURE "ARMovie\x0A"
#define RPL_SIGNATURE_SIZE 8
#define RPL_SIGNATURE_SIZE 8
...
...
libavformat/seek.c
View file @
8f8bc923
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "seek.h"
#include "seek.h"
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
#include "libavutil/mem.h"
...
...
libavformat/utils.c
View file @
8f8bc923
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "avio_internal.h"
#include "internal.h"
#include "internal.h"
...
...
libavformat/wavdec.c
View file @
8f8bc923
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/avassert.h"
#include "libavutil/avassert.h"
#include "libavutil/dict.h"
#include "libavutil/dict.h"
#include "libavutil/log.h"
#include "libavutil/log.h"
...
...
libavformat/xwma.c
View file @
8f8bc923
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
*/
*/
#include <inttypes.h>
#include <inttypes.h>
#include <stdint.h>
#include "avformat.h"
#include "avformat.h"
#include "internal.h"
#include "internal.h"
...
...
libavresample/options.c
View file @
8f8bc923
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "libavutil/mathematics.h"
#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
...
...
libavutil/channel_layout.c
View file @
8f8bc923
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
* audio channel layout utility functions
* audio channel layout utility functions
*/
*/
#include <stdint.h>
#include "avstring.h"
#include "avstring.h"
#include "avutil.h"
#include "avutil.h"
#include "channel_layout.h"
#include "channel_layout.h"
...
...
libavutil/common.h
View file @
8f8bc923
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include <inttypes.h>
#include <inttypes.h>
#include <limits.h>
#include <limits.h>
#include <math.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
...
...
libavutil/cpu.c
View file @
8f8bc923
...
@@ -16,6 +16,8 @@
...
@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include <stdint.h>
#include "cpu.h"
#include "cpu.h"
#include "cpu_internal.h"
#include "cpu_internal.h"
#include "config.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