mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Log error code if opus file cannot be opened
This commit is contained in:
parent
51012bcc1b
commit
cfb5b15222
|
@ -341,7 +341,8 @@ void CSound::RateConvert(CSample &Sample) const
|
||||||
|
|
||||||
bool CSound::DecodeOpus(CSample &Sample, const void *pData, unsigned DataSize) const
|
bool CSound::DecodeOpus(CSample &Sample, const void *pData, unsigned DataSize) const
|
||||||
{
|
{
|
||||||
OggOpusFile *pOpusFile = op_open_memory((const unsigned char *)pData, DataSize, nullptr);
|
int OpusError = 0;
|
||||||
|
OggOpusFile *pOpusFile = op_open_memory((const unsigned char *)pData, DataSize, &OpusError);
|
||||||
if(pOpusFile)
|
if(pOpusFile)
|
||||||
{
|
{
|
||||||
const int NumChannels = op_channel_count(pOpusFile, -1);
|
const int NumChannels = op_channel_count(pOpusFile, -1);
|
||||||
|
@ -380,7 +381,7 @@ bool CSound::DecodeOpus(CSample &Sample, const void *pData, unsigned DataSize) c
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dbg_msg("sound/opus", "failed to decode sample");
|
dbg_msg("sound/opus", "failed to decode sample, error %d", OpusError);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue