mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 11:49:00 +00:00
fixes
This commit is contained in:
parent
e4f136344c
commit
e259bb6609
1 changed files with 2 additions and 2 deletions
|
@ -183,7 +183,7 @@ class COpusFile : public IDecoder
|
|||
uint32 m_nRate;
|
||||
uint32 m_nChannels;
|
||||
public:
|
||||
_declspec(noinline) COpusFile(const char *path) : m_FileH(nil),
|
||||
COpusFile(const char *path) : m_FileH(nil),
|
||||
m_bOpened(false),
|
||||
m_nRate(0),
|
||||
m_nChannels(0)
|
||||
|
@ -194,7 +194,7 @@ public:
|
|||
if (m_FileH) {
|
||||
m_nChannels = op_head(m_FileH, 0)->channel_count;
|
||||
m_nRate = op_head(m_FileH, 0)->input_sample_rate;
|
||||
auto tags = op_tags(m_FileH, 0);
|
||||
const OpusTags *tags = op_tags(m_FileH, 0);
|
||||
for (int i = 0; i < tags->comments; i++) {
|
||||
if (strncmp(tags->user_comments[i], "SAMPLERATE", sizeof("SAMPLERATE")-1) == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue