Searched refs:AVHashContext (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | hash.h | 117 struct AVHashContext; 127 int av_hash_alloc(struct AVHashContext **ctx, const char *name); 142 const char *av_hash_get_name(const struct AVHashContext *ctx); 169 int av_hash_get_size(const struct AVHashContext *ctx); 176 void av_hash_init(struct AVHashContext *ctx); 186 void av_hash_update(struct AVHashContext *ctx, const uint8_t *src, int len); 188 void av_hash_update(struct AVHashContext *ctx, const uint8_t *src, size_t len); 205 void av_hash_final(struct AVHashContext *ctx, uint8_t *dst); 220 void av_hash_final_bin(struct AVHashContext *ctx, uint8_t *dst, int size); 238 void av_hash_final_hex(struct AVHashContext *ctx, uint8_t *dst, int size); [all …]
|
D | hash.c | 58 typedef struct AVHashContext { struct 63 } AVHashContext; argument 92 const char *av_hash_get_name(const AVHashContext *ctx) in av_hash_get_name() 97 int av_hash_get_size(const AVHashContext *ctx) in av_hash_get_size() 102 int av_hash_alloc(AVHashContext **ctx, const char *name) in av_hash_alloc() 104 AVHashContext *res; in av_hash_alloc() 139 void av_hash_init(AVHashContext *ctx) in av_hash_init() 161 void av_hash_update(AVHashContext *ctx, const uint8_t *src, int len) in av_hash_update() 163 void av_hash_update(AVHashContext *ctx, const uint8_t *src, size_t len) in av_hash_update() 185 void av_hash_final(AVHashContext *ctx, uint8_t *dst) in av_hash_final() [all …]
|
/third_party/ffmpeg/libavutil/tests/ |
D | hash.c | 31 struct AVHashContext *ctx = NULL; in main()
|
/third_party/ffmpeg/tools/ |
D | ffhash.c | 43 static struct AVHashContext *hash;
|
/third_party/ffmpeg/tests/api/ |
D | api-h264-slice-test.c | 63 struct AVHashContext *hash; in decode()
|
/third_party/ffmpeg/libavformat/ |
D | hashenc.c | 32 struct AVHashContext **hashes;
|
/third_party/ffmpeg/fftools/ |
D | ffprobe.c | 262 static struct AVHashContext *hash;
|