1 /**
  2  * This file is part of the Web Enabled Audio and Sound Enhancement Library (aka the Weasel audio library) Copyright 2011 - 2013 Warren Willmey. It is covered by the GNU General Public License version 3 as published by the Free Software Foundation, you should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
  3  */
  4 
  5 if( undefined == window.weasel ) window.weasel = {};
  6 
  7 // ---------------------------------------------------------------------------
  8 /** Object containing constants that a Spreadpoint Soundtracker 2.5 module requires, in 
  9  * addition to those defined in FormatUltimateSoundTracker121, FormatDOCSoundTracker9 & FormatDOCSoundTracker22, FormatSpreadpointSoundTracker23, FormatNoiseTracker11.
 10  * 
 11  * @constructor
 12  * @const
 13  */
 14 weasel.FormatSpreadpointSoundTracker25 =
 15 {
 16 	/** The maximum size of a sample (in bytes) in a Spreadpoint Soundtracker 2.5 module.
 17 	 * @const
 18 	 * @type {int}
 19 	 */
 20 	MaxSampleSize:	65536
 21 };
 22