Share via


IIsdbSiParser2::GetCDT 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 common data table (CDT) from an Integrated Services Digital Broadcasting (ISDB) transport stream. A CDT contains data that is needed for receivers and stored in nonvolatile memory, such as company logos.

Syntax

HRESULT GetCDT(
  [in]  TID       tableId,
  [in]  BYTE      bSectionNumber,
        WORD      *pwDownloadDataId,
  [out] IISDB_CDT **ppCDT
);

Parameters

[in] tableId

Table identifier for the type of table to retrieve. For a CDT, this value is 0xC8.

[in] bSectionNumber

Specifies the value of the section_number field for the CDT.

pwDownloadDataId

Pointer to the download_data_id field value for the CDT.

[out] ppCDT

Receives a pointer to the IISDB_CDT 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_CDT

IIsdbSiParser2