audio/praat: update to 6.2.03, latest upstream

Mostly minor bugfixes, release notes at
	https://www.fon.hum.uva.nl/praat/manual/What_s_new_.html
This commit is contained in:
Adriaan de Groot
2021-12-06 13:51:50 +01:00
parent a6bb37cabe
commit c2862be723
3 changed files with 26 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
PORTNAME= praat
DISTVERSIONPREFIX= v
DISTVERSION= 6.2.01
PORTREVISION= 1
DISTVERSION= 6.2.03
CATEGORIES= audio science
MAINTAINER= adridg@FreeBSD.org

View File

@@ -1,3 +1,3 @@
TIMESTAMP = 1637416733
SHA256 (praat-praat-v6.2.01_GH0.tar.gz) = c029607f646642bbb945d622f9b58261ba403e72a438e7cbebc281db6171bca2
SIZE (praat-praat-v6.2.01_GH0.tar.gz) = 33690593
TIMESTAMP = 1638794899
SHA256 (praat-praat-v6.2.03_GH0.tar.gz) = c15c1d1500e13cc98f757bf2de04901d41d7310e774df435d3a0c8b8b0f471c6
SIZE (praat-praat-v6.2.03_GH0.tar.gz) = 33697983

View File

@@ -0,0 +1,22 @@
commit aee0e0cedad91278299550de0de109ec15a789f7
Author: Adriaan de Groot <groot@kde.org>
Date: Mon Dec 6 16:08:34 2021 +0100
Fix build with -Werror
- Although this function isn't called, building praat with
picky flags -- such as -Werror -- fails because the function
doesn't return anything.
diff --git LPC/PowerCepstrum.cpp LPC/PowerCepstrum.cpp
index a00890c28..6358ecca3 100644
--- LPC/PowerCepstrum.cpp
+++ LPC/PowerCepstrum.cpp
@@ -397,7 +397,7 @@ static autoMAT PowerCepstrum_getRhamonicsPower (PowerCepstrum me, double pitchFl
}
double PowerCepstrum_nearestPeak (PowerCepstrum me, double quefrency) {
-
+ return 0.0;
}
autoTable PowerCepstrum_to_Table_rhamonics (PowerCepstrum me, double pitchFloor, double pitchCeiling, double f0fractionalWidth) {