Searched refs:AVMD5 (Results 1 – 9 of 9) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | md5.h | 46 struct AVMD5; 51 struct AVMD5 *av_md5_alloc(void); 58 void av_md5_init(struct AVMD5 *ctx); 68 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, int len); 70 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, size_t len); 79 void av_md5_final(struct AVMD5 *ctx, uint8_t *dst);
|
D | md5.c | 40 typedef struct AVMD5 { struct 44 } AVMD5; argument 46 const int av_md5_size = sizeof(AVMD5); 48 struct AVMD5 *av_md5_alloc(void) in av_md5_alloc() 50 return av_mallocz(sizeof(struct AVMD5)); in av_md5_alloc() 143 void av_md5_init(AVMD5 *ctx) in av_md5_init() 154 void av_md5_update(AVMD5 *ctx, const uint8_t *src, int len) in av_md5_update() 156 void av_md5_update(AVMD5 *ctx, const uint8_t *src, size_t len) in av_md5_update() 192 void av_md5_final(AVMD5 *ctx, uint8_t *dst) in av_md5_final() 213 AVMD5 ctx; in av_md5_sum()
|
/third_party/ffmpeg/doc/examples/ |
D | filter_audio.c | 215 static int process_output(struct AVMD5 *md5, AVFrame *frame) in process_output() 272 struct AVMD5 *md5; in main()
|
/third_party/ffmpeg/libavformat/ |
D | md5proto.c | 31 struct AVMD5 *md5;
|
D | httpauth.c | 122 static void update_md5_strings(struct AVMD5 *md5ctx, ...) in update_md5_strings() 148 struct AVMD5 *md5ctx; in make_digest_auth()
|
D | rtmpproto.c | 1608 struct AVMD5 *md5 = av_md5_alloc(); in do_adobe_auth() 1651 struct AVMD5 *md5 = av_md5_alloc(); in do_llnw_auth()
|
/third_party/ffmpeg/libavcodec/ |
D | hevcdec.h | 496 struct AVMD5 *md5_ctx;
|
D | flacenc.c | 121 struct AVMD5 *md5ctx;
|
/third_party/ffmpeg/libavformat/tests/ |
D | movenc.c | 56 struct AVMD5* md5;
|