Home | History | Annotate | Download | only in state

Lines Matching refs:framerate

34     private int framerate = 30;
74 app.setTimer(new IsoTimer(framerate));
170 writer = new MjpegFileWriter(file, width, height, framerate);
199 private float framerate;
203 public IsoTimer(float framerate) {
204 this.framerate = framerate;
209 return (long) (this.ticks * (1.0f / this.framerate) * 1000f);
217 return this.framerate;
221 return (float) (1.0f / this.framerate);
228 if (difference < (1.0f / this.framerate) * 1000.0f) {