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

Function av_rc4_alloc

libavutil/rc4.c:29–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27#include "rc4.h"
28
29AVRC4 *av_rc4_alloc(void)
30{
31 return av_mallocz(sizeof(struct AVRC4));
32}
33
34int av_rc4_init(AVRC4 *r, const uint8_t *key, int key_bits, int decrypt) {
35 int i, j;

Callers 2

run_lavu_rc4Function · 0.85
ff_asfcrypt_decFunction · 0.85

Calls 1

av_malloczFunction · 0.70

Tested by

no test coverage detected