diff options
author | Ivo van Poorten <ivop@euronet.nl> | 2006-07-02 19:01:09 +0000 |
---|---|---|
committer | Ivo van Poorten <ivop@euronet.nl> | 2006-07-02 19:01:09 +0000 |
commit | 93d6aeb0a452f7557fd85bc0af977e3f7eba84dd (patch) | |
tree | 9629fa5d7c34bc52e2e90fca871f4bdfb9cdd831 /libavutil | |
parent | f28660eb3f3faa14672c7e89c2bf861ece581965 (diff) | |
download | ffmpeg-93d6aeb0a452f7557fd85bc0af977e3f7eba84dd.tar.gz |
add missing declaration for av_md5_sum
Originally committed as revision 5583 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/md5.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/md5.h b/libavutil/md5.h index 31d2808dd7..72a92bd1d5 100644 --- a/libavutil/md5.h +++ b/libavutil/md5.h @@ -8,6 +8,7 @@ struct AVMD5; void av_md5_init(struct AVMD5 *ctx); void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len); void av_md5_final(struct AVMD5 *ctx, uint8_t *dst); +void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len); #endif /* MD5_H */ |