Class VideoEncoder.BitrateAllocation

java.lang.Object
com.telnyx.webrtc.lib.VideoEncoder.BitrateAllocation
Enclosing interface:
VideoEncoder

public static class VideoEncoder.BitrateAllocation extends Object
Represents bitrate allocated for an encoder to produce frames. Bitrate can be divided between spatial and temporal layers.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int[][]
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    BitrateAllocation(int[][] bitratesBbs)
    Initializes the allocation with a two dimensional array of bitrates.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the total bitrate allocated for all layers.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • bitratesBbs

      public final int[][] bitratesBbs
  • Constructor Details

    • BitrateAllocation

      public BitrateAllocation(int[][] bitratesBbs)
      Initializes the allocation with a two dimensional array of bitrates. The first index of the array is the spatial layer and the second index in the temporal layer.
  • Method Details

    • getSum

      public int getSum()
      Gets the total bitrate allocated for all layers.