Microsoft DirectX 9.0

FECMethod Enumeration

Specifies the type of forward error correction being used by the provider.

Syntax

enum FECMethod {
    BDA_FEC_METHOD_NOT_SET     = -1,
    BDA_FEC_METHOD_NOT_DEFINED =  0,
    BDA_FEC_VITERBI            =  1,
    BDA_FEC_RS_204_188         =  2,
    BDA_FEC_MAX                =  3
} FECMethod;

Members

BDA_FEC_METHOD_NOT_SET

The FEC method is not set.

BDA_FEC_METHOD_NOT_DEFINED

The FEC method is not defined.

BDA_FEC_VITERBI

The FEC is a Viterbi Binary Convolution.

BDA_FEC_RS_204_188

The FEC is Reed-Solomon 204/188 (outer FEC)

BDA_FEC_MAX

Reserved; do not use.

See Also