add license information

This commit is contained in:
Maik Jurischka
2025-12-19 09:49:11 +01:00
parent 1c61e76eb4
commit 0fd3fe4ce6
10 changed files with 95 additions and 0 deletions

View File

@@ -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 "CameraController.h"
#include <sstream> #include <sstream>
#include <iostream> #include <iostream>

View File

@@ -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 #pragma once
#include <vizionsdk/VizionSDK.h> #include <vizionsdk/VizionSDK.h>

View File

@@ -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 "GStreamerPipeline.h"
#include <iostream> #include <iostream>
#include <cstring> #include <cstring>

View File

@@ -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 #pragma once
#include <gst/gst.h> #include <gst/gst.h>

22
LICENSE Normal file
View File

@@ -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.

View File

@@ -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 "SocketServer.h"
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/un.h> #include <sys/un.h>

View File

@@ -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 #pragma once
#include <string> #include <string>

View File

@@ -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 "StreamingEngine.h"
#include <iostream> #include <iostream>
#include <chrono> #include <chrono>

View File

@@ -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 #pragma once
#include <vizionsdk/VizionSDK.h> #include <vizionsdk/VizionSDK.h>

View File

@@ -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 <iostream> #include <iostream>
#include <memory> #include <memory>
#include <csignal> #include <csignal>
@@ -87,6 +95,7 @@ int main() {
std::cout << "\n========================================" << std::endl; std::cout << "\n========================================" << std::endl;
std::cout << "VizionStreamer Ready" << std::endl; std::cout << "VizionStreamer Ready" << std::endl;
std::cout << "Author: Maik Jurischka <maik@skadilabs.de>" << std::endl; std::cout << "Author: Maik Jurischka <maik@skadilabs.de>" << 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 << "========================================" << std::endl << std::endl;
std::cout << "Control socket: " << socketPath << std::endl; std::cout << "Control socket: " << socketPath << std::endl;
std::cout << "Default pipeline: videoconvert ! autovideosink" << std::endl; std::cout << "Default pipeline: videoconvert ! autovideosink" << std::endl;