This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Add missing header #includes.
Originally committed as revision 14497 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun
17 years ago
parent
82cee279a5
commit
2e11268ea9
12 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
libavformat/avformat.h
+2
-0
libavformat/ffm.h
+1
-0
libavformat/nut.h
+1
-0
libavformat/oggdec.h
+2
-0
libavformat/os_support.h
+1
-0
libavformat/raw.h
+1
-0
libavformat/rm.h
+1
-0
libavformat/rtp.h
+1
-0
libavformat/rtp_aac.h
+1
-0
libavformat/rtp_h264.h
+1
-0
libavformat/rtp_mpv.h
+1
-0
libavformat/swf.h
+ 1
- 0
libavformat/avformat.h
View File
@@ -35,6 +35,7 @@
#define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
#include <stdint.h>
#include <time.h>
#include <stdio.h> /* FILE */
#include "libavcodec/avcodec.h"
+ 2
- 0
libavformat/ffm.h
View File
@@ -22,7 +22,9 @@
#ifndef FFMPEG_FFM_H
#define FFMPEG_FFM_H
#include <stdint.h>
#include "avformat.h"
#include "avio.h"
/* The FFM file is made of blocks of fixed size */
#define FFM_HEADER_SIZE 14
+ 1
- 0
libavformat/nut.h
View File
@@ -22,6 +22,7 @@
#ifndef FFMPEG_NUT_H
#define FFMPEG_NUT_H
#include <stdint.h>
//#include <limits.h>
//#include "libavutil/adler32.h"
//#include "libavcodec/mpegaudio.h"
+ 1
- 0
libavformat/oggdec.h
View File
@@ -25,6 +25,7 @@
#ifndef FFMPEG_OGGDEC_H
#define FFMPEG_OGGDEC_H
#include <stdint.h>
#include "avformat.h"
typedef struct ogg_codec {
+ 2
- 0
libavformat/os_support.h
View File
@@ -27,6 +27,8 @@
* miscellaneous OS support macros and functions.
*/
#include "config.h"
#ifdef __MINGW32__
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
+ 1
- 0
libavformat/raw.h
View File
@@ -22,6 +22,7 @@
#ifndef FFMPEG_RAW_H
#define FFMPEG_RAW_H
#include <stdint.h>
#include "avformat.h"
int pcm_read_seek(AVFormatContext *s,
+ 1
- 0
libavformat/rm.h
View File
@@ -22,6 +22,7 @@
#ifndef FFMPEG_RM_H
#define FFMPEG_RM_H
#include <stdint.h>
#include "avformat.h"
+ 1
- 0
libavformat/rtp.h
View File
@@ -21,6 +21,7 @@
#ifndef FFMPEG_RTP_H
#define FFMPEG_RTP_H
#include <stdint.h>
#include "libavcodec/avcodec.h"
#include "avformat.h"
+ 1
- 0
libavformat/rtp_aac.h
View File
@@ -20,6 +20,7 @@
#ifndef FFMPEG_RTP_AAC_H
#define FFMPEG_RTP_AAC_H
#include <stdint.h>
#include "avformat.h"
void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size);
+ 1
- 0
libavformat/rtp_h264.h
View File
@@ -22,6 +22,7 @@
#ifndef FFMPEG_RTP_H264_H
#define FFMPEG_RTP_H264_H
#include <stdint.h>
#include "rtp_internal.h"
extern RTPDynamicProtocolHandler ff_h264_dynamic_handler;
+ 1
- 0
libavformat/rtp_mpv.h
View File
@@ -20,6 +20,7 @@
#ifndef FFMPEG_RTP_MPV_H
#define FFMPEG_RTP_MPV_H
#include <stdint.h>
#include "avformat.h"
void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size);
+ 1
- 0
libavformat/swf.h
View File
@@ -25,6 +25,7 @@
#include "libavutil/fifo.h"
#include "avformat.h"
#include "avio.h"
#include "riff.h" /* for CodecTag */
/* should have a generic way to indicate probable size */
Write
Preview
Loading…
Cancel
Save