DigooRecorder.cpp 1022 B

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