Miles Sound System SDK 7.2a

Register_RIB

The function Register_RIB registers a static library RIB interface on non-Win32 platforms such as Xbox, Sony Playstation 2 or DOS.

void Register_RIB(
  void * static_lib_name
);

In Parameters

static_lib_name
Name of the static RIB library to load.

Discussion

On the static library versions of Miles (Xbox, Wii, PS2, PS3 and DOS), you must manually load the ASI decompressors that you want to use.

This function (macro actually) takes a single paramater - the static library to load. Currently, the available static libraries include MP3Dec, OggDec, Voice, SRS, DolbySurround, and DSP. To load any or all of these libraries, you use this function before AIL_startup. For example:


Register_RIB(MP3Dec);
Register_RIB(DSP);
Register_RIB(Voice);
Register_RIB(XMADec);
Register_RIB(OGGDec);
AIL_startup();


Group: System Services
Related Sections: Integrating Miles into a Nintendo Wii Build Environment, Integrating Miles into a PlayStation 2 Build Environment, Integrating Miles into a PlayStation 3 Build Environment, Integrating Miles into a Xbox 360 Build Environment
Related Functions: AIL_startup
Related Basic Types: void, void *
Related FAQs: How do I initialize the Miles Sound System for use?

For technical support, e-mail Miles3@radgametools.com
© Copyright 1991-2007 RAD Game Tools, Inc. All Rights Reserved.