Home | History | Annotate | Download | only in macosx

Lines Matching full:track

41 #define kTrackArrayString           "Track Array"
42 #define kFirstTrackInSessionString "First Track"
43 #define kLastTrackInSessionString "Last Track"
234 /* Iterate over all sessions, collecting the track data */
271 theCD->track[idx].id = value;
274 theCD->track[idx].offset = value;
276 theCD->track[idx].type = (isDataTrack == kCFBooleanTrue) ? SDL_DATA_TRACK : SDL_AUDIO_TRACK;
278 /* Since the track lengths are not stored in .TOC.plist we compute them. */
280 theCD->track[idx-1].length = theCD->track[idx].offset - theCD->track[idx-1].offset;
284 /* Compute the length of the last track */
287 theCD->track[theCD->numtracks-1].length =
288 value - theCD->track[theCD->numtracks-1].offset;
290 /* Set offset to leadout track */
291 theCD->track[theCD->numtracks].offset = value;
352 /* Extract the track id from the filename */
363 printf("Found AIFF for track %d: '%s'\n", trackID,
367 /* Track ID's start at 1, but we want to start at 0 */