Update of /cvsroot/audacity/audacity-src/src/export
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23556/src/export

Modified Files:
        Export.cpp 
Log Message:
Fix:

P3      Exporting audio with a length of 22,752072 samples or multiples thereof 
causes samples to be missing from the end of the exported file.

Index: Export.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/export/Export.cpp,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- Export.cpp  4 Apr 2009 23:25:54 -0000       1.92
+++ Export.cpp  9 Apr 2009 14:33:49 -0000       1.93
@@ -413,8 +413,8 @@
    // Tally how many are right, left, mono, and make sure at
    // least one track is selected (if selectedOnly==true)
 
-   float earliestBegin = mT1;
-   float latestEnd = mT0;
+   double earliestBegin = mT1;
+   double latestEnd = mT0;
 
    TrackList *tracks = mProject->GetTracks();
    TrackListIterator iter1(tracks);


------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to