/external/libvpx/libwebm/ |
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...] |
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/ |
MeshAnimationLoader.java | 94 // List<Track> tracks = new ArrayList<Track>(); 100 // if (trackNode.getNodeName().equals("track")){ 123 // anim.setTracks(tracks.toArray(new Track[0])); 226 // // convert times and frames to arrays and write to the track 232 // PoseTrack track = new PoseTrack(targetMeshIndex, 236 // return track;
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
jetcreator_manual.jd | 95 track, but may be made up of multiple channels of MIDI 101 tracks, and each track may in turn be made up of one or more channels of MIDI 103 separate track in an SMF-1 file. However, it is possible to have multiple MIDI 104 channels on a single track, or multiple tracks that contain data for the same MIDI 109 <p><i>Track</i>: A single track in a DAW containing a timed sequence of events. Be careful not to confuse Tracks with 193 temporarily un-mutes a decorative track that notifies the player of a 194 successful attack, and similarly, another track is temporarily un-muted to 208 a track at the moment the game event occurs might result in a music clip 216 track. A MIDI event in the stream signifie [all...] |
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/ |
SDL_syscdrom.c | 84 if (cdrom->track[i].offset <= start && 85 start < (cdrom->track[i].offset + cdrom->track[i].length)) 94 *outStartFrame = start - cdrom->track[i].offset; 96 if ((*outStartFrame + length) < cdrom->track[i].length) { 104 length -= cdrom->track[i].length - *outStartFrame; 105 nextTrackFrame = cdrom->track[i+1].offset; 341 *position = cdrom->track[currentTrack].offset + trackFrame; 497 /* Invalidate volume and track info */
|
SDL_syscdrom_c.h | 69 the track information (number, offset, length, leadout, etc). See ReadTOCData() in 77 hopefully in the right order. Since these files all begin with a number "1 Audio Track", 78 etc, this is used to determine the correct track order. 82 cdrom's track list. At this point, we also save the offset to the next track and frames 90 play the next file if the previously saved next track and frames remaining
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/qnx/ |
SDL_syscdrom.c | 285 /* Read all the track TOC entries */ 290 cdrom->track[i].id = CDROM_LEADOUT; 294 cdrom->track[i].id = toc.first_track+i; 297 cdrom->track[i].type = toc.toc_entry[i].control_adr & 0x0F; 298 cdrom->track[i].offset = toc.toc_entry[i].addr.lba; 299 cdrom->track[i].length = 0; 303 cdrom->track[i-1].length = cdrom->track[i].offset-cdrom->track[i-1].offset;
|
/external/webkit/Source/WebCore/platform/ |
ScrollbarThemeComposite.cpp | 90 IntRect track = trackRect(scrollbar); local 91 splitTrack(scrollbar, track, startTrackRect, thumbRect, endTrackRect); 146 // Paint the track pieces above and below the thumb. 176 IntRect track = trackRect(scrollbar); local 177 if (track.contains(mousePosition)) { 181 splitTrack(scrollbar, track, beforeThumbRect, thumbRect, afterThumbRect); 259 // Returns the size represented by track taking into account scrolling past 286 length = 0; // Once the thumb is below the track length, it just goes away (to make more room for the track).
|
ScrollbarTheme.h | 84 virtual int thumbPosition(Scrollbar*) { return 0; } // The position of the thumb relative to the track. 86 virtual int trackPosition(Scrollbar*) { return 0; } // The position of the track relative to the scrollbar. 87 virtual int trackLength(Scrollbar*) { return 0; } // The length of the track along the axis of the scrollbar.
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
ConstraintInverseKinematics.java | 71 //fetching the owner's bone track
86 // System.out.println(Arrays.toString(bones[i].track.getTranslations()));
87 // System.out.println(Arrays.toString(bones[i].track.getRotations()));
121 // System.out.println(Arrays.toString(bones[i].track.getTranslations()));
122 // System.out.println(Arrays.toString(bones[i].track.getRotations()));
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
RateShareEntry.java | 30 * Each sample of a track may be associated to (zero or) one of a number of sample group descriptions, each of 37 * table box ('stbl') of a track. It shall reside in a hint track, if a hint track is used, otherwise in a media track.
|
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlcd.html | 99 SDL_CDtrack track[SDL_MAX_TRACKS+1]; 181 >Current track</TD 196 >Current frame offset within the track</TD 205 >track</I 211 >Array of track descriptions. (see <A
|
sdlcdtrack.html | 83 >SDL_CDtrack -- CD Track Information Structure</DIV 131 >Track number (0-99)</TD 167 >Length, in frames, of this track</TD 182 >Frame offset to the beginning of this track</TD 201 > stores data on each track on a CD, its fields should be pretty self explainatory. It is a member a the <A
|
/external/libmtp/src/ |
playlist-spl.c | 76 static void discover_filepath_from_id(char** p, uint32_t track, LIBMTP_folder_t* folders, LIBMTP_file_t* files); 160 // convert the playlist listing to track ids 162 IF_DEBUG() printf("%u track%s found\n", pl->no_tracks, pl->no_tracks==1?"":"s"); 211 IF_DEBUG() printf("%u track%s\n", pl->no_tracks, pl->no_tracks==1?"":"s"); 252 * changed the pl->playlist_id will likely remain the same. An updated track 417 // proceeding on as if everything is okay, probably losing a track 534 * Count the number of tracks in this playlist. A track will be counted as 552 * Find the track ids for this playlist's files. 556 * @param tracks returned list of track id's for the playlist_t, must be large 573 printf("track %d = %s (%u)\n", c+1, p->text, tracks[c]) [all...] |
/external/chromium/chrome/browser/chromeos/cros/ |
update_library.cc | 55 void SetReleaseTrack(const std::string& track) { 57 chromeos::SetUpdateTrack(track); 127 void SetReleaseTrack(const std::string& track) { }
|
/external/flac/libFLAC/ |
metadata_object.c | 1470 FLAC__StreamMetadata_CueSheet_Track *track; local 1514 FLAC__StreamMetadata_CueSheet_Track *track; local 1543 FLAC__StreamMetadata_CueSheet_Track *track; local 1639 FLAC__StreamMetadata_CueSheet_Track track; local [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
ObjectAnimationModifier.java | 51 // calculating track
52 SpatialTrack track = (SpatialTrack) ipo.calculateTrack(-1, 0, ipo.getLastFrame(), fps, true);
local 55 animation.setTracks(new SpatialTrack[] { track });
|
/external/llvm/lib/Target/PowerPC/ |
PPCHazardRecognizers.h | 55 // StoredPtr - Keep track of the address of any store. If we see a load from 57 // up to four stores in one dispatch group, hence we track up to 4. 59 // This is null if we haven't seen a store yet. We keep track of both
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/aix/ |
SDL_syscdrom.c | 487 /* Read all the track TOC entries */ 490 cdrom->track[i].id = 0xAA;; 492 cdrom->track[i].id = cmd.indexing.track_index.first_track+i; 495 entry.indexing.track_msf.track = cdrom->track[i].id; 499 cdrom->track[i].type = 0; /* don't know how to detect 0x04 data track */ 500 cdrom->track[i].offset = MSF_TO_FRAMES( 504 cdrom->track[i].length = 0; 506 cdrom->track[i-1].length = cdrom->track[i].offse [all...] |
/external/webkit/Source/WebCore/platform/graphics/win/ |
QTTrack.cpp | 41 Track m_trackHandle; 55 PassRefPtr<QTTrack> QTTrack::create(Track trackHandle) 60 QTTrack::QTTrack(Track trackHandle)
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
cor_h_x.c | 22 * 4 pulses per track, 16 positions in each track) to * 112 /* 6.0 x sumation of max of dn[] in each track not saturate. */
|
/cts/tests/src/android/provider/cts/ |
MediaStoreAudioTestHelper.java | 91 public static final int TRACK = 1; 133 values.put(Media.TRACK, TRACK); 167 public static final int TRACK = 1001; 212 values.put(Media.TRACK, TRACK);
|
/external/webkit/Source/WebCore/platform/qt/ |
ScrollbarThemeQt.cpp | 225 IntRect track = style()->subControlRect(QStyle::CC_ScrollBar, opt, QStyle::SC_ScrollBarGroove, 0); local 226 return scrollbar->orientation() == HorizontalScrollbar ? track.x() - scrollbar->x() : track.y() - scrollbar->y(); 232 IntRect track = style()->subControlRect(QStyle::CC_ScrollBar, opt, QStyle::SC_ScrollBarGroove, 0); local 233 return scrollbar->orientation() == HorizontalScrollbar ? track.width() : track.height();
|
/frameworks/av/libvideoeditor/lvpp/ |
VideoEditorBGAudioProcessing.cpp | 53 ALOGV("mixAndDuck: track buffers (primary: 0x%x and background: 0x%x) " 69 // Initially contains the input primary track 72 // Contains BG track processed data(like channel conversion etc.. 121 // FADE OUT BG Track 130 // FADE IN BG Track 153 // Duck the BG track to ducking factor value before mixing
|
/frameworks/av/libvideoeditor/vss/3gpwriter/inc/ |
M4MP4W_Writer.h | 89 * @brief Add a new track 92 parameters for the new track. 122 * the streamID track 124 * @param streamID (IN) Stream ID of the track. 139 * @brief Ask the core MP4 writer to write the access unit in the streamID track 143 * @param streamID (IN) Stream ID of the track.
|
/frameworks/base/docs/html/training/gestures/ |
multi.jd | 17 <li><a href="#track">Track Multiple Pointers</a></li> 48 <h2 id="track">Track Multiple Pointers</h2> 65 <p>You keep track of individual pointers within a {@link 87 pointer's ID to track the pointer across all subsequent motion events in a
|