Use both internal and external UIs
[juce-lv2.git] / juce / source / src / audio / audio_file_formats / juce_AiffAudioFormat.h
blobb5659e2761936ae4cbbab38508eb071640e3cd42
1 /*
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 //==============================================================================
33 /**
34 Reads and Writes AIFF format audio files.
36 @see AudioFormat
38 class JUCE_API AiffAudioFormat : public AudioFormat
40 public:
41 //==============================================================================
42 /** Creates an format object. */
43 AiffAudioFormat();
45 /** Destructor. */
46 ~AiffAudioFormat();
48 //==============================================================================
49 const Array <int> getPossibleSampleRates();
50 const Array <int> getPossibleBitDepths();
51 bool canDoStereo();
52 bool canDoMono();
54 #if JUCE_MAC
55 bool canHandleFile (const File& fileToTest);
56 #endif
58 //==============================================================================
59 AudioFormatReader* createReaderFor (InputStream* sourceStream,
60 bool deleteStreamIfOpeningFails);
62 AudioFormatWriter* createWriterFor (OutputStream* streamToWriteTo,
63 double sampleRateToUse,
64 unsigned int numberOfChannels,
65 int bitsPerSample,
66 const StringPairArray& metadataValues,
67 int qualityOptionIndex);
70 private:
71 JUCE_LEAK_DETECTOR (AiffAudioFormat);
75 #endif // __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__