Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FecOutputSettings

import type { FecOutputSettings } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Fec Output Settings

interface FecOutputSettings {
ColumnDepth?: number | null;
IncludeFec?: FecOutputIncludeFec | null;
RowLength?: number | null;
}

§Properties

§
ColumnDepth?: number | null
[src]

Parameter D from SMPTE 2022-1. The height of the FEC protection matrix. The number of transport stream packets per column error correction packet. Must be between 4 and 20, inclusive.

§
IncludeFec?: FecOutputIncludeFec | null
[src]

Enables column only or column and row based FEC

§
RowLength?: number | null
[src]

Parameter L from SMPTE 2022-1. The width of the FEC protection matrix. Must be between 1 and 20, inclusive. If only Column FEC is used, then larger values increase robustness. If Row FEC is used, then this is the number of transport stream packets per row error correction packet, and the value must be between 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column, this value must be 1 to 20, inclusive.