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

1 2 3 4

  /external/libmtp/examples/
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...]
  /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/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/tracks/
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");
Amf0Track.java 17 package com.googlecode.mp4parser.authoring.tracks;
48 trackMetaData.setTimescale(1000); // Text tracks use millieseconds
86 // AMF0 tracks do not have Composition Time
91 // AMF0 tracks do not have Sync Samples
96 // AMF0 tracks do not have Sample Dependencies
CroppedTrack.java 16 package com.googlecode.mp4parser.authoring.tracks;
DivideTimeScaleTrack.java 16 package com.googlecode.mp4parser.authoring.tracks;
MultiplyTimeScaleTrack.java 16 package 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...]
AC3TrackImpl.java 1 package com.googlecode.mp4parser.authoring.tracks;
81 trackMetaData.setTimescale(samplerate); // Audio tracks always use samplerate as timescale
ChangeTimeScaleTrack.java 16 package com.googlecode.mp4parser.authoring.tracks;
QuicktimeTextTrackImpl.java 16 package com.googlecode.mp4parser.authoring.tracks;
TextTrackImpl.java 16 package com.googlecode.mp4parser.authoring.tracks;
61 trackMetaData.setTimescale(1000); // Text tracks use millieseconds
AACTrackImpl.java 16 package com.googlecode.mp4parser.authoring.tracks;
172 trackMetaData.setTimescale(samplerate); // Audio tracks always use samplerate as timescale
EC3TrackImpl.java 1 package com.googlecode.mp4parser.authoring.tracks;
119 trackMetaData.setTimescale(samplerate); // Audio tracks always use samplerate as timescale
  /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/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/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/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/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/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArmatureModifier.java 139 BoneTrack[] tracks = armatureHelper.getTracks(actionStructure, skeleton, blenderContext); local
140 if(tracks != null && tracks.length > 0) {
143 for (BoneTrack track : tracks) {
151 boneAnimation.setTracks(tracks);

Completed in 639 milliseconds

1 2 3 4