@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 489 B
TypeScript
/**
* Specified set of constraints that indicate a degree of required decoder performance for a profile, see: https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding_tiers_and_levels
* @export
* @enum {string}
*/
export declare enum LevelH265 {
L1 = "1",
L2 = "2",
L2_1 = "2.1",
L3 = "3",
L3_1 = "3.1",
L4 = "4",
L4_1 = "4.1",
L5 = "5",
L5_1 = "5.1",
L5_2 = "5.2",
L6 = "6",
L6_1 = "6.1",
L6_2 = "6.2"
}
export default LevelH265;