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

1 2

  /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);
QTTrack.cpp 41 Track m_trackHandle;
55 PassRefPtr<QTTrack> QTTrack::create(Track trackHandle)
60 QTTrack::QTTrack(Track trackHandle)
  /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();
Animation.java 58 private Track[] tracks;
95 * This method behaves differently for every known track type.
96 * Override this method if you have your own type of track.
113 Track<?> trackInstance = tracks[0];
144 * Set the {@link Track}s to be used by this animation.
146 * The array should be organized so that the appropriate Track can
151 public void setTracks(Track[] tracks){
156 * Returns the tracks set in {@link #setTracks(com.jme3.animation.Track[]) }.
160 public Track[] getTracks() {
202 tracks = new Track[arr.length]
    [all...]
  /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>.
32 if (inputElement instanceof Track[]) {
33 return (Track[])inputElement;
TrackLabelProvider.java 19 import com.android.ddmuilib.location.GpxParser.Track;
29 * Label Provider for {@link Table} objects displaying {@link Track} objects.
40 if (element instanceof Track) {
41 Track track = (Track)element; local
44 return track.getName();
46 return Integer.toString(track.getPointCount());
48 long time = track.getFirstPointTime();
54 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/av/media/libmediaplayerservice/nuplayer/
GenericSource.h 57 struct Track {
62 Track mAudioTrack;
63 Track mVideoTrack;
  /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);
MPEG2PSExtractor.h 30 struct Track;
48 struct Track;
57 KeyedVector<unsigned, sp<Track> > mTracks;
AVIExtractor.h 52 struct Track {
82 Vector<Track> mTracks;
112 ssize_t trackIndex, Track::Kind kind, uint32_t chunkType);
  /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;
  /external/libvpx/mkvparser/
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...]
mkvparser.cpp     [all...]
  /frameworks/av/include/media/stagefright/
MPEG4Writer.h 67 class Track;
75 bool mStarted; // Writer thread + track threads started successfully
95 List<Track *> mTracks;
106 Track *mTrack; // Owner
113 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples)
114 : mTrack(track), mTimeStampUs(timeUs), mSamples(samples) {
119 Track *mTrack; // Owner
155 // Adjust other track media clock (presumably wall clock)
156 // based on audio track media clock with the drift time
    [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...]
AVIExtractor.cpp 55 const AVIExtractor::Track &mTrack;
619 Track::Kind kind = Track::OTHER;
636 kind = Track::VIDEO;
642 kind = Track::AUDIO;
652 Track *track = &mTracks.editItemAt(mTracks.size() - 1); local
654 track->mMeta = meta;
655 track->mRate = rate;
656 track->mScale = scale
674 Track *track = &mTracks.editItemAt(mTracks.size() - 1); local
797 Track *track = &mTracks.editItemAt(trackIndex); local
865 Track *track = &mTracks.editItemAt(i); local
1000 Track *track = &mTracks.editItemAt(trackIndex); local
1048 Track *track = &mTracks.editItemAt(trackIndex); local
1112 const Track &track = mTracks.itemAt(trackIndex); local
1180 const Track &track = mTracks.itemAt(trackIndex); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
BlenderTrack.java 9 import com.jme3.animation.Track;
17 * This class holds either the bone track or spatial track. Is made to improve
22 /* package */final class BlenderTrack implements Track {
23 /** The spatial track. */
25 /** The bone track. */
29 * Constructs the object using spatial track (bone track is null).
32 * the spatial track
39 * Constructs the object using bone track (spatial track is null).
    [all...]
Constraint.java 8 import com.jme3.animation.Track;
99 * @return the bone track for the bone that is being affected by the constraint
104 for (Track track : animation.getTracks()) {
105 if (((BoneTrack) track).getTargetBoneIndex() == boneIndex) {
106 return new BlenderTrack(((BoneTrack) track));
109 throw new IllegalStateException("Cannot find track for: " + owner);
  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
Ipo.java 5 import com.jme3.animation.Track;
36 /** Each ipo contains one bone track. */
37 private Track calculatedTrack;
106 * This method calculates the value of the curves as a bone track between
120 * this flag indicates if the track belongs to a spatial or to a
124 * @return bone track for the specified bone
126 public Track calculateTrack(int targetIndex, int startFrame, int stopFrame, int fps, boolean spatialTrack) {
128 // preparing data for track
143 // calculating track data
  /frameworks/wilhelm/src/objects/
CAudioPlayer.c 79 // Safe to proceed immediately if a track has not yet been assigned
80 Track *track = thiz->mTrack; local
81 if (NULL == track) {
84 CAudioPlayer *audioPlayer = track->mAudioPlayer;
89 // Request the mixer thread to unlink this audio player's track
  /frameworks/av/services/audioflinger/
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...]
  /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),
  /frameworks/wilhelm/src/itf/
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 = &thiz->mTracks[i]; local
344 Track *track = &thiz->mTracks[0]; local
383 Track *track = NULL; local
    [all...]

Completed in 376 milliseconds

1 2