This commit is contained in:
Glenn Maynard
2005-10-20 10:56:36 +00:00
parent 240d8d904b
commit c00fa12e6c
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -194,6 +194,9 @@ RageMovieTexture *MakeRageMovieTexture(RageTextureID ID)
{
Driver = DriversToTry[i];
LOG->Trace("Initializing driver: %s", Driver.c_str());
#ifdef USE_MOVIE_TEXTURE_THEORA
if( !Driver.CompareNoCase("Theora") ) ret = new MovieTexture_Theora(ID);
#endif
#ifdef USE_MOVIE_TEXTURE_DSHOW
if( !Driver.CompareNoCase("DShow") ) ret = new MovieTexture_DShow(ID);
#endif
+1 -1
View File
@@ -26,7 +26,7 @@
#endif
/* MovieTexture drivers */
#define DEFAULT_MOVIE_DRIVER_LIST "FFMpeg,DShow,Null"
#define DEFAULT_MOVIE_DRIVER_LIST "Theora,FFMpeg,DShow,Null"
/* RageSoundDrivers */
#define DEFAULT_SOUND_DRIVER_LIST "ALSA,DirectSound,ALSA-sw,DirectSound-sw,CoreAudio,OSS,QT1,WaveOut,Null"