我正在测试我的用于android的audiorecording应用程序
我启动一个应用程序,实时录音,音频效果如下
它适用于均衡器,低音增强,preview.verroid提供的预设重置API
在结果中,至于均衡器和低音增强效果,它们似乎运行良好,但是预设效果...我不知道为什么因为Logcat没有错误..
presetreverb根本不工作,虽然它工作不好但我还是愿意看到它...
所以我求你SOF专家'帮助
问:你能通过我的源代码找出原因吗?
protected void onResume() {
super.onResume();
if (this.mainSwitch.isChecked()) {
this.audioForwarder.start();
}
this.visualizer.setEnabled(true);
boolean flag = this.eqSwitch.isChecked();
ViewGroup localViewGroup = this.eqSettings;
int i;
int j;
PresetReverb localPresetReverb;
localPresetReverb = this.reverb;
if (flag)
i = 0; // .setVisibility(0) -> View.VISIBLE
else
i = 8; // .setVisibility(8) -> View.GONE
localViewGroup.setVisibility(i); // .setVisibility(0) -> View.VISIBLE
this.equalizer.setEnabled(flag);
this.bassBoost.setEnabled(this.bassSwitch.isChecked());
j = this.reverbSpinner.getSelectedItemPosition();
if (j > 0) {
i = 8;
for (boolean flag1 = true;; flag1 = false) {
localPresetReverb.setEnabled(flag1);
if (this.reverb != null) {
this.reverb.setPreset((short) j);
}
Log.v("PresetReverb", this.reverb + "effect");
}
}
}
我试着继续期待你的帮助
任何想法都赞赏我,对我有很大的帮助
:)