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

  /external/webkit/Source/WebCore/platform/graphics/win/
QTTrack.h 45 typedef struct TrackType** Track;
49 static PassRefPtr<QTTrack> create(Track);
59 Track getTrackHandle() const;
61 QTTrack(Track);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Track.java 37 public interface Track extends Savable, Cloneable {
42 * Internally, the track will retrieve objects from the control
47 * @param weight The weight from 0 to 1 on how much to apply the track
48 * @param control The control which the track should effect
49 * @param channel The channel which the track should effect
54 * @return the length of the track
62 public Track clone();
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.h 57 struct Track {
62 Track mAudioTrack;
63 Track mVideoTrack;
  /frameworks/wilhelm/src/desktop/
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;
  /frameworks/av/media/libstagefright/include/
MPEG4Extractor.h 50 struct Track {
51 Track *next;
63 Track *mFirstTrack, *mLastTrack;
79 static status_t verifyTrack(Track *track);
96 Track *findTrackByMimePrefix(const char *mimePrefix);
AVIExtractor.h 52 struct Track {
82 Vector<Track> mTracks;
112 ssize_t trackIndex, Track::Kind kind, uint32_t chunkType);
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2PSExtractor.cpp 41 struct MPEG2PSExtractor::Track : public MediaSource {
42 Track(MPEG2PSExtractor *extractor,
53 virtual ~Track();
70 DISALLOW_EVIL_CONSTRUCTORS(Track);
74 WrappedTrack(const sp<MPEG2PSExtractor> &extractor, const sp<Track> &track);
88 sp<MPEG2PSExtractor::Track> mTrack;
504 stream_id, new Track(this, stream_id, streamType));
533 MPEG2PSExtractor::Track::Track(
    [all...]
  /external/chromium/chrome/browser/
browser_main_win.cc 68 // that way google update can accurately track browser usage without
76 Track();
79 static void Track() {
340 NewRunnableFunction(&BrowserUsageUpdater::Track),
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
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...]
  /external/libvpx/mkvparser/
mkvparser.cpp     [all...]
mkvparser.hpp 74 class Track;
114 long long m_track; //Track::Number()
202 // Elements used to describe if the track data has been encrypted or
289 class Track
291 Track(const Track&);
292 Track& operator=(const Track&);
300 virtual ~Track();
355 Track(
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 50 class MPEG4Writer::Track {
52 Track(MPEG4Writer *owner, const sp<MediaSource> &source, size_t trackId);
54 ~Track();
101 * mNumSamples is used to track the total number of samples in
183 // Update the audio track's drift information.
198 // Track authoring progress status
204 // Determine the track time scale
205 // If it is an audio track, try to use the sampling rate as
250 Track(const Track &)
346 Track *track = new Track(this, source, mTracks.size()); local
1364 Track *track = NULL; local
1575 Track *track = static_cast<Track *>(me); local
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 157 FastMixer_Dynamic, // initialize if needed, then use dynamically depending on track load,
452 sp<PlaybackThread::Track> track; local
502 track = thread->createTrack_l(client, streamType, sampleRate, format,
506 // for a track to be created
518 track->setSyncEvent(mPendingSyncEvents[i]);
529 trackHandle = new TrackHandle(track);
531 // remove local strong reference to Client before deleting the Track so that the Client
534 track.clear();
879 RecordThread::RecordTrack *track = thread->track() local
1585 sp<Track> track = mTracks[i]; local
1596 sp<Track> track = mActiveTracks[i].promote(); local
1671 sp<Track> track; local
2085 sp<Track> track = mTracks[i]; local
2104 sp<Track> track = mTracks[i]; local
2156 sp<Track> track = mTracks[i]; local
2182 const sp<Track>& track = tracksToRemove.itemAt(i); local
2903 Track* const track = t.get(); local
3319 const sp<Track>& track = tracksToRemove->itemAt(i); local
3678 Track* const track = t.get(); local
6199 sp<RecordTrack> track; local
6666 AudioFlinger::RecordThread::RecordTrack* AudioFlinger::RecordThread::track() function in class:android::AudioFlinger::RecordThread
7847 sp<Track> track = mTracks[i]; local
7857 sp<Track> track = mActiveTracks[i].promote(); local
7900 sp<Track> track = mActiveTracks[i].promote(); local
7911 sp<Track> track = mTracks[i]; local
7956 sp<Track> track = mTracks[i]; local
    [all...]
AudioFlinger.h 335 class Track;
405 // ExtendedAudioBufferProvider interface is only needed for Track,
526 // track
680 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
681 MIXER_TRACKS_READY // at least one active track, and at least one track has data
686 // playback track
687 class Track : public TrackBase, public VolumeProvider {
689 Track( PlaybackThread *thread
    [all...]

Completed in 276 milliseconds