mirror of https://git.ffmpeg.org/ffmpeg.git
Add some missing #includes
Originally committed as revision 22258 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5189573c6d
commit
c26e58e32c
|
@ -26,6 +26,7 @@
|
||||||
#include "mathops.h"
|
#include "mathops.h"
|
||||||
|
|
||||||
#include "mpegvideo.h"
|
#include "mpegvideo.h"
|
||||||
|
#include "h263.h"
|
||||||
|
|
||||||
#undef NDEBUG
|
#undef NDEBUG
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
|
@ -41,6 +41,7 @@
|
||||||
|
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include "libavcodec/avcodec.h"
|
#include "libavcodec/avcodec.h"
|
||||||
|
#include "idct_xvid.h"
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
// Macros and other preprocessor constants
|
// Macros and other preprocessor constants
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#include "libavutil/x86_cpu.h"
|
#include "libavutil/x86_cpu.h"
|
||||||
#include "libavcodec/avcodec.h"
|
#include "libavcodec/avcodec.h"
|
||||||
#include "libavcodec/snow.h"
|
#include "libavcodec/snow.h"
|
||||||
|
#include "dsputil_mmx.h"
|
||||||
|
|
||||||
void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){
|
void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){
|
||||||
const int w2= (width+1)>>1;
|
const int w2= (width+1)>>1;
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include "libavutil/x86_cpu.h"
|
#include "libavutil/x86_cpu.h"
|
||||||
#include "libavcodec/dsputil.h"
|
#include "libavcodec/dsputil.h"
|
||||||
#include "dsputil_mmx.h"
|
#include "dsputil_mmx.h"
|
||||||
|
#include "vp3dsp_mmx.h"
|
||||||
|
|
||||||
extern const uint16_t ff_vp3_idct_data[];
|
extern const uint16_t ff_vp3_idct_data[];
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
#include "libavcodec/dsputil.h"
|
#include "libavcodec/dsputil.h"
|
||||||
#include "dsputil_mmx.h"
|
#include "dsputil_mmx.h"
|
||||||
|
#include "vp3dsp_sse2.h"
|
||||||
|
|
||||||
DECLARE_ALIGNED(16, const uint16_t, ff_vp3_idct_data)[7 * 8] =
|
DECLARE_ALIGNED(16, const uint16_t, ff_vp3_idct_data)[7 * 8] =
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "libavformat/avformat.h"
|
#include "libavformat/avformat.h"
|
||||||
|
#include "avdevice.h"
|
||||||
|
|
||||||
#define REGISTER_OUTDEV(X,x) { \
|
#define REGISTER_OUTDEV(X,x) { \
|
||||||
extern AVOutputFormat x##_muxer; \
|
extern AVOutputFormat x##_muxer; \
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include "metadata.h"
|
#include "metadata.h"
|
||||||
#include "libavutil/avstring.h"
|
#include "libavutil/avstring.h"
|
||||||
#include "riff.h"
|
#include "riff.h"
|
||||||
|
#include "audiointerleave.h"
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
|
|
Loading…
Reference in New Issue