Searched refs:timescale (Results 1 – 7 of 7) sorted by relevance
35 private long timescale; field in MediaHeaderBox52 return timescale; in getTimescale()84 public void setTimescale(long timescale) { in setTimescale() argument85 this.timescale = timescale; in setTimescale()102 timescale = IsoTypeReader.readUInt32(content); in _parseDetails()107 timescale = IsoTypeReader.readUInt32(content); in _parseDetails()136 IsoTypeWriter.writeUInt32(byteBuffer, timescale); in getContent()141 IsoTypeWriter.writeUInt32(byteBuffer, timescale); in getContent()
38 private long timescale; field in MovieHeaderBox68 return timescale; in getTimescale()108 timescale = IsoTypeReader.readUInt32(content); in _parseDetails()113 timescale = IsoTypeReader.readUInt32(content); in _parseDetails()168 IsoTypeWriter.writeUInt32(byteBuffer, timescale); in getContent()173 IsoTypeWriter.writeUInt32(byteBuffer, timescale); in getContent()207 public void setTimescale(long timescale) { in setTimescale() argument208 this.timescale = timescale; in setTimescale()
25 private long timescale; field in TrackMetaData52 return timescale; in getTimescale()55 public void setTimescale(long timescale) { in setTimescale() argument56 this.timescale = timescale; in setTimescale()
77 long timescale = this.getTracks().iterator().next().getTrackMetaData().getTimescale();79 timescale = gcd(track.getTrackMetaData().getTimescale(), timescale);81 return timescale;
48 private int timescale; field in H264TrackImpl58 public H264TrackImpl(InputStream inputStream, String lang, long timescale) throws IOException { in H264TrackImpl() argument60 if (timescale > 1000) { in H264TrackImpl()61 timescale = timescale; //e.g. 23976 in H264TrackImpl()125 trackMetaData.setTimescale(timescale); in parse()406 …timescale = seqParameterSet.vuiParams.time_scale >> 1; // Not sure why, but I found this in severa… in configureFramerate()408 if (timescale == 0 || frametick == 0) { in configureFramerate()409 …err.println("Warning: vuiParams contain invalid values: time_scale: " + timescale + " and frame_ti… in configureFramerate()410 timescale = 90000; in configureFramerate()415 timescale = 90000; in configureFramerate()
541 long timescale = movie.getTracks().iterator().next().getTrackMetaData().getTimescale(); in getTimescale() local543 timescale = gcd(track.getTrackMetaData().getTimescale(), timescale); in getTimescale()545 return timescale; in getTimescale()
122 float timescale = 0.01; variable