I need to compress the video stream in order to transfer it from the C ++ library to the Java platform (Android) over the network and unpack it there. The requirements are as follows:
- The library should be available for both the Android platform and C ++ (or two separate libraries using a common format)
- Compression should be lossless or lossy with minimal artifacts.
- The library (-ies) must be free / openource
The specificity of the task is that the video stream will be a type of MFD aircraft, so there will be a large number of pixels that will remain the same for several frames. This should greatly help in compression.
Is there a “simple way” for the above?
source share