Unix and Linux Discussions Tagged with cdrom |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
20,700 |
Debian |
|
|
|
1 |
5,487 |
Solaris |
|
|
|
13 |
3,781 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,868 |
AIX |
|
|
|
7 |
5,444 |
Solaris |
|
|
|
2 |
6,415 |
Solaris |
|
|
|
14 |
19,208 |
Solaris |
|
|
|
8 |
8,808 |
HP-UX |
|
|
|
17 |
15,303 |
Solaris |
|
|
|
0 |
8,144 |
SCO |
|
|
|
3 |
2,781 |
Solaris |
|
|
|
0 |
4,794 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
8,147 |
Solaris |
|
|
|
0 |
1,089 |
Software Releases - RSS News |
|
|
|
0 |
875 |
Software Releases - RSS News |
|
|
|
0 |
1,896 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,557 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,078 |
Software Releases - RSS News |
|
|
|
2 |
4,834 |
Solaris |
|
|
|
0 |
1,608 |
Software Releases - RSS News |
|
|
|
0 |
1,645 |
Software Releases - RSS News |
|
|
|
2 |
11,891 |
Solaris |
|
|
|
0 |
2,010 |
Software Releases - RSS News |
|
|
|
7 |
19,757 |
AIX |
|
|
|
4 |
13,631 |
AIX |
|
|
|
0 |
1,661 |
Software Releases - RSS News |
|
|
|
3 |
15,650 |
UNIX for Dummies Questions & Answers |
|
|
|
10 |
5,666 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,174 |
UNIX for Advanced & Expert Users |
|
|
|
7 |
8,575 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,986 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,803 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,709 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,317 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
3,564 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,934 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
8,432 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,053 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,168 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
7,589 |
UNIX for Dummies Questions & Answers |
SDL_CDPlayTracks(3) SDL API Reference SDL_CDPlayTracks(3)
NAME
SDL_CDPlayTracks- Play the given CD track(s)
SYNOPSIS
#include "SDL.h"
int SDL_CDPlayTracks(SDL_CD *cdrom, int start_track, int start_frame, int ntracks, int nframes));
DESCRIPTION
SDL_CDPlayTracks plays the given 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.
SDL_CDPlayTracks should only be called after calling SDL_CDStatus to get track information about the CD.
Note:
Data tracks are ignored.
RETURN VALUE
Returns 0, or -1 if there was an error.
EXAMPLES
/* assuming cdrom is a previously opened device */
/* Play the entire CD */
if(CD_INDRIVE(SDL_CDStatus(cdrom)))
SDL_CDPlayTracks(cdrom, 0, 0, 0, 0);
/* Play the first track */
if(CD_INDRIVE(SDL_CDStatus(cdrom)))
SDL_CDPlayTracks(cdrom, 0, 0, 1, 0);
/* Play first 15 seconds of the 2nd track */
if(CD_INDRIVE(SDL_CDStatus(cdrom)))
SDL_CDPlayTracks(cdrom, 1, 0, 0, CD_FPS*15);
SEE ALSO
SDL_CDPlay, SDL_CDStatus, SDL_CD
SDL
Tue 11 Sep 2001, 22:58 SDL_CDPlayTracks(3)