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

1 2 3 4 5

  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Animation.java 39 * The animation class updates the animation target with the tracks of a given type.
56 * The tracks of the animation.
58 private Track[] tracks; field in class:Animation
104 if (tracks == null)
107 for (int i = 0; i < tracks.length; i++){
108 tracks[i].setTime(time, blendAmount, control, channel, vars);
112 if (tracks != null && tracks.length > 0) {
113 Track<?> trackInstance = tracks[0];
118 ((SpatialTrack) tracks[0]).setTime(time, spatial, blendAmount)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
Movie.java 25 List<Track> tracks = new LinkedList<Track>(); field in class:Movie
28 return tracks;
31 public void setTracks(List<Track> tracks) {
32 this.tracks = tracks;
42 tracks.add(nuTrack);
49 for (Track track : tracks) {
59 for (Track track : tracks) {
67 for (Track track : tracks) {
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
SDL_syscdrom.c 30 static FSRef** tracks; variable
56 /* Read a list of tracks from the volume */
59 /* Check if tracks are already loaded */
60 if ( tracks[cdrom->id] != NULL )
63 /* Allocate memory for tracks */
64 tracks[cdrom->id] = (FSRef*) SDL_calloc (1, sizeof(**tracks) * cdrom->numtracks);
65 if (tracks[cdrom->id] == NULL) {
70 /* Load tracks */
71 if (ListTrackFiles (volumes[cdrom->id], tracks[cdrom->id], cdrom->numtracks) < 0
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AppendTrack.java 16 package com.googlecode.mp4parser.authoring.tracks;
34 * Appends two or more <code>Tracks</code> of the same type. No only that the type must be equal
38 Track[] tracks; field in class:AppendTrack
41 public AppendTrack(Track... tracks) throws IOException {
42 this.tracks = tracks;
44 for (Track track : tracks) {
67 throw new IOException("Cannot append " + track + " to " + tracks[0] + " since their Sample Description Boxes differ: \n" + track.getSampleDescriptionBox() + "\n vs. \n" + tracks[0].getSampleDescriptionBox());
238 for (Track track : tracks) {
    [all...]
ReplaceSampleTrack.java 16 package com.googlecode.mp4parser.authoring.tracks;
SilenceTrackImpl.java 1 package com.googlecode.mp4parser.authoring.tracks;
37 throw new RuntimeException("Tracks of type " + ofType.getClass().getSimpleName() + " are not supported");
  /external/qemu/block/
parallels.c 42 uint32_t tracks; member in struct:parallels_header
53 int tracks; member in struct:BDRVParallelsState
88 s->tracks = le32_to_cpu(ph.tracks);
110 index = sector_num / s->tracks;
111 offset = sector_num % s->tracks;
  /external/chromium-trace/trace-viewer/src/
about_tracing.js 24 window.FLATTENED['tracks.track'] = true;
25 window.FLATTENED['tracks.container_track'] = true;
28 window.FLATTENED['tracks.canvas_based_track'] = true;
30 window.FLATTENED['tracks.slice_track'] = true;
43 window.FLATTENED['tracks.cpu_track'] = true;
44 window.FLATTENED['tracks.counter_track'] = true;
45 window.FLATTENED['tracks.slice_group_track'] = true;
46 window.FLATTENED['tracks.async_slice_group_track'] = true;
47 window.FLATTENED['tracks.thread_track'] = true;
48 window.FLATTENED['tracks.process_track'] = true
    [all...]
  /external/libmtp/examples/
getplaylist.c 35 track = LIBMTP_Get_Trackmetadata(device, pl->tracks[i]);
37 printf(" %u: %s - %s\n", pl->tracks[i], track->artist, track->title);
40 printf(" %u: INVALID TRACK REFERENCE!\n", pl->tracks[i]);
playlists.c 33 printf(" Tracks:\n");
38 track = LIBMTP_Get_Trackmetadata(device, pl->tracks[i]);
40 printf(" %u: %s - %s\n", pl->tracks[i], track->artist, track->title);
43 printf(" %u: INVALID TRACK REFERENCE!\n", pl->tracks[i]);
tracks.c 2 * \file tracks.c
3 * Example program to list the tracks on a device.
85 LIBMTP_track_t *tracks; local
93 fprintf(stdout, "mtp-tracks: No Devices have been found\n");
96 fprintf(stderr, "mtp-tracks: There has been an error connecting. Exit\n");
99 fprintf(stderr, "mtp-tracks: Memory Allocation Error. Exit\n");
105 fprintf(stderr, "mtp-tracks: Unknown error, please report "
111 fprintf(stdout, "mtp-tracks: Successfully connected\n");
129 tracks = LIBMTP_Get_Tracklisting_With_Callback(iter, NULL, NULL);
130 if (tracks == NULL)
    [all...]
sendtr.c 123 uint32_t *tracks; local
125 tracks = (uint32_t *)malloc((found_album->no_tracks+1) * sizeof(uint32_t));
127 if (!tracks) {
132 if (found_album->tracks != NULL) {
133 memcpy(tracks, found_album->tracks, found_album->no_tracks * sizeof(uint32_t));
134 free(found_album->tracks);
136 tracks[found_album->no_tracks-1] = trackmeta->item_id;
137 found_album->tracks = tracks;
    [all...]
newplaylist.c 92 playlist->tracks = ids;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 150 * This method retuns the bone tracks for animation.
153 * the structure containing the tracks
156 * @return a list of tracks for the specified animation
170 * This method retuns the bone tracks for animation for blender version 2.50
174 * the structure containing the tracks
177 * @return a list of tracks for the specified animation
183 LOGGER.log(Level.INFO, "Getting tracks!");
188 List<BoneTrack> tracks = new ArrayList<BoneTrack>(); local
204 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false));
207 return tracks.toArray(new BoneTrack[tracks.size()]);
229 List<BoneTrack> tracks = new ArrayList<BoneTrack>(); local
    [all...]
  /external/flac/libFLAC/
format.c 436 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) {
442 if(cue_sheet->tracks[i].number == 0) {
448 if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[i].number == 170)) {
454 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) {
465 if(cue_sheet->tracks[i].num_indices == 0) {
470 if(cue_sheet->tracks[i].indices[0].number > 1) {
476 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) {
477 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0)
    [all...]
metadata_object.c 336 object->length += object->data.cue_sheet.tracks[i].num_indices * (
588 FLAC__ASSERT(0 == object->data.cue_sheet.tracks);
591 FLAC__ASSERT(0 != object->data.cue_sheet.tracks);
592 to->data.cue_sheet.tracks = cuesheet_track_array_copy_(object->data.cue_sheet.tracks, object->data.cue_sheet.num_tracks);
593 if(0 == to->data.cue_sheet.tracks) {
662 if(0 != object->data.cue_sheet.tracks) {
664 cuesheet_track_array_delete_(object->data.cue_sheet.tracks, object->data.cue_sheet.num_tracks);
802 if(0 != block1->tracks && 0 != block2->tracks) {
    [all...]
  /external/libmtp/src/
playlist-spl.c 72 static void tracks_from_spl_text_t(text_t* p, uint32_t* tracks, LIBMTP_folder_t* folders, LIBMTP_file_t* files);
73 static void spl_text_t_from_tracks(text_t** p, uint32_t* tracks, const uint32_t trackno, const uint32_t ver_major, const uint32_t ver_minor, char* dnse, LIBMTP_folder_t* folders, LIBMTP_file_t* files);
129 pl->tracks = NULL;
163 pl->tracks = malloc(sizeof(uint32_t)*(pl->no_tracks));
164 tracks_from_spl_text_t(p, pl->tracks, folders, files);
215 spl_text_t_from_tracks(&t, pl->tracks, pl->no_tracks, ver_major, ver_minor, NULL, folders, files);
254 * NOTE: Other playlist metadata aside from playlist name and tracks are
280 if(old->tracks[i] != newlist->tracks[i])
286 IF_DEBUG() printf("new tracks detected:\n")
    [all...]
  /frameworks/av/services/audioflinger/
AudioMixer.cpp 129 // tracks[i] should only be referenced if (mTrackNames & (1 << i)) != 0
131 track_t* t = mState.tracks;
163 track_t* t = mState.tracks;
186 track_t* t = &mState.tracks[n];
219 status_t status = initTrackDownmix(&mState.tracks[n], n, channelMask);
377 track_t& track(mState.tracks[ name ]);
386 unprepareTrackForDownmix(&mState.tracks[name], name);
395 track_t& track = mState.tracks[name];
408 track_t& track = mState.tracks[name];
421 track_t& track = mState.tracks[name]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macos/
SDL_syscdrom.c 162 CDTrackData tracks[SDL_MAX_TRACKS]; local
165 /* Get the number of tracks on the CD by examining the TOC */
203 SDL_memset(tracks, 0, sizeof(tracks));
209 * ((long *) (cdpb.csParam.words+1)) = (long) tracks;
210 cdpb.csParam.words[3] = cdrom->numtracks * sizeof(tracks[0]);
222 if (tracks[i].entry.control & kDataTrackMask)
231 SDL_SYS_BCDToShort(tracks[i].entry.min),
232 SDL_SYS_BCDToShort(tracks[i].entry.min),
233 SDL_SYS_BCDToShort(tracks[i].entry.frame))
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 37 import com.googlecode.mp4parser.authoring.tracks.CroppedTrack;
69 * Shortens/Crops tracks
88 // remove all tracks we will create new tracks from the old
89 List<Track> tracks = movie.getTracks(); local
92 for (Track track : tracks) {
140 // Set up the tracks and retrieve the max buffer size for selected
141 // tracks.
230 // remove all tracks we will create new tracks from the ol
231 List<Track> tracks = movie.getTracks(); local
    [all...]
  /external/libvpx/libvpx/nestegg/test/
test.c 86 unsigned int cnt, i, j, track, tracks, pkt_cnt, pkt_track; local
109 nestegg_track_count(ctx, &tracks);
112 fprintf(stderr, "media has %u tracks and duration %fs\n", tracks, duration / 1e9);
115 for (i = 0; i < tracks; ++i) {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
SrtParser.java 18 import com.googlecode.mp4parser.authoring.tracks.TextTrackImpl;
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 68 private ArrayList<BoneTrack> tracks = new ArrayList<BoneTrack>(); field in class:SkeletonLoader
101 assert elementStack.peek().equals("tracks");
121 } else if (qName.equals("tracks")) {
123 tracks.clear();
172 tracks.add(track);
175 } else if (qName.equals("tracks")) {
176 BoneTrack[] trackList = tracks.toArray(new BoneTrack[tracks.size()]);
178 tracks.clear();
234 tracks.clear()
    [all...]
  /external/libvpx/libvpx/nestegg/include/nestegg/
nestegg.h 166 /** Query the number of tracks in the media stream.
168 @param tracks Storage for the queried track count.
171 int nestegg_track_count(nestegg * context, unsigned int * tracks);
174 key point in the stream at or before @a tstamp. Other tracks in the
  /external/chromium-trace/
script.js 1 window.FLATTENED={};window.FLATTENED.base=!0;window.FLATTENED.event_target=!0;window.FLATTENED.measuring_stick=!0;window.FLATTENED.filter=!0;window.FLATTENED.range=!0;window.FLATTENED.selection=!0;window.FLATTENED.timeline_viewport=!0;window.FLATTENED.ui=!0;window.FLATTENED["tracks.track"]=!0;window.FLATTENED["tracks.container_track"]=!0;window.FLATTENED.fast_rect_renderer=!0;window.FLATTENED.color_scheme=!0;window.FLATTENED["tracks.canvas_based_track"]=!0;window.FLATTENED.sorted_array_utils=!0;
2 window.FLATTENED["tracks.slice_track"]=!0;window.FLATTENED.guid=!0;window.FLATTENED["model.slice"]=!0;window.FLATTENED["model.slice_group"]=!0;window.FLATTENED["model.async_slice_group"]=!0;window.FLATTENED["model.sample"]=!0;window.FLATTENED["model.thread"]=!0;window.FLATTENED["model.counter"]=!0;window.FLATTENED["model.process_base"]=!0;window.FLATTENED["model.process"]=!0;window.FLATTENED["model.kernel"]=!0;window.FLATTENED["model.cpu"]=!0;window.FLATTENED.model=!0;
3 window.FLATTENED["tracks.cpu_track"]=!0;window.FLATTENED["tracks.counter_track"]=!0;window.FLATTENED["tracks.slice_group_track"]=!0;window.FLATTENED["tracks.async_slice_group_track"]=!0;window.FLATTENED["tracks.thread_track"]=!0;window.FLATTENED["tracks.process_track"]=!0;window.FLATTENED["tracks.model_track"]=!0;window.FLATTENED["tracks.ruler_track" (…)
    [all...]

Completed in 441 milliseconds

1 2 3 4 5