From 0fd3fe4ce6fbae71ee7f0883bd2555e8678fd20c Mon Sep 17 00:00:00 2001 From: Maik Jurischka Date: Fri, 19 Dec 2025 09:49:11 +0100 Subject: [PATCH] add license information --- CameraController.cpp | 8 ++++++++ CameraController.h | 8 ++++++++ GStreamerPipeline.cpp | 8 ++++++++ GStreamerPipeline.h | 8 ++++++++ LICENSE | 22 ++++++++++++++++++++++ SocketServer.cpp | 8 ++++++++ SocketServer.h | 8 ++++++++ StreamingEngine.cpp | 8 ++++++++ StreamingEngine.h | 8 ++++++++ main.cpp | 9 +++++++++ 10 files changed, 95 insertions(+) create mode 100644 LICENSE diff --git a/CameraController.cpp b/CameraController.cpp index 93eaa4d..9b0d3e2 100644 --- a/CameraController.cpp +++ b/CameraController.cpp @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Camera Control Implementation + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #include "CameraController.h" #include #include diff --git a/CameraController.h b/CameraController.h index 1d93ba1..8917ad4 100644 --- a/CameraController.h +++ b/CameraController.h @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Camera Control Interface + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #pragma once #include diff --git a/GStreamerPipeline.cpp b/GStreamerPipeline.cpp index 03dceba..d588864 100644 --- a/GStreamerPipeline.cpp +++ b/GStreamerPipeline.cpp @@ -1,3 +1,11 @@ +/* + * VizionStreamer - GStreamer Pipeline Implementation + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #include "GStreamerPipeline.h" #include #include diff --git a/GStreamerPipeline.h b/GStreamerPipeline.h index 1139536..72cad58 100644 --- a/GStreamerPipeline.h +++ b/GStreamerPipeline.h @@ -1,3 +1,11 @@ +/* + * VizionStreamer - GStreamer Pipeline Interface + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #pragma once #include diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c8e8db6 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +GStreamer Camera Viewer +Copyright (c) 2025 + +This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. + +You are free to: +- Share — copy and redistribute the material in any medium or format +- Adapt — remix, transform, and build upon the material + +Under the following terms: +- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. +- NonCommercial — You may not use the material for commercial purposes. +- ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original. + +No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. + +Full license text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode + +=============================================================================== + +DISCLAIMER: +This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software. diff --git a/SocketServer.cpp b/SocketServer.cpp index 1579ce0..e0a7b13 100644 --- a/SocketServer.cpp +++ b/SocketServer.cpp @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Unix Socket Server Implementation + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #include "SocketServer.h" #include #include diff --git a/SocketServer.h b/SocketServer.h index e114d89..dafe7b6 100644 --- a/SocketServer.h +++ b/SocketServer.h @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Unix Socket Server Interface + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #pragma once #include diff --git a/StreamingEngine.cpp b/StreamingEngine.cpp index 396aca6..9d19aeb 100644 --- a/StreamingEngine.cpp +++ b/StreamingEngine.cpp @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Streaming Engine Implementation + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #include "StreamingEngine.h" #include #include diff --git a/StreamingEngine.h b/StreamingEngine.h index 5367577..d97bd79 100644 --- a/StreamingEngine.h +++ b/StreamingEngine.h @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Streaming Engine Interface + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #pragma once #include diff --git a/main.cpp b/main.cpp index f5082ab..2a7edd7 100644 --- a/main.cpp +++ b/main.cpp @@ -1,3 +1,11 @@ +/* + * VizionStreamer - Main Application + * Copyright (c) 2025 Maik Jurischka + * + * Licensed under CC BY-NC-SA 4.0 + * https://creativecommons.org/licenses/by-nc-sa/4.0/ + */ + #include #include #include @@ -87,6 +95,7 @@ int main() { std::cout << "\n========================================" << std::endl; std::cout << "VizionStreamer Ready" << std::endl; std::cout << "Author: Maik Jurischka " << std::endl; + std::cout << "License: CC BY-NC-SA 4.0 -> https://creativecommons.org/licenses/by-nc-sa/4.0/" << std::endl; std::cout << "========================================" << std::endl << std::endl; std::cout << "Control socket: " << socketPath << std::endl; std::cout << "Default pipeline: videoconvert ! autovideosink" << std::endl;