Skip to content

Commit

Permalink
minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
i-saint committed May 30, 2017
1 parent e2d18f0 commit d1e8b00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public override void Initialize(object config, string outPath)
var sampleRate = AudioSettings.outputSampleRate;
if (sampleRate != 8000 && sampleRate != 12000 && sampleRate != 16000 && sampleRate != 24000 && sampleRate != 48000)
{
Debug.LogError("Output sample rate must be 8000, 12000, 16000, 24000 or 48000 to use Opus audio encoder. Fallback to Vorbis.");
Debug.LogError("Current output sample rate is " + sampleRate + ". It must be 8000, 12000, 16000, 24000 or 48000 to use Opus audio encoder. Fallback to Vorbis.");
m_config.audioEncoder = fcAPI.fcWebMAudioEncoder.Vorbis;
}
}
Expand Down

0 comments on commit d1e8b00

Please sign in to comment.