summaryrefslogtreecommitdiff
path: root/audio/ecasound/files/patch-ac
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-12-26 05:52:15 +0000
committerWill Andrews <will@FreeBSD.org>2000-12-26 05:52:15 +0000
commitc2493667ad95bb6644e7425e4e2d4dc0631f1f72 (patch)
tree502f5e54bf424cb4507bb286a8ef9e904e992627 /audio/ecasound/files/patch-ac
parentAdd tas 1.0, a traffic accounting system that picks up ip and application (diff)
Add ecasound 1.8.5d15, a software package designed for multitrack audio
processing. PR: 23778 Submitted by: The Anarcat <beaupran@iro.umontreal.ca>
Notes
Notes: svn path=/head/; revision=36366
Diffstat (limited to 'audio/ecasound/files/patch-ac')
-rw-r--r--audio/ecasound/files/patch-ac16
1 files changed, 16 insertions, 0 deletions
diff --git a/audio/ecasound/files/patch-ac b/audio/ecasound/files/patch-ac
new file mode 100644
index 000000000000..20f936e65a29
--- /dev/null
+++ b/audio/ecasound/files/patch-ac
@@ -0,0 +1,16 @@
+--- libecasound/eca-chainsetup-position.cpp.orig Fri Oct 6 18:08:00 2000
++++ libecasound/eca-chainsetup-position.cpp Wed Dec 20 00:42:14 2000
+@@ -43,11 +43,11 @@
+ }
+
+ long int ECA_CHAINSETUP_POSITION::length_in_seconds(void) const {
+- return(static_cast<double>(length_rep) / srate_rep);
++ return(static_cast<long int>(length_rep) / srate_rep);
+ }
+
+ long int ECA_CHAINSETUP_POSITION::position_in_seconds(void) const {
+- return(static_cast<double>(curpos_rep) / srate_rep);
++ return(static_cast<long int>(curpos_rep) / srate_rep);
+ }
+
+ double ECA_CHAINSETUP_POSITION::length_in_seconds_exact(void) const {