AudioFilter

- creates plugin with reverb filter
- adjusts HelloWorld and GreenScreen to fit audio/video handling from daemon
- some code cleanup

Change-Id: If4fda4dc67b9b3db14fc7395ebf3d510923b454b
GitLab: #3
diff --git a/GreenScreen/main.cpp b/GreenScreen/main.cpp
index cdf3602..d669ded 100644
--- a/GreenScreen/main.cpp
+++ b/GreenScreen/main.cpp
@@ -22,6 +22,7 @@
 #include <string.h>
 #include <thread>
 #include <memory>
+
 #include <plugin/jamiplugin.h>
 #include "pluginMediaHandler.h"
 
@@ -33,7 +34,7 @@
 
 #define GreenScreen_VERSION_MAJOR 1
 #define GreenScreen_VERSION_MINOR 0
-#define GreenScreen_VERSION_PATCH 1
+#define GreenScreen_VERSION_PATCH 2
 
 extern "C" {
 void
@@ -46,8 +47,8 @@
     std::cout << "**************************" << std::endl << std::endl;
     std::cout << "**  GREENSCREEN PLUGIN  **" << std::endl;
     std::cout << "**************************" << std::endl << std::endl;
-    std::cout << " Version " << GreenScreen_VERSION_MAJOR << "." << GreenScreen_VERSION_MINOR
-              << "." << GreenScreen_VERSION_PATCH << std::endl;
+    std::cout << " Version " << GreenScreen_VERSION_MAJOR << "." << GreenScreen_VERSION_MINOR << "."
+              << GreenScreen_VERSION_PATCH << std::endl;
 
     // If invokeService doesn't return an error
     if (api) {