Lines Matching refs:encryption
50 int encryption;
75 { "secret", "set encryption secret",OFFSET(secret), AV_OPT_TYPE_STRING,{.str=NULL}, 0, 0, .flags = D|E },
76 { "encryption","set encryption type",OFFSET(encryption), AV_OPT_TYPE_INT ,{.i64=0}, 0, INT_MAX, .flags = D|E },
166 if (((s->encryption == 128 || s->encryption == 256) && !s->secret) ||
168 av_log(h, AV_LOG_ERROR, "secret is mandatory if encryption is enabled\n");
176 if (s->secret && (s->encryption == 128 || s->encryption == 256))
177 peer_config->key_size = s->encryption;