Adapt to Windows and change Name

Change-Id: I875ce8a6c90463021c0ee5979fe11a7f1f3a3869
diff --git a/GreenScreen/videoSubscriber.h b/GreenScreen/videoSubscriber.h
new file mode 100644
index 0000000..4e238d4
--- /dev/null
+++ b/GreenScreen/videoSubscriber.h
@@ -0,0 +1,96 @@
+/**
+ *  Copyright (C) 2004-2020 Savoir-faire Linux Inc.
+ *
+ *  Author: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+
+#pragma once
+
+// AvFrame
+extern "C" {
+#include <libavutil/frame.h>
+}
+#include <observer.h>
+
+//STl
+#include <map>
+#include <thread>
+#include <condition_variable>
+
+// Frame Scaler
+#include <framescaler.h>
+
+// OpenCV headers
+#include <opencv2/core.hpp>
+
+#include "pluginProcessor.h"
+
+namespace jami {
+    
+class FrameCopy {
+public:
+    // This frame is a resized version of the original in RGB format
+    cv::Mat resizedFrameRGB;
+    cv::Size resizedSize;
+    // This frame is used to draw predictions into in RGB format
+    cv::Mat predictionsFrameRGB;
+    cv::Size originalSize;
+    // This frame is used to draw predictions into in RGB format on a resized frame
+    cv::Mat predictionsResizedFrameRGB;
+};
+
+class VideoSubscriber : public jami::Observer<AVFrame*> {
+public:
+    VideoSubscriber(const std::string& dataPath);
+    ~VideoSubscriber();
+
+    virtual void update(jami::Observable<AVFrame*> *, AVFrame* const &) override;
+    virtual void attached(jami::Observable<AVFrame*> *) override;
+    virtual void detached(jami::Observable<AVFrame*> *) override;
+
+    void detach();
+    void stop();
+    void setBackground(const std::string& dataPath, const std::string& value);
+
+
+private:
+    // Observer pattern
+    Observable<AVFrame*> *observable_ = nullptr;
+
+    //Data
+    std::string path_;
+
+    // Frame
+    FrameCopy fcopy;
+    cv::Mat frame;
+
+    FrameScaler scaler;
+
+    // Threading
+    std::thread processFrameThread;
+    std::mutex inputLock;
+    std::condition_variable inputCv;
+
+    // Status variables of the processing
+    bool firstRun{true};
+    bool running{true};
+    bool newFrame{false};
+
+    //std::shared_ptr<PluginProcessor> pluginProcessor;
+    PluginProcessor pluginProcessor;
+};
+}