The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SDL::CDTrack -- SDL Bindings for structure SDL_CDTrack

CATEGORY

Core, CDROM, Structure

SYNOPSIS

 use SDL;
 use SDL::CDROM;
 use SDL::CD;
 use SDL::CDTrack;

 SDL::init( SDL_INIT_CDROM );
 
 my $drives = SDL::CDROM::num_drives(); 

 if( $drives > 0 )
 {
  my $CD = SDL::CD->new(0); #first drive's CD

  if( $CD != NULL)
  {
        if( $CD->status != CD_TRAYEMPTY )
        {
        my $track = SDL::CD->track(0);
        }
  }
 
 }

 SDL::quit();

METHOD

id

 $track->id() # 0-99 

Track number

type

 $track->type() # SDL_AUDIO_TRACK or SDL_DATA_TRACK 

Type of track

length

 $track->length() 

Length, in frames, of this track

offset

 $track->offset()

Frame offset to the beginning of this track

SEE ALSO

SDL::CDROM, SDL::CD