Searched refs:Track (Results 1 - 25 of 76) sorted by relevance

1234

/external/chromium_org/chrome/common/media_galleries/
H A Ditunes_library.cc10 Track::Track() function in class:itunes::parser::Track
14 Track::Track(uint64 id, const base::FilePath& location) function in class:itunes::parser::Track
19 bool Track::operator<(const Track& other) const {
H A Ditunes_library.h19 struct Track { struct in namespace:itunes::parser
20 Track();
21 Track(uint64 id, const base::FilePath& location);
22 bool operator<(const Track& other) const;
28 typedef std::set<Track> Album;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DManifestWriter.java20 import com.googlecode.mp4parser.authoring.Track;
27 long getBitrate(Track track);
29 long[] calculateFragmentDurations(Track track, Movie movie);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DMovie.java25 List<Track> tracks = new LinkedList<Track>();
27 public List<Track> getTracks() {
31 public void setTracks(List<Track> tracks) {
35 public void addTrack(Track nuTrack) {
49 for (Track track : tracks) {
59 for (Track track : tracks) {
66 public Track getTrackByTrackId(long trackId) {
67 for (Track track : tracks) {
78 for (Track trac
[all...]
H A DAbstractTrack.java22 public abstract class AbstractTrack implements Track {
H A DTrack.java24 * Represents a Track. A track is a timed sequence of related samples.
30 public interface Track { interface
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DTrack.java37 public interface Track extends Savable, Cloneable { interface in inherits:Savable,Cloneable
62 public Track clone();
H A DAnimation.java58 private Track[] tracks;
113 Track<?> trackInstance = tracks[0];
144 * Set the {@link Track}s to be used by this animation.
146 * The array should be organized so that the appropriate Track can
151 public void setTracks(Track[] tracks){
156 * Returns the tracks set in {@link #setTracks(com.jme3.animation.Track[]) }.
160 public Track[] getTracks() {
202 tracks = new Track[arr.length];
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DFragmentIntersectionFinder.java19 import com.googlecode.mp4parser.authoring.Track;
33 public long[] sampleNumbers(Track track, Movie movie);
H A DTwoSecondIntersectionFinder.java20 import com.googlecode.mp4parser.authoring.Track;
31 protected long getDuration(Track track) {
42 public long[] sampleNumbers(Track track, Movie movie) {
46 for (Track thisTrack : movie.getTracks()) {
H A DSyncSampleIntersectFinderImpl.java21 import com.googlecode.mp4parser.authoring.Track;
64 public long[] sampleNumbers(Track track, Movie movie) {
81 Track referenceTrack = null;
82 for (Track candidate : movie.getTracks()) {
96 for (Track testTrack : movie.getTracks()) {
128 throw new RuntimeException("There was absolutely no Track with sync samples. I can't work with that!");
131 for (Track candidate : movie.getTracks()) {
149 throw new RuntimeException("There was absolutely no Track with sync samples. I can't work with that!");
162 public static List<long[]> getSyncSamplesTimestamps(Movie movie, Track track) {
164 for (Track currentTrac
[all...]
H A DFragmentedMp4Builder.java25 import com.googlecode.mp4parser.authoring.Track;
85 protected List<Track> sortTracksInSequence(List<Track> tracks, final int cycle, final Map<Track, long[]> intersectionMap) {
86 tracks = new LinkedList<Track>(tracks);
87 Collections.sort(tracks, new Comparator<Track>() {
88 public int compare(Track o1, Track o2) {
115 HashMap<Track, long[]> intersectionMap = new HashMap<Track, lon
[all...]
H A DDefaultMp4Builder.java45 import com.googlecode.mp4parser.authoring.Track;
75 HashMap<Track, List<ByteBuffer>> track2Sample = new HashMap<Track, List<ByteBuffer>>();
76 HashMap<Track, long[]> track2SampleSizes = new HashMap<Track, long[]>();
88 for (Track track : movie.getTracks()) {
131 protected long[] putSampleSizes(Track track, long[] sizes) {
135 protected List<ByteBuffer> putSamples(Track track, List<ByteBuffer> samples) {
149 for (Track track : movie.getTracks()) {
162 for (Track trac
[all...]
/external/chromium_org/media/webm/
H A Dtracks_builder.h31 class Track { class in class:media::TracksBuilder
33 Track(int track_num, int track_type, const std::string& codec_id,
48 typedef std::list<Track> TrackList;
H A Dwebm_cluster_parser.h25 class Track { class in class:media::WebMClusterParser
27 Track(int track_num, bool is_video);
28 ~Track();
52 typedef std::map<int, Track> TextTrackMap;
118 // Resets the Track objects associated with each text track.
123 Track* FindTextTrack(int track_num);
145 Track audio_;
146 Track video_;
H A Dwebm_cluster_parser.cc76 text_track_map_.insert(std::make_pair(it->first, Track(it->first, false)));
292 Track* track = NULL;
302 } else if (Track* const text_track = FindTextTrack(track_num)) {
354 WebMClusterParser::Track::Track(int track_num, bool is_video) function in class:media::WebMClusterParser::Track
359 WebMClusterParser::Track::~Track() {}
361 bool WebMClusterParser::Track::AddBuffer(
373 void WebMClusterParser::Track::Reset() {
377 bool WebMClusterParser::Track
[all...]
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dheading_track.js20 var HeadingTrack = ui.define('heading-track', tracing.tracks.Track);
23 __proto__: tracing.tracks.Track.prototype,
26 tracing.tracks.Track.prototype.decorate.call(this, viewport);
H A Dcontainer_track.js17 var ContainerTrack = ui.define('container-track', tracing.tracks.Track);
19 __proto__: tracing.tracks.Track.prototype,
22 tracing.tracks.Track.prototype.decorate.call(this, viewport);
40 if (!(this.children[i] instanceof tracing.tracks.Track))
69 tracing.tracks.Track.prototype.addIntersectingItemsInRangeToSelection.
H A Ddrawing_container.js19 var DrawingContainer = ui.define('drawing-container', tracing.tracks.Track);
22 __proto__: tracing.tracks.Track.prototype,
25 tracing.tracks.Track.prototype.decorate.call(this, viewport);
64 if (!(this.children[i] instanceof tracing.tracks.Track))
70 if (!(this.children[i] instanceof tracing.tracks.Track))
120 if (!(element instanceof tracing.tracks.Track))
/external/chromium_org/sync/notifier/
H A Dack_tracker_unittest.cc115 // Tests that various combinations of Track()/Ack() behave as
127 ack_tracker_.Track(ids_one);
129 ack_tracker_.Track(ids_two);
134 ack_tracker_.Track(ids_all);
140 ack_tracker_.Track(ids_one);
142 ack_tracker_.Track(ids_two);
146 ack_tracker_.Track(ids_all);
157 ack_tracker_.Track(ids);
159 ack_tracker_.Track(ids);
179 ack_tracker_.Track(id
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DSilenceTrackImpl.java5 import com.googlecode.mp4parser.authoring.Track;
16 public class SilenceTrackImpl implements Track {
17 Track source;
22 public SilenceTrackImpl(Track ofType, long ms) {
H A DReplaceSampleTrack.java20 import com.googlecode.mp4parser.authoring.Track;
29 * Generates a Track where a single sample has been replaced by a given <code>ByteBuffer</code>.
33 Track origTrack;
38 public ReplaceSampleTrack(Track origTrack, long sampleNumber, ByteBuffer content) {
H A DDivideTimeScaleTrack.java19 import com.googlecode.mp4parser.authoring.Track;
30 public class DivideTimeScaleTrack implements Track {
31 Track source;
34 public DivideTimeScaleTrack(Track source, int timeScaleDivisor) {
H A DMultiplyTimeScaleTrack.java20 import com.googlecode.mp4parser.authoring.Track;
36 public class MultiplyTimeScaleTrack implements Track {
37 Track source;
40 public MultiplyTimeScaleTrack(Track source, int timeScaleFactor) {
/external/libvpx/libwebm/
H A Dmkvparser.hpp74 class Track;
114 long long m_track; //Track::Number()
289 class Track class in namespace:mkvparser
291 Track(const Track&);
292 Track& operator=(const Track&);
300 virtual ~Track();
355 Track(
379 class VideoTrack : public Track
[all...]

Completed in 606 milliseconds

1234