annotate sha1.h @ 346:e9937dcd0afd
libavutil
Clarify comments about PIX_FMT_MONOWHITE/MONOBLACK
Thread: PIX_FMT_MONOWHITE
author |
mbardiaux |
date |
Wed, 20 Jun 2007 08:18:04 +0000 |
parents |
f21d1907d47c |
children |
47335869d5f7 |
rev |
line source |
288
|
1 #ifndef AV_SHA1_H
|
|
2 #define AV_SHA1_H
|
|
3
|
343
|
4 #include <stdint.h>
|
|
5
|
288
|
6 extern const int av_sha1_size;
|
|
7
|
|
8 struct AVSHA1;
|
|
9
|
|
10 void av_sha1_init(struct AVSHA1* context);
|
|
11 void av_sha1_update(struct AVSHA1* context, uint8_t* data, unsigned int len);
|
|
12 void av_sha1_final(struct AVSHA1* context, uint8_t digest[20]);
|
|
13 #endif
|