An RTCP receiver estimated maximum bitrate (REMB) packet. More...
Instance Methods | |
| (int) | - bitrateExponent |
| Gets the bitrate exponent. More... | |
| (int) | - bitrateMantissa |
| Gets the bitrate mantissa, in bits per second (bps). More... | |
| (NSString *) | - description |
| Returns a string representation of this REMB Control Frame. More... | |
| (instancetype) | - initWithBitrate:ssrcEntries: |
| Initializes a new instance of the FMLiveSwitchRembControlFrame class. More... | |
| (instancetype) | - initWithBuffer: |
| Initializes a new instance of the FMLiveSwitchRembControlFrame class. More... | |
| (void) | - setBitrateExponent: |
| Sets the bitrate exponent. More... | |
| (void) | - setBitrateMantissa: |
| Sets the bitrate mantissa, in bits per second (bps). More... | |
| (void) | - setSsrcEntries: |
| Sets the SSRC entries that this message applies to. More... | |
| (NSMutableArray *) | - ssrcEntries |
| Gets the SSRC entries that this message applies to. More... | |
Instance Methods inherited from FMLiveSwitchPayloadSpecificControlFrame | |
| (instancetype) | - initWithFeedbackMessageType: |
| Initializes a new instance of the FMLiveSwitchPayloadSpecificControlFrame class. More... | |
| (instancetype) | - initWithFeedbackMessageType:buffer: |
| Initializes a new instance of the FMLiveSwitchPayloadSpecificControlFrame class. More... | |
| (instancetype) | - initWithFeedbackMessageType:senderSynchronizationSource:mediaSynchronizationSource: |
| Initializes a new instance of the FMLiveSwitchFeedbackControlFrame class. More... | |
| (instancetype) | - initWithFeedbackMessageType:senderSynchronizationSource:mediaSynchronizationSource:feedbackControlInformation: |
| Initializes a new instance of the FMLiveSwitchFeedbackControlFrame class. More... | |
Instance Methods inherited from FMLiveSwitchFeedbackControlFrame | |
| (FMLiveSwitchDataBuffer *) | - feedbackControlInformation |
| Gets the Feedback Control Information field. More... | |
| (int) | - feedbackControlInformationOffset |
| Gets the feedback control information offset. More... | |
| (int) | - feedbackMessageType |
| Gets the feedback message type. More... | |
| (instancetype) | - initWithFeedbackMessageType:payloadType: |
| Initializes a new instance of the FMLiveSwitchFeedbackControlFrame class. More... | |
| (instancetype) | - initWithFeedbackMessageType:payloadType:buffer: |
| Initializes a new instance of the FMLiveSwitchFeedbackControlFrame class. More... | |
| (instancetype) | - initWithFeedbackMessageType:payloadType:senderSynchronizationSource:mediaSynchronizationSource: |
| Initializes a new instance of the FMLiveSwitchFeedbackControlFrame class. More... | |
| (instancetype) | - initWithFeedbackMessageType:payloadType:senderSynchronizationSource:mediaSynchronizationSource:feedbackControlInformation: |
| Initializes a new instance of the FMLiveSwitchFeedbackControlFrame class. More... | |
| (long long) | - mediaSourceSynchronizationSource |
| Gets the SSRC of the media source that this piece of feedback information is related to. More... | |
| (long long) | - packetSenderSynchronizationSource |
| Gets the SSRC of the packet sender - the synchronization source identifier for the originator of this packet. More... | |
| (void) | - setFeedbackMessageType: |
| Sets the feedback message type. More... | |
| (void) | - setMediaSourceSynchronizationSource: |
| Sets the SSRC of the media source that this piece of feedback information is related to. More... | |
| (void) | - setPacketSenderSynchronizationSource: |
| Sets the SSRC of the packet sender - the synchronization source identifier for the originator of this packet. More... | |
Instance Methods inherited from FMLiveSwitchMediaControlFrame | |
| (int) | - byte1Last5Bits |
| Gets the last 5 bits of the first byte. More... | |
| (FMLiveSwitchDataBuffer *) | - dataBuffer |
| Gets the buffer. More... | |
| (instancetype) | - init |
| Initializes a new instance of the FMLiveSwitchMediaControlFrame class. More... | |
| (FMLiveSwitchDataBuffer *) | - payload |
| Gets the payload. More... | |
| (int) | - payloadLengthWithPadding |
| Gets the length of the payload, in bytes, with padding. More... | |
| (int) | - payloadType |
| Gets the payload type. More... | |
| (void) | - setByte1Last5Bits: |
| Sets the last 5 bits of the first byte. More... | |
| (void) | - setDataBuffer: |
| Sets the buffer. More... | |
| (void) | - setPayloadLengthWithPadding: |
| Sets the length of the payload, in bytes, with padding. More... | |
| (void) | - setPayloadType: |
| Sets the payload type. More... | |
| (void) | - setVersion: |
| Sets the version. More... | |
| (NSString *) | - streamId |
| Gets the stream ID. More... | |
| (int) | - version |
| Gets the version. More... | |
Instance Methods inherited from FMLiveSwitchDynamic | |
| (NSMutableDictionary< NSString *, id > *) | - dynamicProperties |
| Gets all dynamic properties on this instance. More... | |
| (id) | - getDynamicValueWithKey: |
| Gets a property value from the local cache. More... | |
| (void) | - setDynamicValueWithKey:value: |
| Sets a property value in the local cache. More... | |
| (bool) | - unsetDynamicValueWithKey: |
| Removes a property value from the local cache. More... | |
An RTCP receiver estimated maximum bitrate (REMB) packet.
| - (int) bitrateExponent |
Gets the bitrate exponent.
| - (int) bitrateMantissa |
Gets the bitrate mantissa, in bits per second (bps).
| - (NSString*) description |
Returns a string representation of this REMB Control Frame.
| - (instancetype) initWithBitrate: | (long long) | bitrate | |
| ssrcEntries: | (NSMutableArray *) | ssrcEntries | |
Initializes a new instance of the FMLiveSwitchRembControlFrame class.
| bitrate | Bitrate in bps. |
| ssrcEntries | SSRC entries, for which this feedback is applicable. |
| - (instancetype) initWithBuffer: | (FMLiveSwitchDataBuffer *) | buffer |
Initializes a new instance of the FMLiveSwitchRembControlFrame class.
| buffer | The buffer. |
Implements FMLiveSwitchMediaControlFrame.
| + (int) registeredFeedbackMessageType |
Gets the type of the receiver estimated maximum bitrate message.
| + (FMLiveSwitchRembControlFrame*) rembControlFrameWithBitrate: | (long long) | bitrate | |
| ssrcEntries: | (NSMutableArray *) | ssrcEntries | |
Initializes a new instance of the FMLiveSwitchRembControlFrame class.
| bitrate | Bitrate in bps. |
| ssrcEntries | SSRC entries, for which this feedback is applicable. |
| + (FMLiveSwitchRembControlFrame*) rembControlFrameWithBuffer: | (FMLiveSwitchDataBuffer *) | buffer |
Initializes a new instance of the FMLiveSwitchRembControlFrame class.
| buffer | The buffer. |
| - (void) setBitrateExponent: | (int) | value |
Sets the bitrate exponent.
| - (void) setBitrateMantissa: | (int) | value |
Sets the bitrate mantissa, in bits per second (bps).
| - (void) setSsrcEntries: | (NSMutableArray *) | value |
Sets the SSRC entries that this message applies to.
| - (NSMutableArray*) ssrcEntries |
Gets the SSRC entries that this message applies to.