Track

Stores properties describing the currently selected track within a tracksession.

Synopsis:

#include <qplayer/types.h>

class Track {

public:
    int index;
    uint64_t tsid;
    MediaNode mediaNode;
    Metadata metadata;
};

Data:

int index
Position of the track within the tracksession.
uint64_t tsid
ID of the associated tracksession.
MediaNode mediaNode
Media node on which this track is based.
Metadata metadata
Track metadata.

Library:

libqplayer

Description:

Stores properties describing the currently selected track within a tracksession.