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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-11Merge commit 'd12b5b2f135aade4099f4b26b0fe678656158c13'Derek Buitenhuis
* commit 'd12b5b2f135aade4099f4b26b0fe678656158c13': build: Split test programs off into separate files Some conversions done by: James Almer <jamrial@gmail.com> Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-03-09Add tests for functions in hash.cNagaChaitanya Vellanki
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2014-08-31lavu/hash.c: Add missing "static const".Reimar Döffinger
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2014-04-29lavu/hash: add hash_final helpers.Nicolas George
The helpers use local memory to compute the final hash, making AV_HASH_MAX_SIZE safe to use.
2013-06-16lavu/hash: Add support for RIPEMDJames Almer
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-16lavu/hash: Add support for SHA-2 512James Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2013-05-16lavu/hash: Fix CRC32 calculationJames Almer
Initialize it with UINT32_MAX and xor the result with UINT32_MAX as well. Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-16lavu/hash: Fix adler32 calculationJames Almer
Adler must be initialized with a non zero value. Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-14lavu/hash: Fix name of SHA224James Almer
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-13Add a generic hash API.Reimar Döffinger
Also use this API in framemd5. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>