This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
Originally committed as revision 19437 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Diego Biurrun
19 years ago
parent
f4bd289a04
commit
db3924f1fd
5 changed files
with
5 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libswscale/swscale-example.c
+1
-1
libswscale/swscale.c
+1
-1
libswscale/yuv2rgb.c
+1
-1
libswscale/yuv2rgb_altivec.c
+1
-1
libswscale/yuv2rgb_mlib.c
+ 1
- 1
libswscale/swscale-example.c
View File
@@ -23,7 +23,7 @@
#include <stdarg.h>
#include "swscale.h"
#include "img_format.h"
#include "
libmpcodecs/
img_format.h"
static int testFormat[]={
IMGFMT_YVU9,
+ 1
- 1
libswscale/swscale.c
View File
@@ -71,7 +71,7 @@ untested special converters
#include "swscale_internal.h"
#include "x86_cpu.h"
#include "bswap.h"
#include "img_format.h"
#include "
libmpcodecs/
img_format.h"
#include "rgb2rgb.h"
#ifdef USE_FASTMEMCPY
#include "libvo/fastmemcpy.h"
+ 1
- 1
libswscale/yuv2rgb.c
View File
@@ -39,7 +39,7 @@
#include "rgb2rgb.h"
#include "swscale.h"
#include "swscale_internal.h"
#include "img_format.h" //FIXME try to reduce dependency of such stuff
#include "
libmpcodecs/
img_format.h" //FIXME try to reduce dependency of such stuff
#ifdef HAVE_MLIB
#include "yuv2rgb_mlib.c"
+ 1
- 1
libswscale/yuv2rgb_altivec.c
View File
@@ -74,7 +74,7 @@
#include "rgb2rgb.h"
#include "swscale.h"
#include "swscale_internal.h"
#include "img_format.h" //FIXME try to reduce dependency of such stuff
#include "
libmpcodecs/
img_format.h" //FIXME try to reduce dependency of such stuff
#undef PROFILE_THE_BEAST
#undef INC_SCALING
+ 1
- 1
libswscale/yuv2rgb_mlib.c
View File
@@ -30,7 +30,7 @@
#include <stdlib.h>
#include <assert.h>
#include "lib
vo
/img_format.h" //FIXME try to reduce dependency of such stuff
#include "lib
mpcodecs
/img_format.h" //FIXME try to reduce dependency of such stuff
#include "swscale.h"
static int mlib_YUV2ARGB420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
Write
Preview
Loading…
Cancel
Save