diff src/com/aurellem/capture/video/AbstractVideoRecorder.java @ 39:784a3f4e6202

updating capture-video
author Robert McIntyre <rlm@mit.edu>
date Thu, 03 Nov 2011 16:00:46 -0700
parents 5dfc9e768816
children 6a1b28f060e6
line wrap: on
line diff
     1.1 --- a/src/com/aurellem/capture/video/AbstractVideoRecorder.java	Mon Oct 31 07:43:44 2011 -0700
     1.2 +++ b/src/com/aurellem/capture/video/AbstractVideoRecorder.java	Thu Nov 03 16:00:46 2011 -0700
     1.3 @@ -19,9 +19,9 @@
     1.4  import com.jme3.util.Screenshots;
     1.5  
     1.6  /**
     1.7 - * <code>VideoProcessor</code> copies the frames it receives to video. 
     1.8 + * <code>VideoRecorder</code> copies the frames it receives to video. 
     1.9   * To ensure smooth video at a constant framerate, you should set your 
    1.10 - * application's timer to a new {@link IsoTimer}.  This class will 
    1.11 + * application's timer to a new <code>IsoTimer</code>.  This class will 
    1.12   * auto-determine the framerate of the video based on the time difference 
    1.13   * between the first two frames it receives, although you can manually set 
    1.14   * the framerate by calling <code>setFps(newFramerate)</code>.  Be sure to 
    1.15 @@ -44,7 +44,7 @@
    1.16   */
    1.17  
    1.18  public abstract class AbstractVideoRecorder 
    1.19 -	implements SceneProcessor, IVideoRecorder, AppState{
    1.20 +	implements SceneProcessor, VideoRecorder, AppState{
    1.21  
    1.22  	final File output;
    1.23  	Camera camera;