mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
SRS: Fix bug
This commit is contained in:
parent
aaebecbcc9
commit
a826926073
26 changed files with 116 additions and 10 deletions
|
@ -170,6 +170,7 @@ srs_error_t SrsAudioEncoder::initialize()
|
|||
|
||||
case 24000:
|
||||
opus_encoder_ctl(opus_, OPUS_SET_MAX_BANDWIDTH(OPUS_BANDWIDTH_SUPERWIDEBAND));
|
||||
break;
|
||||
|
||||
case 16000:
|
||||
opus_encoder_ctl(opus_, OPUS_SET_MAX_BANDWIDTH(OPUS_BANDWIDTH_WIDEBAND));
|
||||
|
@ -343,6 +344,11 @@ SrsAudioRecode::SrsAudioRecode(int channels, int samplerate)
|
|||
{
|
||||
size_ = 0;
|
||||
data_ = new char[kPcmBufMax];
|
||||
|
||||
dec_ = NULL;
|
||||
enc_ = NULL;
|
||||
resample_ = NULL;
|
||||
data_ = NULL;
|
||||
}
|
||||
|
||||
SrsAudioRecode::~SrsAudioRecode()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue