Searched defs:timescale (Results 1 - 9 of 9) sorted by path

/external/chromium_org/media/base/mac/
H A Dcoremedia_glue.h26 CMTimeScale timescale; member in struct:CoreMediaGlue::__anon8566
66 static CMTime CMTimeMake(int64_t value, int32_t timescale);
/external/chromium_org/media/formats/mp4/
H A Dbox_definitions.h108 uint32 timescale; member in struct:media::mp4::MovieHeader
259 uint32 timescale; member in struct:media::mp4::MediaHeader
H A Dtrack_run_iterator.cc28 int64 timescale; member in struct:media::mp4::TrackRunInfo
49 timescale(-1),
250 tri.timescale = trak->media.header.timescale;
486 return DecodeTimestampFromRational(sample_dts_, run_itr_->timescale);
492 run_itr_->timescale);
497 return TimeDeltaFromRational(sample_itr_->duration, run_itr_->timescale);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DMediaHeaderBox.java35 private long timescale; field in class:MediaHeaderBox
52 return timescale;
84 public void setTimescale(long timescale) { argument
85 this.timescale = timescale;
102 timescale = IsoTypeReader.readUInt32(content);
107 timescale = IsoTypeReader.readUInt32(content);
122 result.append("timescale=").append(getTimescale());
136 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
141 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
[all...]
H A DMovieHeaderBox.java38 private long timescale; field in class:MovieHeaderBox
68 return timescale;
108 timescale = IsoTypeReader.readUInt32(content);
113 timescale = IsoTypeReader.readUInt32(content);
144 result.append("timescale=").append(getTimescale());
168 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
173 IsoTypeWriter.writeUInt32(byteBuffer, timescale);
207 public void setTimescale(long timescale) { argument
208 this.timescale = timescale;
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DTrackMetaData.java25 private long timescale; field in class:TrackMetaData
52 return timescale;
55 public void setTimescale(long timescale) { argument
56 this.timescale = timescale;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DH264TrackImpl.java48 private int timescale; field in class:H264TrackImpl
58 public H264TrackImpl(InputStream inputStream, String lang, long timescale) throws IOException { argument
60 if (timescale > 1000) {
61 timescale = timescale; //e.g. 23976
125 trackMetaData.setTimescale(timescale);
406 timescale = seqParameterSet.vuiParams.time_scale >> 1; // Not sure why, but I found this in several places, and it works...
408 if (timescale == 0 || frametick == 0) {
409 System.err.println("Warning: vuiParams contain invalid values: time_scale: " + timescale + " and frame_tick: " + frametick + ". Setting frame rate to 25fps");
410 timescale
[all...]
/external/skia/tools/
H A Dbench_playback.cpp29 DEFINE_string(timescale, "ms", "Print times in ms, us, or ns");
34 static double timescale() { function
80 const double scale = timescale();
H A Dbench_record.cpp29 DEFINE_string(timescale, "us", "Print times in ms, us, or ns");
36 static double timescale() { function
83 const double scale = timescale();
136 const double scale = timescale();

Completed in 370 milliseconds