2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-11 by Raw Material Software Ltd.
7 ------------------------------------------------------------------------------
9 JUCE can be redistributed and/or modified under the terms of the GNU General
10 Public License (Version 2), as published by the Free Software Foundation.
11 A copy of the license is included in the JUCE distribution, or can be found
12 online at www.gnu.org/licenses.
14 JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 ------------------------------------------------------------------------------
20 To release a closed-source product which uses JUCE, commercial licenses are
21 available: visit www.rawmaterialsoftware.com/juce for more information.
23 ==============================================================================
26 #ifndef __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__
27 #define __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__
29 #include "juce_AudioFormat.h"
32 //==============================================================================
34 Reads and Writes AIFF format audio files.
38 class JUCE_API AiffAudioFormat
: public AudioFormat
41 //==============================================================================
42 /** Creates an format object. */
48 //==============================================================================
49 const Array
<int> getPossibleSampleRates();
50 const Array
<int> getPossibleBitDepths();
55 bool canHandleFile (const File
& fileToTest
);
58 //==============================================================================
59 AudioFormatReader
* createReaderFor (InputStream
* sourceStream
,
60 bool deleteStreamIfOpeningFails
);
62 AudioFormatWriter
* createWriterFor (OutputStream
* streamToWriteTo
,
63 double sampleRateToUse
,
64 unsigned int numberOfChannels
,
66 const StringPairArray
& metadataValues
,
67 int qualityOptionIndex
);
71 JUCE_LEAK_DETECTOR (AiffAudioFormat
);
75 #endif // __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__