rpms/audacity-freeworld/F-14 audacity-1.3.12-fix-minimum-playspeed.patch, NONE, 1.1 audacity-freeworld.spec, 1.15, 1.16

David Timms dtimms at rpmfusion.org
Sun Oct 31 03:24:53 CET 2010


Author: dtimms

Update of /cvs/free/rpms/audacity-freeworld/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29093

Modified Files:
	audacity-freeworld.spec 
Added Files:
	audacity-1.3.12-fix-minimum-playspeed.patch 
Log Message:
fix hang when play at speed with ratio less than 0.09 is used (#637347)


audacity-1.3.12-fix-minimum-playspeed.patch:
 ASlider.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE audacity-1.3.12-fix-minimum-playspeed.patch ---
diff -ur audacity-src-1.3.12-beta.orig/src/widgets/ASlider.cpp audacity-src-1.3.12-beta/src/widgets/ASlider.cpp
--- audacity-src-1.3.12-beta.orig/src/widgets/ASlider.cpp	2010-03-30 22:28:31.000000000 +1100
+++ audacity-src-1.3.12-beta/src/widgets/ASlider.cpp	2010-10-04 19:22:25.000000000 +1100
@@ -397,7 +397,7 @@
       stepValue = STEP_CONTINUOUS;
       break;
    case SPEED_SLIDER:
-      minValue = 0.01f;
+      minValue = 0.09f; // libsamplerate lower limit is 1/12
       maxValue = 3.0f;
       stepValue = STEP_CONTINUOUS;
       break;


Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-14/audacity-freeworld.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- audacity-freeworld.spec	8 Aug 2010 22:00:23 -0000	1.15
+++ audacity-freeworld.spec	31 Oct 2010 02:24:52 -0000	1.16
@@ -1,7 +1,7 @@
 Name: audacity-freeworld
 
 Version: 1.3.12
-Release: 0.7.beta%{?dist}
+Release: 0.8.beta%{?dist}
 Summary: Multitrack audio editor
 Group:   Applications/Multimedia
 License: GPLv2
@@ -24,6 +24,7 @@
 Patch3: audacity-1.3.10-desktop.patch
 # ffmpeg-0.6: utils.c changed match_ext() to av_match_ext(). 
 Patch4: audacity-1.3.12-ffmpeg-0.6-apichange-av_match_ext.patch
+Patch7: audacity-1.3.12-fix-minimum-playspeed.patch
 
 Provides: audacity-nonfree = %{version}-%{release}
 Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -81,6 +82,8 @@
 %patch3 -p1 -b .old-desktop-file
 %patch4 -p1 -b .ffmpeg-0.6-apichange-av_match_ext
 
+%patch7 -p1 -b .fix-minimum-playspeed
+
 # Substitute occurences of "libmp3lame.so" with "libmp3lame.so.0".
 for i in locale/*.po src/export/ExportMP3.cpp
 do
@@ -156,6 +159,9 @@
 
 
 %changelog
+* Mon Oct 31 2010 David Timms <iinet.net.au at dtimms> - 1.3.12-0.8.beta
+- fix hang when play at speed with ratio less than 0.09 is used (#637347)
+
 * Sat Aug  7 2010 David Timms <iinet.net.au at dtimms> - 1.3.12-0.7.beta
 - patch to suit APIChange introduced in ffmpeg-0.6. Resolves rfbz #1356.
   fixes ffmpeg import/export.



More information about the rpmfusion-commits mailing list