Lines Matching defs:md5
23 #include "libavutil/md5.h"
32 struct AVMD5 *md5;
42 c->md5 = av_md5_alloc();
43 if (!c->md5)
45 av_md5_init(c->md5);
53 av_md5_update(c->md5, buf, size);
61 uint8_t md5[16], buf[2 * sizeof(md5) + 1];
65 av_md5_final(c->md5, md5);
66 ff_data_to_hex(buf, md5, sizeof(md5), 1);
67 buf[2 * sizeof(md5)] = '\n';
69 av_strstart(filename, "md5:", &filename);
84 av_freep(&c->md5);
91 .name = "md5",