1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

cant compile on non x86 bugfix

Originally committed as revision 2536 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
Michael Niedermayer 2001-10-29 18:07:40 +00:00
parent 17f715fa64
commit e697a1413b
2 changed files with 4 additions and 0 deletions

View File

@ -1,7 +1,9 @@
#include <inttypes.h>
#include "../config.h"
#include "rgb2rgb.h"
#ifdef HAVE_MMX
#include "mmx.h"
#endif
#include "../mmx_defs.h"
void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)

View File

@ -1,7 +1,9 @@
#include <inttypes.h>
#include "../config.h"
#include "rgb2rgb.h"
#ifdef HAVE_MMX
#include "mmx.h"
#endif
#include "../mmx_defs.h"
void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)