UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

20 lines (19 loc) 642 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.H264Partition = void 0; /** * Partitions to consider. Analyzing more partition options improves quality at the cost of speed. * @export * @enum {string} */ var H264Partition; (function (H264Partition) { H264Partition["NONE"] = "NONE"; H264Partition["P8X8"] = "P8X8"; H264Partition["P4X4"] = "P4X4"; H264Partition["B8X8"] = "B8X8"; H264Partition["I8X8"] = "I8X8"; H264Partition["I4X4"] = "I4X4"; H264Partition["ALL"] = "ALL"; })(H264Partition || (exports.H264Partition = H264Partition = {})); exports.default = H264Partition;