DarkWanderer
DarkWanderer

Reputation: 8866

A library for cross-platform (C++/Android) lossless/low noise video compression/decompression

I have a need to compress a video stream to transfer it from a C++ library to a Java platform (Android) by network and decompress it there. The requirements are as follows:

The specifics of the task are that the video stream will be an aircraft MFD type, so there will be large number of pixels which will stay same across multiple frames. This should help much in the compression.

Is there any "easy path" for the above?

Upvotes: 6

Views: 1460

Answers (1)

Öö Tiib
Öö Tiib

Reputation: 10979

Search from open source video codecs. Seems that two are listed lossless there. How useful these are on Android or how portable is hard to tell. I don't think there are any easier paths.

Upvotes: 1

Related Questions