Share via


IIsdbSiParser2::GetSDTT method (dvbsiparser.h)

[The feature associated with this page, Microsoft TV Technologies, is a legacy feature. Microsoft strongly recommends that new code does not use this feature.]

Gets the software download trigger table (SDTT) from an Integrated Services Digital Broadcast (ISDB) transport stream. An SDTT contains download information such as the service identifier, schedule, and receiver types for revision.

Syntax

HRESULT GetSDTT(
  [in]  TID        tableId,
        WORD       *pwTableIdExt,
  [out] IISDB_SDTT **ppSDTT
);

Parameters

[in] tableId

Table identifier for the type of table to retrieve. For an SDTT, this value is 0xC34.

pwTableIdExt

Value of the table_id_extension field for the SDTT. This field value identifies a specific instance of the SDTT.

[out] ppSDTT

Receives a pointer to the IISDB_SDTT interface. Use this interface to retrieve the information in the table. The caller must release the interface.

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Target Platform Windows
Header dvbsiparser.h

See also

IISDB_SDTT

IIsdbSiParser2