@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
23 lines (22 loc) • 789 B
TypeScript
import H265V2RateControlModeConfig from './H265V2RateControlModeConfig';
import H265V2RateControlModeConfigType from './H265V2RateControlModeConfigType';
/**
* @export
* @class H265V2ConstantBitrateModeConfig
*/
export declare class H265V2ConstantBitrateModeConfig extends H265V2RateControlModeConfig {
/**
* Discriminator property for H265V2RateControlModeConfig
* @type {string}
* @memberof H265V2ConstantBitrateModeConfig
*/
readonly type: H265V2RateControlModeConfigType;
/**
* Enable filler data for constant bitrate mode.
* @type {boolean}
* @memberof H265V2ConstantBitrateModeConfig
*/
fillerdata?: boolean;
constructor(obj?: Partial<H265V2ConstantBitrateModeConfig>);
}
export default H265V2ConstantBitrateModeConfig;