[FFmpeg-devel] [PATCH] avformat/flvdec: added support for KUX container

Swaraj Hota swarajhota353 at gmail.com
Fri Mar 22 20:29:17 EET 2019


I have the meta chunk loaded into a buffer.
I searched a lot but I couldn't find a way to decompress
a password protected zip buffer.

I saw zlib is used in the code base, so went through it.
Found a function "decompress()" but it didn't take a
password as argument. I found another function
under minizip/unzip.h called unzOpenCurrentFilePassword()
which does take password but it takes a file as an argument
and not a buffer.

I am not sure what to do. I thought of using mmap and pass
it to unzOpenCurrentFilePassword() but I guess its not
portable and might not work with windows. Or will it?
Please suggest something I can do here.


More information about the ffmpeg-devel mailing list