@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 651 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeinterlaceAutoEnable = void 0;
/**
* Specifies if the Deinterlace Filter should be applied unconditionally or only on demand.
* @export
* @enum {string}
*/
var DeinterlaceAutoEnable;
(function (DeinterlaceAutoEnable) {
DeinterlaceAutoEnable["ALWAYS_ON"] = "ALWAYS_ON";
DeinterlaceAutoEnable["META_DATA_BASED"] = "META_DATA_BASED";
DeinterlaceAutoEnable["META_DATA_AND_CONTENT_BASED"] = "META_DATA_AND_CONTENT_BASED";
})(DeinterlaceAutoEnable || (exports.DeinterlaceAutoEnable = DeinterlaceAutoEnable = {}));
exports.default = DeinterlaceAutoEnable;