3.2.11. DMX_GET_STC

3.2.11.1. Name

DMX_GET_STC

3.2.11.2. Synopsis

int ioctl(int fd, DMX_GET_STC, struct dmx_stc *stc)

3.2.11.3. Arguments

fd
File descriptor returned by open().
stc
Pointer to the location where the stc is to be stored.

3.2.11.4. Description

This ioctl call returns the current value of the system time counter (which is driven by a PES filter of type DMX_PES_PCR). Some hardware supports more than one STC, so you must specify which one by setting the num field of stc before the ioctl (range 0...n). The result is returned in form of a ratio with a 64 bit numerator and a 32 bit denominator, so the real 90kHz STC value is stc->stc / stc->base .

3.2.11.5. Return Value

On success 0 is returned, on error -1 and the errno variable is set appropriately. The generic error codes are described at the Generic Error Codes chapter.

EINVAL Invalid stc number.