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
9c9a0840
Commit
9c9a0840
authored
Mar 08, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add lots of missing includes
Originally committed as revision 22337 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8eecdc8b
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
1 deletion
+22
-1
aacsbrdata.h
libavcodec/aacsbrdata.h
+1
-0
binkdata.h
libavcodec/binkdata.h
+2
-0
flv.h
libavcodec/flv.h
+4
-0
h263.h
libavcodec/h263.h
+6
-0
lzw.h
libavcodec/lzw.h
+2
-0
mpeg4video.h
libavcodec/mpeg4video.h
+5
-0
synth_filter.h
libavcodec/synth_filter.h
+1
-1
intreadwrite.h
libavutil/x86/intreadwrite.h
+1
-0
No files found.
libavcodec/aacsbrdata.h
View file @
9c9a0840
...
...
@@ -29,6 +29,7 @@
#define AVCODEC_AACSBRDATA_H
#include <stdint.h>
#include "libavutil/mem.h"
///< Huffman tables for SBR
...
...
libavcodec/binkdata.h
View file @
9c9a0840
...
...
@@ -22,6 +22,8 @@
#ifndef AVCODEC_BINKDATA_H
#define AVCODEC_BINKDATA_H
#include <stdint.h>
/** Bink DCT and residue 8x8 block scan order */
static
const
uint8_t
bink_scan
[
64
]
=
{
0
,
1
,
8
,
9
,
2
,
3
,
10
,
11
,
...
...
libavcodec/flv.h
View file @
9c9a0840
...
...
@@ -20,6 +20,10 @@
#ifndef AVCODEC_FLV_H
#define AVCODEC_FLV_H
#include "mpegvideo.h"
#include "get_bits.h"
#include "put_bits.h"
void
ff_flv_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_flv2_encode_ac_esc
(
PutBitContext
*
pb
,
int
slevel
,
int
level
,
int
run
,
int
last
);
...
...
libavcodec/h263.h
View file @
9c9a0840
...
...
@@ -20,6 +20,12 @@
#ifndef AVCODEC_H263_H
#define AVCODEC_H263_H
#include <stdint.h>
#include "libavutil/rational.h"
#include "get_bits.h"
#include "mpegvideo.h"
#include "rl.h"
// The defines below define the number of bits that are read at once for
// reading vlc values. Changing these may improve speed and data cache needs
// be aware though that decreasing them may need the number of stages that is
...
...
libavcodec/lzw.h
View file @
9c9a0840
...
...
@@ -30,6 +30,8 @@
#ifndef AVCODEC_LZW_H
#define AVCODEC_LZW_H
#include <stdint.h>
struct
PutBitContext
;
enum
FF_LZW_MODES
{
...
...
libavcodec/mpeg4video.h
View file @
9c9a0840
...
...
@@ -23,6 +23,11 @@
#ifndef AVCODEC_MPEG4VIDEO_H
#define AVCODEC_MPEG4VIDEO_H
#include <stdint.h>
#include "get_bits.h"
#include "mpegvideo.h"
#include "rl.h"
// shapes
#define RECT_SHAPE 0
#define BIN_SHAPE 1
...
...
libavcodec/synth_filter.h
View file @
9c9a0840
...
...
@@ -21,7 +21,7 @@
#ifndef AVCODEC_SYNTH_FILTER_H
#define AVCODEC_SYNTH_FILTER_H
#include "
dsputil
.h"
#include "
fft
.h"
void
ff_synth_filter_float
(
FFTContext
*
imdct
,
float
*
synth_buf_ptr
,
int
*
synth_buf_offset
,
...
...
libavutil/x86/intreadwrite.h
View file @
9c9a0840
...
...
@@ -23,6 +23,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#if HAVE_MMX
...
...
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