REVISION
Definition in file DECODER__oggmedia.c.
#include "../SYSTEM/sys_hardware.h"
#include "../MESSAGE/message.h"
#include "../codec/codec.h"
#include "../AUDIO/audio.h"
#include "decoder.h"
#include "vorbis/OGGV_ogg.h"
Include dependency graph for DECODER__oggmedia.c:

Go to the source code of this file.
Functions | |
| unsigned long | DECODER__oggRead (unsigned short *pDst, unsigned long strmLen) |
| Function serves as the OGG decoder media access handle. | |
| int | DECODER_seek (unsigned long offset) |
| Function seeks to set up Ogg media pointer. | |
| USHORT | DECODER__oggmedia (void) |
| Function serves as the OGG decoder media access task handle. | |
|
|
Function serves as the OGG decoder media access task handle.
Definition at line 78 of file DECODER__oggmedia.c. References Decoder. 00079 {
00080 OGGV_demux(&Decoder);
00081 return 0;
00082 }
|
|
||||||||||||
|
Function serves as the OGG decoder media access handle.
!! Definition at line 44 of file DECODER__oggmedia.c. References Audio, DECODER_getData(), and st_AUDIO::fptr. 00045 {
00047 // Assuming the request length is never bigger than 0x0ffff.
00048 unsigned short dataLen;
00049
00050 dataLen = DECODER_getData((int *)pDst, Audio.fptr, strmLen);
00051 Audio.fptr += dataLen;
00052 return (unsigned long)dataLen;
00053 }
|
Here is the call graph for this function:

|
|
Function seeks to set up Ogg media pointer.
Definition at line 65 of file DECODER__oggmedia.c. References Audio, and st_AUDIO::fptr.
|
1.3.9.1