Fixed Linux FFMpeg -- Matriark

This commit is contained in:
Kevin Slaughter
2004-04-01 10:21:08 +00:00
parent 7b4a86dee7
commit 9e141f3f78
3 changed files with 19 additions and 4 deletions
@@ -99,7 +99,7 @@ RageMovieTexture *MakeRageMovieTexture(RageTextureID ID)
#ifdef _WINDOWS
if (!Driver.CompareNoCase("DShow")) ret = new MovieTexture_DShow(ID);
#endif
#ifdef SUPPORT_MOVIETEXTURE_FFMPEG
#ifdef HAVE_FFMPEG
if (!Driver.CompareNoCase("FFMpeg")) ret = new MovieTexture_FFMpeg(ID);
#endif
if (!Driver.CompareNoCase("Null")) ret = new MovieTexture_Null(ID);
@@ -9,8 +9,6 @@
#include "SDL_mutex.h"
#define SUPPORT_MOVIETEXTURE_FFMPEG
/* Fix a compile problem in gcc 3.2: */
#if defined(HAVE_INTTYPES_H)
#include <inttypes.h>