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

Function usage

tools/ffhash.c:46–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44static int out_b64;
45
46static void usage(void)
47{
48 int i = 0;
49 const char *name;
50
51 printf("usage: ffhash [b64:]algorithm [input]...\n");
52 printf("Supported hash algorithms:");
53 do {
54 name = av_hash_names(i);
55 if (name)
56 printf(" %s", name);
57 i++;
58 } while(name);
59 printf("\n");
60}
61
62static void finish(void)
63{

Callers 1

mainFunction · 0.70

Calls 1

av_hash_namesFunction · 0.85

Tested by

no test coverage detected