JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
juce::AiffAudioFormatReader Class Referencefinal
Inheritance diagram for juce::AiffAudioFormatReader:
juce::AudioFormatReader

Public Member Functions

 AiffAudioFormatReader (InputStream *in)
 
bool readSamples (int *const *destSamples, int numDestChannels, int startOffsetInDestBuffer, int64 startSampleInFile, int numSamples) override
 Subclasses must implement this method to perform the low-level read operation.
 
- Public Member Functions inherited from juce::AudioFormatReader
virtual ~AudioFormatReader ()
 Destructor.
 
const StringgetFormatName () const noexcept
 Returns a description of what type of format this is.
 
bool read (float *const *destChannels, int numDestChannels, int64 startSampleInSource, int numSamplesToRead)
 Reads samples from the stream.
 
bool read (int *const *destChannels, int numDestChannels, int64 startSampleInSource, int numSamplesToRead, bool fillLeftoverChannelsWithCopies)
 Reads samples from the stream.
 
bool read (AudioBuffer< float > *buffer, int startSampleInDestBuffer, int numSamples, int64 readerStartSample, bool useReaderLeftChan, bool useReaderRightChan)
 Fills a section of an AudioBuffer from this reader.
 
virtual void readMaxLevels (int64 startSample, int64 numSamples, Range< float > *results, int numChannelsToRead)
 Finds the highest and lowest sample levels from a section of the audio stream.
 
virtual void readMaxLevels (int64 startSample, int64 numSamples, float &lowestLeft, float &highestLeft, float &lowestRight, float &highestRight)
 Finds the highest and lowest sample levels from a section of the audio stream.
 
int64 searchForLevel (int64 startSample, int64 numSamplesToSearch, double magnitudeRangeMinimum, double magnitudeRangeMaximum, int minimumConsecutiveSamples)
 Scans the source looking for a sample whose magnitude is in a specified range.
 
virtual AudioChannelSet getChannelLayout ()
 Get the channel layout of the audio stream.
 

Static Public Member Functions

template<typename Endianness >
static void copySampleData (unsigned int numBitsPerSample, bool floatingPointData, int *const *destSamples, int startOffsetInDestBuffer, int numDestChannels, const void *sourceData, int numberOfChannels, int numSamples) noexcept
 

Public Attributes

int bytesPerFrame
 
int64 dataChunkStart
 
bool littleEndian
 
- Public Attributes inherited from juce::AudioFormatReader
double sampleRate
 The sample-rate of the stream.
 
unsigned int bitsPerSample
 The number of bits per sample, e.g.
 
int64 lengthInSamples
 The total number of samples in the audio stream.
 
unsigned int numChannels
 The total number of channels in the audio stream.
 
bool usesFloatingPointData
 Indicates whether the data is floating-point or fixed.
 
StringPairArray metadataValues
 A set of metadata values that the reader has pulled out of the stream.
 
InputStreaminput
 The input stream, for use by subclasses.
 

Additional Inherited Members

- Protected Member Functions inherited from juce::AudioFormatReader
 AudioFormatReader (InputStream *sourceStream, const String &formatName)
 Creates an AudioFormatReader object.
 
- Static Protected Member Functions inherited from juce::AudioFormatReader
static void clearSamplesBeyondAvailableLength (int *const *destChannels, int numDestChannels, int startOffsetInDestBuffer, int64 startSampleInFile, int &numSamples, int64 fileLengthInSamples)
 Used by AudioFormatReader subclasses to clear any parts of the data blocks that lie beyond the end of their available length.
 

Detailed Description

Definition at line 385 of file juce_AiffAudioFormat.cpp.

Constructor & Destructor Documentation

◆ AiffAudioFormatReader()

juce::AiffAudioFormatReader::AiffAudioFormatReader ( InputStream in)

Definition at line 388 of file juce_AiffAudioFormat.cpp.

Member Function Documentation

◆ copySampleData()

template<typename Endianness >
static void juce::AiffAudioFormatReader::copySampleData ( unsigned int  numBitsPerSample,
bool  floatingPointData,
int *const destSamples,
int  startOffsetInDestBuffer,
int  numDestChannels,
const void sourceData,
int  numberOfChannels,
int  numSamples 
)
staticnoexcept

Definition at line 618 of file juce_AiffAudioFormat.cpp.

◆ readSamples()

bool juce::AiffAudioFormatReader::readSamples ( int *const destChannels,
int  numDestChannels,
int  startOffsetInDestBuffer,
int64  startSampleInFile,
int  numSamples 
)
overridevirtual

Subclasses must implement this method to perform the low-level read operation.

Callers should use read() instead of calling this directly.

Parameters
destChannelsthe array of destination buffers to fill. Some of these pointers may be null
numDestChannelsthe number of items in the destChannels array. This value is guaranteed not to be greater than the number of channels that this reader object contains
startOffsetInDestBufferthe number of samples from the start of the dest data at which to begin writing
startSampleInFilethe number of samples into the source data at which to begin reading. This value is guaranteed to be >= 0.
numSamplesthe number of samples to read

Implements juce::AudioFormatReader.

Definition at line 576 of file juce_AiffAudioFormat.cpp.

Member Data Documentation

◆ bytesPerFrame

int juce::AiffAudioFormatReader::bytesPerFrame

Definition at line 634 of file juce_AiffAudioFormat.cpp.

◆ dataChunkStart

int64 juce::AiffAudioFormatReader::dataChunkStart

Definition at line 635 of file juce_AiffAudioFormat.cpp.

◆ littleEndian

bool juce::AiffAudioFormatReader::littleEndian

Definition at line 636 of file juce_AiffAudioFormat.cpp.


The documentation for this class was generated from the following file: