/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/chromium_org/third_party/WebKit/Source/testing/runner/ |
MockWebMediaStreamCenter.cpp | 82 WebVector<WebMediaStreamTrack> tracks; local 83 stream.audioTracks(tracks); 84 for (size_t i = 0; i < tracks.size(); ++i) 85 tracks[i].source().setReadyState(WebMediaStreamSource::ReadyStateEnded); 86 stream.videoTracks(tracks); 87 for (size_t i = 0; i < tracks.size(); ++i) 88 tracks[i].source().setReadyState(WebMediaStreamSource::ReadyStateEnded);
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/ |
TextTrackList.cpp | 75 // Calculate the "Let n be the number of text tracks whose text track mode is showing and that are in the media element's list of text tracks before track." 113 // The text tracks are sorted as follows: 114 // 1. The text tracks corresponding to track element children of the media element, in tree order. 115 // 2. Any text tracks added using the addTextTrack() method, in the order they were added, oldest first. 116 // 3. Any media-resource-specific text tracks (text tracks corresponding to data in the media 145 // When no tracks match the given argument, the method must return null. 151 Vector<RefPtr<TextTrack> >* tracks = 0; local 154 tracks = &m_elementTracks 203 Vector<RefPtr<TextTrack> >* tracks = 0; local 236 const Vector<RefPtr<TextTrack> >* tracks = 0; local [all...] |
/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;
|
/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/chromium_org/content/renderer/media/ |
peer_connection_tracker.cc | 75 blink::WebVector<blink::WebMediaStreamTrack> tracks; local 76 stream.audioTracks(tracks); 77 if (!tracks.isEmpty()) { 79 for (size_t i = 0; i < tracks.size(); ++i) { 80 result += SerializeMediaStreamComponent(tracks[i]); 81 if (i != tracks.size() - 1) 86 stream.videoTracks(tracks); 87 if (!tracks.isEmpty()) { 89 for (size_t i = 0; i < tracks.size(); ++i) { 90 result += SerializeMediaStreamComponent(tracks[i]) [all...] |
rtc_peer_connection_handler_unittest.cc | 460 blink::WebVector<blink::WebMediaStreamTrack> tracks; local 461 local_stream.audioTracks(tracks); 462 ASSERT_LE(1ul, tracks.size()); 466 request->setSelector(tracks[0]); 477 blink::WebVector<blink::WebMediaStreamTrack> tracks; local 478 remote_stream.audioTracks(tracks); 479 ASSERT_LE(1ul, tracks.size()); 483 request->setSelector(tracks[0]); 494 blink::WebVector<blink::WebMediaStreamTrack> tracks; local 496 local_stream.audioTracks(tracks); 810 blink::WebVector<blink::WebMediaStreamTrack> tracks; local [all...] |
webrtc_audio_capturer.cc | 134 // Notify all tracks about the new format. 373 TrackList::ItemList tracks; local 380 tracks = tracks_.Items(); 385 for (TrackList::ItemList::const_iterator it = tracks.begin(); 386 it != tracks.end(); 431 TrackList::ItemList tracks; local 447 tracks = tracks_.Items(); 456 // Notify the tracks on when the format changes. This will do nothing if 463 // Feed the data to the tracks. 464 for (TrackList::ItemList::const_iterator it = tracks.begin() [all...] |
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/ |
conductor.cc | 450 webrtc::VideoTrackVector tracks = stream->GetVideoTracks(); local 452 if (!tracks.empty()) { 453 webrtc::VideoTrackInterface* track = tracks[0];
|