logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_CDtrack - CD Track Information Structure

Description

SDL_CDtrack  stores  data  on  each track on a CD, its fields should be pretty self explainatory. It is a
       member a the SDL_CD structure.

              Note:

              Frames  can  be  converted  to  standard  timings.  There  are  CD_FPS  frames  per   second,   so
              SDL_CDtrack.length/CD_FPS=length_in_seconds.

Name

       SDL_CDtrack - CD Track Information Structure

See Also

SDL_CD

SDL                                          Tue 11 Sep 2001, 22:59                               SDL_CDtrack(3)

Structure Data

id                  Track number (0-99)

       typeSDL_AUDIO_TRACK or SDL_DATA_TRACKlength              Length, in frames, of this track

       offset              Frame offset to the beginning of this track

Structure Definition

       typedef struct{
         Uint8 id;
         Uint8 type;
         Uint32 length;
         Uint32 offset;
       } SDL_CDtrack;

return

See Also