Merge branch 'audiorecorder-1.1.30'

This commit is contained in:
Alexey Kuznetsov 2016-03-29 19:05:34 +03:00
commit 193d73cfd2
2 changed files with 5 additions and 4 deletions

View file

@ -8,8 +8,8 @@ android {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 16
targetSdkVersion 23
versionCode 50
versionName "1.1.29"
versionCode 51
versionName "1.1.30"
}
signingConfigs {
release {

View file

@ -282,8 +282,9 @@ public class PitchView extends ViewGroup {
y += dp2px(2);
float left = data.get(end);
float right = data.get(end);
float dB = data.get(end) / RawSamples.MAXIMUM_DB;
float left = dB;
float right = dB;
float mid = getWidth() / 2f;