HomeSort by relevance Sort by last modified time
    Searched refs:Track (Results 1 - 19 of 19) sorted by null

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackContentProvider.java 19 import com.android.ddmuilib.location.GpxParser.Track;
25 * Content provider to display {@link Track} objects in a Table.
26 * <p/>The expected type for the input is {@link Track}<code>[]</code>.
31 if (inputElement instanceof Track[]) {
32 return (Track[])inputElement;
TrackLabelProvider.java 19 import com.android.ddmuilib.location.GpxParser.Track;
29 * Label Provider for {@link Table} objects displaying {@link Track} objects.
38 if (element instanceof Track) {
39 Track track = (Track)element; local
42 return track.getName();
44 return Integer.toString(track.getPointCount());
46 long time = track.getFirstPointTime();
52 time = track.getLastPointTime()
    [all...]
GpxParser.java 80 List<Track> mTrackList;
83 Track mCurrentTrack;
105 mTrackList = new ArrayList<Track>();
108 mTrackList.add(mCurrentTrack = new Track());
111 // a single TrackPoint list in the Track.
253 Track[] getTracks() {
255 return mTrackList.toArray(new Track[mTrackList.size()]);
267 * A GPS track.
268 * <p/>A track is composed of a list of {@link TrackPoint} and optional name and comment.
270 public final static class Track {
    [all...]
  /frameworks/base/media/libstagefright/include/
MPEG4Extractor.h 46 struct Track {
47 Track *next;
59 Track *mFirstTrack, *mLastTrack;
72 static status_t verifyTrack(Track *track);
  /frameworks/base/media/libstagefright/matroska/
mkvparser.hpp 63 class Track;
90 long long m_track; //Track::Number()
182 class Track
184 Track(const Track&);
185 Track& operator=(const Track&);
189 virtual ~Track();
226 Track(Segment*, const Info&);
246 class VideoTrack : public Track
    [all...]
mkvparser.cpp     [all...]
MatroskaExtractor.cpp 708 const mkvparser::Track *track = tracks->GetTrackByIndex(index); local
710 const char *const codecID = track->GetCodecId();
712 LOGV("codec name = %s", track->GetCodecNameAsUTF8());
716 track->GetCodecPrivate(codecPrivateSize);
722 switch (track->GetType()) {
726 static_cast<const mkvparser::VideoTrack *>(track);
745 static_cast<const mkvparser::AudioTrack *>(track);
775 trackInfo->mTrackNum = track->GetNumber();
  /system/media/opensles/libopensles/
OutputMixExt.h 35 /** \brief Track describes each PCM input source to OutputMix */
39 CAudioPlayer *mAudioPlayer; ///< Mixer examines this track if non-NULL
43 SLuint32 mFramesMixed; ///< Number of sample frames mixed from track; reset periodically
44 } Track;
CAudioPlayer.c 75 // Safe to proceed immediately if a track has not yet been assigned
76 Track *track = this->mTrack; local
77 if (NULL == track)
79 CAudioPlayer *audioPlayer = track->mAudioPlayer;
83 // Request the mixer thread to unlink this audio player's track
IOutputMixExt.c 43 /** \brief Check whether a track has any data for us to read */
45 static SLboolean track_check(Track *track)
47 assert(NULL != track);
50 CAudioPlayer *audioPlayer = track->mAudioPlayer;
53 // track is initialized
58 assert(audioPlayer->mTrack == track);
60 SLuint32 framesMixed = track->mFramesMixed;
62 track->mFramesMixed = 0;
78 track->mReader = NULL
200 Track *track = &this->mTracks[i]; local
344 Track *track = &this->mTracks[0]; local
383 Track *track = NULL; local
    [all...]
sles_allinclusive.h 703 unsigned mActiveMask; // 1 bit per active track
704 Track mTracks[MAX_TRACK];
976 Track *mTrack;
    [all...]
  /frameworks/base/include/media/stagefright/
MPEG4Writer.h 62 class Track;
84 List<Track *> mTracks;
95 Track *mTrack; // Owner
100 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples)
101 : mTrack(track), mTimeStampUs(timeUs), mSamples(samples) {
106 Track *mTrack; // Owner
134 // Adjust other track media clock (presumably wall clock)
135 // based on audio track media clock with the drift time.
156 void trackProgressStatus(const Track* track, int64_t timeUs, status_t err = OK)
    [all...]
  /frameworks/base/services/audioflinger/
AudioFlinger.h 268 class Track;
298 // The upper 16 bits are used for track-specific flags.
396 friend class Track;
438 // playback track
439 class Track : public TrackBase {
441 Track( const wp<ThreadBase>& thread,
450 ~Track();
484 Track(const Track&);
485 Track& operator = (const Track&)
    [all...]
AudioFlinger.cpp 294 sp<PlaybackThread::Track> track; local
337 // check if an effect with same session ID is waiting for a track to be created
353 track = thread->createTrack_l(client, streamType, sampleRate, format,
357 // for a track to be created
365 trackHandle = new TrackHandle(track);
367 // remove local strong reference to Client before deleting the Track so that the Client
370 track.clear();
1038 sp<Track> track = mTracks[i] local
1051 sp<Track> track = wTrack.promote(); local
1140 sp<Track> track; local
1293 Track* const track = t.get(); local
1422 sp<Track> track = mTracks[i]; local
1441 sp<Track> track = mTracks[i]; local
1692 Track* const track = t.get(); local
1712 Track* const track = t.get(); local
1873 const sp<Track>& track = tracksToRemove->itemAt(i); local
2229 Track* const track = t.get(); local
4919 sp<Track> track; local
5109 sp<Track> track = mTracks[i]; local
5118 sp<Track> track = mActiveTracks[i].promote(); local
5160 sp<Track> track = mTracks[i]; local
5233 sp<Track> track = mTracks[i]; local
    [all...]
  /frameworks/base/media/libstagefright/
MPEG4Writer.cpp 49 class MPEG4Writer::Track {
51 Track(MPEG4Writer *owner, const sp<MediaSource> &source);
53 ~Track();
83 // for video track based on the audio media clock
92 // mNumSamples is used to track how many samples in mSampleSizes List.
171 // Update the audio track's drift information.
174 // Adjust the time stamp of the video track according to
175 // the drift time information from the audio track.
191 // Track authoring progress status
197 // Determine the track time scal
288 Track *track = new Track(this, source); local
    [all...]
MPEG4Extractor.cpp 93 // This is used to cache the full sampletable metadata for a single track,
95 // Each MPEG4DataSource caches the sampletable metadata for a single track.
271 Track *track = mFirstTrack; local
272 while (track) {
273 Track *next = track->next;
275 delete track;
276 track = next;
297 Track *track = mFirstTrack local
313 Track *track = mFirstTrack; local
519 Track *track = new Track; local
1264 Track *track = mFirstTrack; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
EmulatorControlPanel.java 33 import com.android.ddmuilib.location.GpxParser.Track;
118 private final static String PREFS_TRACK_COL_NAME = "emulatorControl.track.name"; //$NON-NLS-1$
119 private final static String PREFS_TRACK_COL_COUNT = "emulatorControl.track.count"; //$NON-NLS-1$
120 private final static String PREFS_TRACK_COL_FIRST = "emulatorControl.track.first"; //$NON-NLS-1$
121 private final static String PREFS_TRACK_COL_LAST = "emulatorControl.track.last"; //$NON-NLS-1$
122 private final static String PREFS_TRACK_COL_COMMENT = "emulatorControl.track.comment"; //$NON-NLS-1$
756 if (selectedObject instanceof Track) {
757 Track track = (Track)selectedObject
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.cpp 818 // Track indexes are 1-based. yuck. These things must descend from old-
821 // Grab the track at the current index. If there isn't one there, then
823 Track currentTrack = GetMovieIndTrack(m_private->m_movie, trackIndex);
827 // Check to see if the track is disabled already, we should move along.
832 // Grab the track's media. We're going to check to see if we need to
838 // Grab the media type for this track. Make sure that we don't
849 // Different mpeg variants import as different track types so check for the "mpeg
858 // Grab the track reference count for chapters. This will tell us if it
860 // can move on the next track.
871 Track chapterTrack = GetTrackReference(currentTrack, kTrackReferenceChapterList, referenceIndex)
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 5599 milliseconds