1#ifndef MILLICAST_FRAMES_H
2#define MILLICAST_FRAMES_H
4#import <CoreMedia/CoreMedia.h>
22- (MCVideoType) frameType;
39- (void) getRgbBuffer:(uint8_t*) buffer;
44- (void) getI420Buffer:(uint8_t*) buffer;
49- (void) getI444Buffer:(uint8_t*) buffer;
95- (id) initWithSampleBuffer: (CMSampleBufferRef) buffer;
#define MILLICAST_API
Definition exports.h:51
int bitsPerSample
The number of bits per audio sample.
Definition frames.h:73
size_t frameNumber
The number of frames in the data array. The number of frames is dependent on the sample rate and chun...
Definition frames.h:82
const void * data
The audio data containing raw audio samples.
Definition frames.h:70
size_t channelNumber
The number of audio channels defining whether the audio is mono, stereo, or has more complex channel ...
Definition frames.h:79
int sampleRate
The sample rate of the audio data, which is either 48kHz or 44.1kHz.
Definition frames.h:76
Class responsible for initializing a MCAudioFrame from a CMSampleBuffer
Definition frames.h:88