@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
26 lines (25 loc) • 541 B
TypeScript
/**
* Specified set of constraints that indicate a degree of required decoder performance for a profile, see: https://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Levels
* @export
* @enum {string}
*/
export declare enum LevelH264 {
L1 = "1",
L1b = "1b",
L1_1 = "1.1",
L1_2 = "1.2",
L1_3 = "1.3",
L2 = "2",
L2_1 = "2.1",
L2_2 = "2.2",
L3 = "3",
L3_1 = "3.1",
L3_2 = "3.2",
L4 = "4",
L4_1 = "4.1",
L4_2 = "4.2",
L5 = "5",
L5_1 = "5.1",
L5_2 = "5.2"
}
export default LevelH264;