mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
Merge branch 'master' of https://github.com/xia-chu/ZLMediaKit
This commit is contained in:
commit
b9fad1e5f3
@ -30,12 +30,12 @@ void AudioSRC::setOutputAudioConfig(const SDL_AudioSpec &cfg) {
|
|||||||
}
|
}
|
||||||
InfoL << "audio cvt origin format, freq:" << freq << ", format:" << hex << format << dec << ", channels:" << channels;
|
InfoL << "audio cvt origin format, freq:" << freq << ", format:" << hex << format << dec << ", channels:" << channels;
|
||||||
InfoL << "audio cvt info, "
|
InfoL << "audio cvt info, "
|
||||||
<< "needed:" << _audio_cvt.needed
|
<< "needed:" << (int)_audio_cvt.needed
|
||||||
<< ", src_format:" << hex << _audio_cvt.src_format
|
<< ", src_format:" << hex << (SDL_AudioFormat)_audio_cvt.src_format
|
||||||
<< ", dst_format:" << _audio_cvt.dst_format << dec
|
<< ", dst_format:" << (SDL_AudioFormat)_audio_cvt.dst_format << dec
|
||||||
<< ", rate_incr:" << _audio_cvt.rate_incr
|
<< ", rate_incr:" << (double)_audio_cvt.rate_incr
|
||||||
<< ", len_mult:" << _audio_cvt.len_mult
|
<< ", len_mult:" << (int)_audio_cvt.len_mult
|
||||||
<< ", len_ratio:" << _audio_cvt.len_ratio;
|
<< ", len_ratio:" << (double)_audio_cvt.len_ratio;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AudioSRC::setEnableMix(bool flag) {
|
void AudioSRC::setEnableMix(bool flag) {
|
||||||
|
Loading…
Reference in New Issue
Block a user