Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2e11268e
Commit
2e11268e
authored
Aug 01, 2008
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing header #includes.
Originally committed as revision 14497 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
82cee279
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
14 additions
and
0 deletions
+14
-0
avformat.h
libavformat/avformat.h
+1
-0
ffm.h
libavformat/ffm.h
+2
-0
nut.h
libavformat/nut.h
+1
-0
oggdec.h
libavformat/oggdec.h
+1
-0
os_support.h
libavformat/os_support.h
+2
-0
raw.h
libavformat/raw.h
+1
-0
rm.h
libavformat/rm.h
+1
-0
rtp.h
libavformat/rtp.h
+1
-0
rtp_aac.h
libavformat/rtp_aac.h
+1
-0
rtp_h264.h
libavformat/rtp_h264.h
+1
-0
rtp_mpv.h
libavformat/rtp_mpv.h
+1
-0
swf.h
libavformat/swf.h
+1
-0
No files found.
libavformat/avformat.h
View file @
2e11268e
...
...
@@ -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"
...
...
libavformat/ffm.h
View file @
2e11268e
...
...
@@ -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
...
...
libavformat/nut.h
View file @
2e11268e
...
...
@@ -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"
...
...
libavformat/oggdec.h
View file @
2e11268e
...
...
@@ -25,6 +25,7 @@
#ifndef FFMPEG_OGGDEC_H
#define FFMPEG_OGGDEC_H
#include <stdint.h>
#include "avformat.h"
typedef
struct
ogg_codec
{
...
...
libavformat/os_support.h
View file @
2e11268e
...
...
@@ -27,6 +27,8 @@
* miscellaneous OS support macros and functions.
*/
#include "config.h"
#ifdef __MINGW32__
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
...
...
libavformat/raw.h
View file @
2e11268e
...
...
@@ -22,6 +22,7 @@
#ifndef FFMPEG_RAW_H
#define FFMPEG_RAW_H
#include <stdint.h>
#include "avformat.h"
int
pcm_read_seek
(
AVFormatContext
*
s
,
...
...
libavformat/rm.h
View file @
2e11268e
...
...
@@ -22,6 +22,7 @@
#ifndef FFMPEG_RM_H
#define FFMPEG_RM_H
#include <stdint.h>
#include "avformat.h"
...
...
libavformat/rtp.h
View file @
2e11268e
...
...
@@ -21,6 +21,7 @@
#ifndef FFMPEG_RTP_H
#define FFMPEG_RTP_H
#include <stdint.h>
#include "libavcodec/avcodec.h"
#include "avformat.h"
...
...
libavformat/rtp_aac.h
View file @
2e11268e
...
...
@@ -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
);
...
...
libavformat/rtp_h264.h
View file @
2e11268e
...
...
@@ -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
;
...
...
libavformat/rtp_mpv.h
View file @
2e11268e
...
...
@@ -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
);
...
...
libavformat/swf.h
View file @
2e11268e
...
...
@@ -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
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