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
c26e58e3
Commit
c26e58e3
authored
Mar 06, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing #includes
Originally committed as revision 22258 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5189573c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
0 deletions
+7
-0
snow.c
libavcodec/snow.c
+1
-0
idct_mmx_xvid.c
libavcodec/x86/idct_mmx_xvid.c
+1
-0
snowdsp_mmx.c
libavcodec/x86/snowdsp_mmx.c
+1
-0
vp3dsp_mmx.c
libavcodec/x86/vp3dsp_mmx.c
+1
-0
vp3dsp_sse2.c
libavcodec/x86/vp3dsp_sse2.c
+1
-0
alldevices.c
libavdevice/alldevices.c
+1
-0
utils.c
libavformat/utils.c
+1
-0
No files found.
libavcodec/snow.c
View file @
c26e58e3
...
...
@@ -26,6 +26,7 @@
#include "mathops.h"
#include "mpegvideo.h"
#include "h263.h"
#undef NDEBUG
#include <assert.h>
...
...
libavcodec/x86/idct_mmx_xvid.c
View file @
c26e58e3
...
...
@@ -41,6 +41,7 @@
#include <inttypes.h>
#include "libavcodec/avcodec.h"
#include "idct_xvid.h"
//=============================================================================
// Macros and other preprocessor constants
...
...
libavcodec/x86/snowdsp_mmx.c
View file @
c26e58e3
...
...
@@ -22,6 +22,7 @@
#include "libavutil/x86_cpu.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/snow.h"
#include "dsputil_mmx.h"
void
ff_snow_horizontal_compose97i_sse2
(
IDWTELEM
*
b
,
int
width
){
const
int
w2
=
(
width
+
1
)
>>
1
;
...
...
libavcodec/x86/vp3dsp_mmx.c
View file @
c26e58e3
...
...
@@ -26,6 +26,7 @@
#include "libavutil/x86_cpu.h"
#include "libavcodec/dsputil.h"
#include "dsputil_mmx.h"
#include "vp3dsp_mmx.h"
extern
const
uint16_t
ff_vp3_idct_data
[];
...
...
libavcodec/x86/vp3dsp_sse2.c
View file @
c26e58e3
...
...
@@ -25,6 +25,7 @@
#include "libavcodec/dsputil.h"
#include "dsputil_mmx.h"
#include "vp3dsp_sse2.h"
DECLARE_ALIGNED
(
16
,
const
uint16_t
,
ff_vp3_idct_data
)[
7
*
8
]
=
{
...
...
libavdevice/alldevices.c
View file @
c26e58e3
...
...
@@ -20,6 +20,7 @@
#include "config.h"
#include "libavformat/avformat.h"
#include "avdevice.h"
#define REGISTER_OUTDEV(X,x) { \
extern AVOutputFormat x##_muxer; \
...
...
libavformat/utils.c
View file @
c26e58e3
...
...
@@ -24,6 +24,7 @@
#include "metadata.h"
#include "libavutil/avstring.h"
#include "riff.h"
#include "audiointerleave.h"
#include <sys/time.h>
#include <time.h>
#include <strings.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