Home
last modified time | relevance | path

Searched refs:tracks (Results 1 – 25 of 125) sorted by relevance

12345

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DAppendTrack.java16 package com.googlecode.mp4parser.authoring.tracks;
38 Track[] tracks; field in AppendTrack
41 public AppendTrack(Track... tracks) throws IOException { in AppendTrack() argument
42 this.tracks = tracks; in AppendTrack()
44 for (Track track : tracks) { in AppendTrack()
67 …track + " to " + tracks[0] + " since their Sample Description Boxes differ: \n" + track.getSampleD… in AppendTrack()
238 for (Track track : tracks) { in getSamples()
250 … if (tracks[0].getDecodingTimeEntries() != null && !tracks[0].getDecodingTimeEntries().isEmpty()) { in getDecodingTimeEntries()
252 for (Track track : tracks) { in getDecodingTimeEntries()
275 …if (tracks[0].getCompositionTimeEntries() != null && !tracks[0].getCompositionTimeEntries().isEmpt… in getCompositionTimeEntries()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
DMovie.java25 List<Track> tracks = new LinkedList<Track>(); field in Movie
28 return tracks; in getTracks()
31 public void setTracks(List<Track> tracks) { in setTracks() argument
32 this.tracks = tracks; in setTracks()
42 tracks.add(nuTrack); in addTrack()
49 for (Track track : tracks) { in toString()
59 for (Track track : tracks) { in getNextTrackId()
67 for (Track track : tracks) {
/external/webrtc/talk/app/webrtc/
Dmediastream.cc89 bool MediaStream::AddTrack(TrackVector* tracks, Track* track) { in AddTrack() argument
90 typename TrackVector::iterator it = FindTrack(tracks, track->id()); in AddTrack()
91 if (it != tracks->end()) in AddTrack()
93 tracks->push_back(track); in AddTrack()
99 bool MediaStream::RemoveTrack(TrackVector* tracks, in RemoveTrack() argument
101 ASSERT(tracks != NULL); in RemoveTrack()
104 typename TrackVector::iterator it = FindTrack(tracks, track->id()); in RemoveTrack()
105 if (it == tracks->end()) in RemoveTrack()
107 tracks->erase(it); in RemoveTrack()
/external/flac/libFLAC/
Dformat.c432 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) { in FLAC__format_cuesheet_is_legal()
438 if(cue_sheet->tracks[i].number == 0) { in FLAC__format_cuesheet_is_legal()
444 …if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[… in FLAC__format_cuesheet_is_legal()
450 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) { in FLAC__format_cuesheet_is_legal()
461 if(cue_sheet->tracks[i].num_indices == 0) { in FLAC__format_cuesheet_is_legal()
466 if(cue_sheet->tracks[i].indices[0].number > 1) { in FLAC__format_cuesheet_is_legal()
472 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) { in FLAC__format_cuesheet_is_legal()
473 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) { in FLAC__format_cuesheet_is_legal()
479 if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) { in FLAC__format_cuesheet_is_legal()
/external/libmtp/src/
Dplaylist-spl.c72 static void tracks_from_spl_text_t(text_t* p, uint32_t* tracks, LIBMTP_folder_t* folders, LIBMTP_fi…
73 static void spl_text_t_from_tracks(text_t** p, uint32_t* tracks, const uint32_t trackno, const uint…
130 pl->tracks = NULL; in spl_to_playlist_t()
164 pl->tracks = malloc(sizeof(uint32_t)*(pl->no_tracks)); in spl_to_playlist_t()
165 tracks_from_spl_text_t(p, pl->tracks, folders, files); in spl_to_playlist_t()
216 spl_text_t_from_tracks(&t, pl->tracks, pl->no_tracks, ver_major, ver_minor, NULL, folders, files); in playlist_t_to_spl()
281 if(old->tracks[i] != newlist->tracks[i]) in update_spl_playlist()
562 uint32_t* tracks, in tracks_from_spl_text_t() argument
569 tracks[c] = discover_id_from_filepath(p->text, folders, files); in tracks_from_spl_text_t()
570 LIBMTP_PLST_DEBUG("track %d = %s (%u)\n", c+1, p->text, tracks[c]); in tracks_from_spl_text_t()
[all …]
/external/libmtp/examples/
Dsendtr.c135 uint32_t *tracks; in add_track_to_album() local
137 tracks = (uint32_t *)malloc((found_album->no_tracks+1) * sizeof(uint32_t)); in add_track_to_album()
139 if (!tracks) { in add_track_to_album()
144 if (found_album->tracks != NULL) { in add_track_to_album()
145 memcpy(tracks, found_album->tracks, found_album->no_tracks * sizeof(uint32_t)); in add_track_to_album()
146 free(found_album->tracks); in add_track_to_album()
148 tracks[found_album->no_tracks-1] = trackmeta->item_id; in add_track_to_album()
149 found_album->tracks = tracks; in add_track_to_album()
156 albuminfo->tracks = trackid; in add_track_to_album()
Dplaylists.c38 track = LIBMTP_Get_Trackmetadata(device, pl->tracks[i]); in dump_plinfo()
40 printf(" %u: %s - %s\n", pl->tracks[i], track->artist, track->title); in dump_plinfo()
43 printf(" %u: INVALID TRACK REFERENCE!\n", pl->tracks[i]); in dump_plinfo()
Dgetplaylist.c35 track = LIBMTP_Get_Trackmetadata(device, pl->tracks[i]); in dump_playlist()
37 printf(" %u: %s - %s\n", pl->tracks[i], track->artist, track->title); in dump_playlist()
40 printf(" %u: INVALID TRACK REFERENCE!\n", pl->tracks[i]); in dump_playlist()
DMakefile.am1 bin_PROGRAMS=mtp-connect mtp-detect mtp-tracks mtp-files \
10 mtp_tracks_SOURCES=tracks.c util.c util.h common.h
Dnewplaylist.c100 playlist->tracks = ids; in main()
/external/sonivox/jet_tools/JetCreator/
DJetCreatorhlp.dat48 display empty tracks =
76 delete empty tracks = This option will tell JET to delete any empty tracks from the output file.
90 omit empty tracks =
98 delete empty tracks = Selecting this will delete any empty MIDI tracks.
102 tracklist = The tracks in the segment currently playing segment display here. Tracks which are mut…
107 omit empty tracks = Selecting this will delete any empty MIDI tracks.
Dmidifile.py1296 self.tracks = []
1306 self.tracks.append(track)
1338 for track in self.tracks:
1351 for track in self.tracks[1:]:
1352 self.tracks[0].MergeEvents(track.events)
1353 self.tracks = self.tracks[:1]
1360 for track in self.tracks[:]:
1361 for event in self.tracks.events:
1366 self.tracks.remove(track)
1374 for track in self.tracks:
[all …]
DJetFile.py160 for track in self.tracks:
187 if jet_event.track_num >= len(self.tracks):
212 self.tracks[jet_event.track_num].events.MergeEvents(events)
215 if jet_event.track_num >= len(self.tracks):
228 self.tracks[jet_event.track_num].events.MergeEvents(events)
231 if jet_event.track_num >= len(self.tracks):
246 self.tracks[jet_event.track_num].events.MergeEvents(events)
/external/libvpx/libvpx/
Dwebmdec.cc86 const mkvparser::Tracks *const tracks = segment->GetTracks(); in file_is_webm() local
88 for (unsigned long i = 0; i < tracks->GetTracksCount(); ++i) { in file_is_webm()
89 const mkvparser::Track *const track = tracks->GetTrackByIndex(i); in file_is_webm()
/external/python/cpython2/Lib/plat-irix5/
Dreadcd.doc64 tracks is returned.
76 a list of tracks can be specified. "settracklist(tracklist)" is
89 When two consecutive tracks are played, it is possible to choose
90 whether the pause that may be between the tracks is played as well or
/external/python/cpython2/Lib/plat-irix6/
Dreadcd.doc64 tracks is returned.
76 a list of tracks can be specified. "settracklist(tracklist)" is
89 When two consecutive tracks are played, it is possible to choose
90 whether the pause that may be between the tracks is played as well or
/external/syslinux/utils/
Dmkdiskimage.in218 $tracks = $c*$h;
227 for ( $i = 1 ; $i < $tracks ; $i++ ) {
/external/roboto-fonts/
DREADME.android10 This directory tracks the upstream result of "make; make crunch; make android",
/external/noto-fonts/other/
DREADME.android10 This directory tracks the upstream result of running 'make android',
/external/mp4parser/
DREADME.android12 but it is as well as dealing with structure like tracks and movies.
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
DFragmentedMp4Builder.java85 …protected List<Track> sortTracksInSequence(List<Track> tracks, final int cycle, final Map<Track, l… in sortTracksInSequence() argument
86 tracks = new LinkedList<Track>(tracks); in sortTracksInSequence()
87 Collections.sort(tracks, new Comparator<Track>() { in sortTracksInSequence()
110 return tracks; in sortTracksInSequence()
/external/iproute2/
DREADME.devel12 branch is a temporary branch that tracks the code intended for the
/external/droiddriver/
Dcontributing.md5 The [`master` branch](https://github.com/appium/droiddriver/tree/master) on GitHub tracks [the AOSP…
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
DSrtParser.java18 import com.googlecode.mp4parser.authoring.tracks.TextTrackImpl;
/external/webrtc/webrtc/examples/peerconnection/client/
Dconductor.cc484 webrtc::VideoTrackVector tracks = stream->GetVideoTracks(); in UIThreadCallback() local
486 if (!tracks.empty()) { in UIThreadCallback()
487 webrtc::VideoTrackInterface* track = tracks[0]; in UIThreadCallback()

12345