8 lines
230 B
C++
8 lines
230 B
C++
#include <stdint.h>
|
|
#include <string>
|
|
|
|
namespace Opus{
|
|
uint16_t getPreSkip(const char *initData);
|
|
unsigned int Opus_getDuration(const char *part);
|
|
std::string Opus_prettyPacket(const char *part, int len);
|
|
}// namespace Opus
|