ZModoRecorder.cpp 1022 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #include "ZModoRecorder.h"
  2. #include <HttpClient.h>
  3. #include <Logging.h>
  4. namespace CameraRecorder {
  5. namespace Recorder {
  6. ZModoRecorder::ZModoRecorder(Http::HttpClient* pHttpClient, const Settings& settings, Util::RecorderMutexPointer pRecorderMutex) :
  7. Recorder(pRecorderMutex),
  8. m_pHttpClient(pHttpClient),
  9. m_settings(settings)
  10. {
  11. }
  12. ZModoRecorder::~ZModoRecorder()
  13. {
  14. }
  15. std::string ZModoRecorder::Snapshot(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg)
  16. {
  17. Logging::Log(Logging::Severity::Debug, "ZModoRecorder Snapshot");
  18. return std::string();
  19. }
  20. std::string ZModoRecorder::MultiSnapshot(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg, int numberOfImages)
  21. {
  22. Logging::Log(Logging::Severity::Debug, "ZModoRecorder MultiSnapshot");
  23. return std::string();
  24. }
  25. std::string ZModoRecorder::Video(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg)
  26. {
  27. Logging::Log(Logging::Severity::Debug, "ZModoRecorder Video");
  28. return std::string();
  29. }
  30. } // namespace Recorder
  31. } // namespace CameraRecorder