Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
f0a838e5
Commit
f0a838e5
authored
Nov 24, 2007
by
Diego Biurrun
Browse files
Add missing #includes to fix 'make checkheaders'.
Originally committed as revision 11087 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
536333a0
Changes
7
Hide whitespace changes
Inline
Side-by-side
cmdutils.h
View file @
f0a838e5
...
...
@@ -22,6 +22,8 @@
#ifndef FFMPEG_CMDUTILS_H
#define FFMPEG_CMDUTILS_H
#include <inttypes.h>
typedef
struct
{
const
char
*
name
;
int
flags
;
...
...
libavcodec/intrax8.h
View file @
f0a838e5
...
...
@@ -19,6 +19,9 @@
#ifndef FFMPEG_INTRAX8_H
#define FFMPEG_INTRAX8_H
#include "bitstream.h"
#include "mpegvideo.h"
typedef
struct
{
VLC
*
j_ac_vlc
[
4
];
//they point to the static j_mb_vlc
VLC
*
j_orient_vlc
;
...
...
libavformat/asfcrypt.h
View file @
f0a838e5
...
...
@@ -22,6 +22,8 @@
#ifndef FFMPEG_ASFCRYPT_H
#define FFMPEG_ASFCRYPT_H
#include <inttypes.h>
void
ff_asfcrypt_dec
(
const
uint8_t
key
[
20
],
uint8_t
*
data
,
int
len
);
#endif
/* FFMPEG_ASFCRYPT_H */
libavformat/rtp_aac.h
View file @
f0a838e5
...
...
@@ -20,6 +20,8 @@
#ifndef FFMPEG_RTP_AAC_H
#define FFMPEG_RTP_AAC_H
#include "avformat.h"
void
ff_rtp_send_aac
(
AVFormatContext
*
s1
,
const
uint8_t
*
buff
,
int
size
);
#endif
/* FFMPEG_RTP_AAC_H */
libavformat/rtp_mpv.h
View file @
f0a838e5
...
...
@@ -20,6 +20,8 @@
#ifndef FFMPEG_RTP_MPV_H
#define FFMPEG_RTP_MPV_H
#include "avformat.h"
void
ff_rtp_send_mpegvideo
(
AVFormatContext
*
s1
,
const
uint8_t
*
buf1
,
int
size
);
#endif
/* FFMPEG_RTP_MPV_H */
libavutil/des.h
View file @
f0a838e5
...
...
@@ -22,6 +22,8 @@
#ifndef FFMPEG_DES_H
#define FFMPEG_DES_H
#include <inttypes.h>
/**
* \brief en- or decrypt an 64-bit block of data with DES
* \param in data to process.
...
...
libavutil/rc4.h
View file @
f0a838e5
...
...
@@ -21,6 +21,8 @@
#ifndef FFMPEG_RC4_H
#define FFMPEG_RC4_H
#include <inttypes.h>
void
ff_rc4_enc
(
const
uint8_t
*
key
,
int
keylen
,
uint8_t
*
data
,
int
datalen
);
#endif
/* FFMPEG_RC4_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