mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-21 22:52:52 +00:00
Fix mp3 bit rate info in sceMp3GetBitRate().
This commit is contained in:
parent
fe1f4d53c6
commit
2a478c26ca
@ -380,7 +380,7 @@ int sceMp3Init(u32 mp3) {
|
||||
|
||||
ctx->mp3SamplingRate = ctx->decoder_context->sample_rate;
|
||||
ctx->mp3Channels = ctx->decoder_context->channels;
|
||||
ctx->mp3Bitrate = ctx->decoder_context->bit_rate;
|
||||
ctx->mp3Bitrate = ctx->decoder_context->bit_rate / 1000;
|
||||
|
||||
if (!ctx->resampler_context) {
|
||||
ERROR_LOG(HLE, "Could not allocate resampler context %d", ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user