Mercurial > libavutil.hg
view sha1.h @ 328:cfaf9feae0f9 libavutil
"fast unaligned" bytestream functions
patch by Ramiro Polla ramiro lisha ufsc br
original thread:
date: 03/11/2007 03:06 AM
subject: [Ffmpeg-devel] [PATCH] Machine endian bytestream functions
author | benoit |
---|---|
date | Wed, 25 Apr 2007 08:47:15 +0000 |
parents | c82b7b95e69d |
children | f21d1907d47c |
line wrap: on
line source
#ifndef AV_SHA1_H #define AV_SHA1_H extern const int av_sha1_size; struct AVSHA1; void av_sha1_init(struct AVSHA1* context); void av_sha1_update(struct AVSHA1* context, uint8_t* data, unsigned int len); void av_sha1_final(struct AVSHA1* context, uint8_t digest[20]); #endif