| 
							- /*
 -   ==============================================================================
 - 
 -    This file is part of the JUCE 7 technical preview.
 -    Copyright (c) 2022 - Raw Material Software Limited
 - 
 -    You may use this code under the terms of the GPL v3
 -    (see www.gnu.org/licenses).
 - 
 -    For the technical preview this file cannot be licensed commercially.
 - 
 -    JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
 -    EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
 -    DISCLAIMED.
 - 
 -   ==============================================================================
 - */
 - 
 - namespace juce
 - {
 - 
 - #if JUCE_USE_MP3AUDIOFORMAT || DOXYGEN
 - 
 - //==============================================================================
 - /**
 -     Software-based MP3 decoding format (doesn't currently provide an encoder).
 - 
 -     IMPORTANT DISCLAIMER: By choosing to enable the JUCE_USE_MP3AUDIOFORMAT flag and
 -     to compile the MP3 code into your software, you do so AT YOUR OWN RISK! By doing so,
 -     you are agreeing that Raw Material Software Limited is in no way responsible for any patent,
 -     copyright, or other legal issues that you may suffer as a result.
 - 
 -     The code in juce_MP3AudioFormat.cpp is NOT guaranteed to be free from infringements of 3rd-party
 -     intellectual property. If you wish to use it, please seek your own independent advice about the
 -     legality of doing so. If you are not willing to accept full responsibility for the consequences
 -     of using this code, then do not enable the JUCE_USE_MP3AUDIOFORMAT setting.
 - 
 -     @tags{Audio}
 - */
 - class MP3AudioFormat  : public AudioFormat
 - {
 - public:
 -     //==============================================================================
 -     MP3AudioFormat();
 -     ~MP3AudioFormat() override;
 - 
 -     //==============================================================================
 -     Array<int> getPossibleSampleRates() override;
 -     Array<int> getPossibleBitDepths() override;
 -     bool canDoStereo() override;
 -     bool canDoMono() override;
 -     bool isCompressed() override;
 -     StringArray getQualityOptions() override;
 - 
 -     //==============================================================================
 -     AudioFormatReader* createReaderFor (InputStream*, bool deleteStreamIfOpeningFails) override;
 - 
 -     AudioFormatWriter* createWriterFor (OutputStream*, double sampleRateToUse,
 -                                         unsigned int numberOfChannels, int bitsPerSample,
 -                                         const StringPairArray& metadataValues, int qualityOptionIndex) override;
 -     using AudioFormat::createWriterFor;
 - };
 - 
 - #endif
 - 
 - } // namespace juce
 
 
  |