/usr/lib/perl5/pods/SDL/CD.pod is in libsdl-perl 2.540-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | =pod
=head1 NAME
SDL::CD -- SDL Bindings for structure SDL_CD
=head1 CATEGORY
Core, CDROM, Structure
=head1 SYNOPSIS
use SDL;
use SDL::CDROM;
use SDL::CD;
SDL::init(SDL_INIT_CDROM);
my $drives = SDL::CDROM::num_drives;
if( $drives > 0 )
{
my $CD = SDL::CD->new( 0 );
if($CD)
{
...
}
}
=head1 CONSTANTS
The constants are exported by default. You can avoid this by doing:
use SDL::CD ();
and access them directly:
SDL::CD::CD_TRAYEMPTY;
or by choosing the export tags below:
Export tag: ':status'
CD_TRAYEMPTY
CD_STOPPED
CD_PLAYING
CD_PAUSED
CD_ERROR
Export tag: ':defaults'
CD_FPS
SDL_MAX_TRACKS
=head1 METHOD
=head2 new
my $CD = SDL::CD->new($drive)
Makes a new SDL::CD object. Returns C<undef> if the drive is busy or inaccessible.
=head2 status
my $status = $CD->status();
Returns the current status of the CD tray
Returns on of the following constants:
=over
=item *
CD_TRAYEMPTY
=item *
CD_STOPPED
=item *
CD_PLAYING
=item *
CD_PAUSED
=item *
CD_ERROR
=back
=head2 play_tracks
$CD->play_tracks($start_track, $start_frame, $ntracks, $nframes)
Plays the given SDL::CD starting at track $start_track, for $ntracks tracks.
$start_frame is the frame offset, from the beginning of the $start_track, at which to start. $nframes is the frame offset, from the
beginning of the last track ($start_track+$ntracks), at which to end playing.
play_tracks() should only be called after calling L</status> to get information about the CD.
B<Note: Data tracks are ignored.>
Returns C<0>, or C<-1> if there was an error.
=head2 play
$CD->play($start, $length);
Plays the given SDL::CD , starting a frame $start for $length frames.
Returns C<0> on success, C<-1> on error
=head2 pause
$CD->pause();
Pauses play on CD
Returns C<0> on success, or C<-1> on an error.
=head2 resume
$CD->resume();
Returns C<0> on success, or C<-1> on an error.
=head2 stop
$CD->stop();
Stops play on the CD.
Returns C<0> on success, or C<-1> on an error.
=head2 eject
$CD->eject();
Ejects the CD.
Returns C<0> on success, or C<-1> on an error.
=head2 id
$CD->id();
Private drive identifier
=head2 num_tracks
$CD->num_tracks();
Number of tracks on the CD
=head2 cur_track
$CD->cur_track();
Current track on the CD;
=head2 track
my $track = $CD->track($number);
Retrieves track description of track $number in CD. See L<SDL::CDTrack>.
=head2 FRAMES_TO_MSF
my ($min, $sec, $fra) = FRAMES_TO_MSF($frames);
Conversion functions from frames to Minute/Second/Frames
=head2 MSF_TO_FRAMES
my $frames = MSF_TO_FRAMES($min, $sec, $fra);
=head1 SEE ALSO
L<SDL::CDROM>, L<SDL::CDTrack>
=head1 AUTHORS
See L<SDL/AUTHORS>.
=cut
|