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

Function av_des_alloc

libavutil/des.c:275–278  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

273}
274
275AVDES *av_des_alloc(void)
276{
277 return av_mallocz(sizeof(struct AVDES));
278}
279
280int av_des_init(AVDES *d, const uint8_t *key, int key_bits, av_unused int decrypt) {
281 if (key_bits != 64 && key_bits != 192)

Callers 5

run_lavu_desFunction · 0.85
rprobeFunction · 0.85
nprobeFunction · 0.85
decrypt_initFunction · 0.85
ff_asfcrypt_decFunction · 0.85

Calls 1

av_malloczFunction · 0.70

Tested by

no test coverage detected