moviecapture.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // moviecapture.h
  2. //
  3. // Copyright (C) 2001, Chris Laurel <claurel@shatters.net>
  4. //
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. #ifndef _MOVIECAPTURE_H_
  10. #define _MOVIECAPTURE_H_
  11. #include <string>
  12. class MovieCapture
  13. {
  14.  public:
  15.     MovieCapture() {};
  16.     virtual ~MovieCapture() {};
  17.     virtual bool start(const std::string& filename,
  18.                        int width, int height,
  19.                        float fps) = 0;
  20.     virtual bool end() = 0;
  21.     virtual bool captureFrame() = 0;
  22.     virtual int getFrameCount() const = 0;
  23.     virtual int getWidth() const = 0;
  24.     virtual int getHeight() const = 0;
  25.     virtual float getFrameRate() const = 0;
  26.     virtual void setAspectRatio(int aspectNumerator, int aspectDenominator) = 0;
  27.     virtual void setQuality(float) = 0;
  28.     virtual void recordingStatus(bool started) = 0; /* to update UI recording status indicator */
  29. };
  30. #endif // _MOVIECAPTURE_H_