Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-12Use the new aes/md5/sha/tree allocation functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-01crypto: Remove a stray double spaceMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-13avio: add support for passing options to protocols.Anton Khirnov
Not used anywhere yet, support for passing options from avio_open() will follow.
2011-11-13avio: Add an AVIOInterruptCB parameter to ffurl_open/ffurl_allocMartin Storsjö
Change all uses of these function to pass the relevant callback on.
2011-11-10crypto: add decoding flag to options.Anton Khirnov
2011-11-10crypto: Don't manually free memory allocated via AVOptionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-06-09crypto: Use av_freep instead of av_freeEtienne Buira
This fixes a potential double free. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-05-18lavf: use designated initializers for AVClasses.Anton Khirnov
2011-04-24crypto: Use av_freep instead of av_freeMartin Storsjö
Using av_freep is generally good practice. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-23Add a protocol handler for AES CBC decryption with PKCS7 paddingMartin Storsjö
This can later be extended to support other AES bit sizes, encryption, other crypto algorithms, reading the key from a URL, etc. In order to use it, the key and initialization vector has to be passed via AVOptions. Since such options can't be passed to protocols from the command line, the protocol is currently only for libavformat internal use. Signed-off-by: Martin Storsjö <martin@martin.st>