MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / finish

Function finish

tools/ffhash.c:62–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62static void finish(void)
63{
64 char res[2 * AV_HASH_MAX_SIZE + 4];
65
66 printf("%s=", av_hash_get_name(hash));
67 if (out_b64) {
68 av_hash_final_b64(hash, res, sizeof(res));
69 printf("b64:%s", res);
70 } else {
71 av_hash_final_hex(hash, res, sizeof(res));
72 printf("0x%s", res);
73 }
74}
75
76static int check(char *file)
77{

Callers 1

checkFunction · 0.70

Calls 3

av_hash_get_nameFunction · 0.85
av_hash_final_b64Function · 0.85
av_hash_final_hexFunction · 0.85

Tested by

no test coverage detected