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

1 2 3 4 5 6 7

  /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) {
  /hardware/intel/img/libdrm/libdrm/radeon/
radeon_track.h 49 struct radeon_track tracks; member in struct:radeon_tracker
  /developers/demos/MusicDemo/src/main/java/com/example/android/musicservicedemo/utils/
QueueHelper.java 92 Iterable<MediaMetadata> tracks) {
95 for (MediaMetadata track : tracks) {
119 Iterable<MediaMetadata> tracks = musicProvider.getMusicsByGenre(genre); local
121 return convertToQueue(tracks);
  /external/chromium_org/content/shell/renderer/test_runner/
MockWebMediaStreamCenter.cpp 83 WebVector<WebMediaStreamTrack> tracks; local
84 stream.audioTracks(tracks);
85 for (size_t i = 0; i < tracks.size(); ++i)
86 tracks[i].source().setReadyState(WebMediaStreamSource::ReadyStateEnded);
87 stream.videoTracks(tracks);
88 for (size_t i = 0; i < tracks.size(); ++i)
89 tracks[i].source().setReadyState(WebMediaStreamSource::ReadyStateEnded);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackList.cpp 85 // 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."
123 // The text tracks are sorted as follows:
124 // 1. The text tracks corresponding to track element children of the media element, in tree order.
125 // 2. Any text tracks added using the addTextTrack() method, in the order they were added, oldest first.
126 // 3. Any media-resource-specific text tracks (text tracks corresponding to data in the media
155 // When no tracks match the given argument, the method must return null.
161 WillBeHeapVector<RefPtrWillBeMember<TextTrack> >* tracks = 0; local
164 tracks = &m_elementTracks
213 WillBeHeapVector<RefPtrWillBeMember<TextTrack> >* tracks = 0; local
249 const WillBeHeapVector<RefPtrWillBeMember<TextTrack> >* tracks = 0; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
webmdec.cc 84 const mkvparser::Tracks *const tracks = segment->GetTracks(); member in class:mkvparser
86 for (unsigned long i = 0; i < tracks->GetTracksCount(); ++i) {
87 const mkvparser::Track* const track = tracks->GetTrackByIndex(i);
  /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
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStream.cpp 81 PassRefPtrWillBeRawPtr<MediaStream> MediaStream::create(ExecutionContext* context, const MediaStreamTrackVector& tracks)
86 for (size_t i = 0; i < tracks.size(); ++i)
87 processTrack(tracks[i].get(), tracks[i]->kind() == "audio" ? audioTracks : videoTracks);
255 MediaStreamTrackVector tracks; local
257 tracks.append((*iter)->clone(context));
259 tracks.append((*iter)->clone(context));
260 return MediaStream::create(context, tracks);
339 MediaStreamTrackVector* tracks = 0;
342 tracks = &m_audioTracks
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/test/
test.c 88 unsigned int cnt, i, j, track, tracks, pkt_cnt, pkt_track; local
111 nestegg_track_count(ctx, &tracks);
114 fprintf(stderr, "media has %u tracks and duration %fs\n", tracks, duration / 1e9);
117 for (i = 0; i < tracks; ++i) {
  /external/libvpx/libvpx/third_party/nestegg/test/
test.c 88 unsigned int cnt, i, j, track, tracks, pkt_cnt, pkt_track; local
111 nestegg_track_count(ctx, &tracks);
114 fprintf(stderr, "media has %u tracks and duration %fs\n", tracks, duration / 1e9);
117 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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/test/
test.c 88 unsigned int cnt, i, j, track, tracks, pkt_cnt, pkt_track; local
111 nestegg_track_count(ctx, &tracks);
114 fprintf(stderr, "media has %u tracks and duration %fs\n", tracks, duration / 1e9);
117 for (i = 0; i < tracks; ++i) {
  /external/chromium_org/content/renderer/media/
peer_connection_tracker.cc 77 blink::WebVector<blink::WebMediaStreamTrack> tracks; local
78 stream.audioTracks(tracks);
79 if (!tracks.isEmpty()) {
81 for (size_t i = 0; i < tracks.size(); ++i) {
82 result += SerializeMediaStreamComponent(tracks[i]);
83 if (i != tracks.size() - 1)
88 stream.videoTracks(tracks);
89 if (!tracks.isEmpty()) {
91 for (size_t i = 0; i < tracks.size(); ++i) {
92 result += SerializeMediaStreamComponent(tracks[i])
    [all...]
rtc_peer_connection_handler_unittest.cc 485 blink::WebVector<blink::WebMediaStreamTrack> tracks; local
486 local_stream.audioTracks(tracks);
487 ASSERT_LE(1ul, tracks.size());
491 request->setSelector(tracks[0]);
502 blink::WebVector<blink::WebMediaStreamTrack> tracks; local
503 remote_stream.audioTracks(tracks);
504 ASSERT_LE(1ul, tracks.size());
508 request->setSelector(tracks[0]);
519 blink::WebVector<blink::WebMediaStreamTrack> tracks; local
521 local_stream.audioTracks(tracks);
848 blink::WebVector<blink::WebMediaStreamTrack> tracks; local
    [all...]
webrtc_audio_capturer.cc 342 // Notify all tracks about the new format.
404 TrackList::ItemList tracks; local
411 tracks = tracks_.Items();
420 for (TrackList::ItemList::const_iterator it = tracks.begin();
421 it != tracks.end();
469 TrackList::ItemList tracks; local
487 tracks = tracks_.Items();
503 // Notify the tracks on when the format changes. This will do nothing if
535 // Feed the post-processed data to the tracks.
536 for (TrackList::ItemList::const_iterator it = tracks.begin()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
conductor.cc 451 webrtc::VideoTrackVector tracks = stream->GetVideoTracks(); local
453 if (!tracks.empty()) {
454 webrtc::VideoTrackInterface* track = tracks[0];

Completed in 549 milliseconds

1 2 3 4 5 6 7