26 lines
275 B
C++
26 lines
275 B
C++
#ifndef LIME_MEDIA_FORMAT_OGG_H
|
|
#define LIME_MEDIA_FORMAT_OGG_H
|
|
|
|
|
|
#include <media/AudioBuffer.h>
|
|
#include <utils/Resource.h>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class OGG {
|
|
|
|
|
|
public:
|
|
|
|
static bool Decode (Resource *resource, AudioBuffer *audioBuffer);
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |