Home
last modified time | relevance | path

Searched refs:streamtype (Results 1 – 25 of 71) sorted by relevance

123

/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-staticpolicy/
Dstatic-policy.h1316 .streamtype = "captive_portal_detect",
1332 .streamtype = "mqtt_test1",
1350 .streamtype = "mqtt_test",
1367 .streamtype = "minpost",
1383 .streamtype = "mintest-fail",
1399 .streamtype = "h2longpolltest",
1415 .streamtype = "mintest",
1433 .streamtype = "avs_audio",
1455 .streamtype = "avs_metadata",
1478 .streamtype = "avs_event",
[all …]
/third_party/libwebsockets/lib/secure-streams/
Dsecure-streams.c869 if (h->policy->streamtype) in _lws_ss_client_connect()
871 h->policy->streamtype); in _lws_ss_client_connect()
969 lws_fi_inherit_copy(&temp_fic, &context->fic, "ss", ssi->streamtype); in lws_ss_create()
974 pol = lws_ss_policy_lookup(context, ssi->streamtype); in lws_ss_create()
978 pol = lws_ss_policy_lookup(context, ssi->streamtype); in lws_ss_create()
982 ssi->streamtype); in lws_ss_create()
1004 __func__, ssi->streamtype); in lws_ss_create()
1030 (ssi->streamtype ? strlen(ssi->streamtype): 0) + 1; in lws_ss_create()
1048 ssi->streamtype ? ssi->streamtype : "nostreamtype", in lws_ss_create()
1054 ssi->streamtype ? ssi->streamtype : "nostreamtype"); in lws_ss_create()
[all …]
DREADME.md225 by using the `"use_auth": "name"` member in the streamtype definition, where name
226 is, eg, "sigv4" in the example above. If "use_auth" is not in the streamtype
237 ### `auth[].streamtype`
239 This is the auth streamtype to be used to refresh the authentication token
261 corresponding streamtype metadata value at runtime. Eg, if the
262 streamtype lists a metadata name "region", it's then possible to
310 By default redirects are not followed, if you wish a streamtype to observe them, eg,
339 Optional timeout associated with streams of this streamtype.
347 If set to true, and lws was built with `LWS_WITH_CONMON`, causes this streamtype
374 If missing and tls is enabled on the streamtype, then validation is
[all …]
Dsecure-streams-client.c132 lws_metrics_tag_add(&h->cal_txn.mtags_owner, "ss", h->ssi.streamtype); in lws_sspc_sul_retry_cb()
252 lwsl_sspc_info(h, "CONNECTED (%s)", h->ssi.streamtype); in callback_sspc_client()
404 n = (int)strlen(h->ssi.streamtype) + 1 + 4 + 4; in callback_sspc_client()
413 lws_strncpy((char *)&s[12], h->ssi.streamtype, sizeof(s) - 12); in callback_sspc_client()
634 strlen(ssi->streamtype) + 1); in lws_sspc_create()
647 lws_fi_inherit_copy(&h->fic, &context->fic, "ss", ssi->streamtype); in lws_sspc_create()
661 ssi->streamtype); in lws_sspc_create()
667 memcpy(p, ssi->streamtype, strlen(ssi->streamtype) + 1); in lws_sspc_create()
668 h->ssi.streamtype = (const char *)p; in lws_sspc_create()
677 if (!strcmp(ssi->streamtype, LWS_SMD_STREAMTYPENAME)) in lws_sspc_create()
[all …]
Dpolicy-common.c37 lws_ss_policy_lookup(const struct lws_context *context, const char *streamtype) in lws_ss_policy_lookup() argument
41 if (!streamtype) in lws_ss_policy_lookup()
45 if (!strcmp(streamtype, LWS_SMD_STREAMTYPENAME)) in lws_ss_policy_lookup()
50 if (!strcmp(p->streamtype, streamtype)) in lws_ss_policy_lookup()
Dsecure-streams-serialize.c1202 if (par->ctr == sizeof(par->streamtype) - 1) in lws_ss_deserialize_parse()
1219 par->streamtype[par->ctr++] = (char)*cp++; in lws_ss_deserialize_parse()
1224 par->streamtype[par->ctr] = '\0'; in lws_ss_deserialize_parse()
1226 __func__, par->streamtype, in lws_ss_deserialize_parse()
1229 ssi->streamtype = par->streamtype; in lws_ss_deserialize_parse()
1251 par->streamtype); in lws_ss_deserialize_parse()
1256 __func__, par->streamtype); in lws_ss_deserialize_parse()
1456 ssi->streamtype); in lws_ss_deserialize_parse()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-perf/
Dminimal-secure-streams.c42 static const char *streamtype = "mintest"; variable
378 ssi.streamtype = test_respmap ? "respmap" : streamtype; in app_system_state_nf()
453 streamtype = "mintest404"; in main()
456 streamtype = "mintest404red"; in main()
459 streamtype = "mintest404redref"; in main()
/third_party/gstreamer/gstplugins_base/ext/ogg/
Dgstogmparse.c81 gchar streamtype[8]; member
423 switch (ogm->hdr.streamtype[0]) { in gst_ogm_parse_sink_convert()
445 switch (ogm->hdr.streamtype[0]) { in gst_ogm_parse_sink_convert()
538 memcpy (ogm->hdr.streamtype, &data[0], 8); in gst_ogm_parse_stream_header()
548 switch (ogm->hdr.streamtype[0]) { in gst_ogm_parse_stream_header()
573 ogm->hdr.streamtype, codec_id, ogm->hdr.s.audio.channels, in gst_ogm_parse_stream_header()
603 ogm->hdr.streamtype, GST_FOURCC_ARGS (fourcc), in gst_ogm_parse_stream_header()
623 ogm->hdr.streamtype, ogm->hdr.samples_per_unit, ogm->hdr.time_unit); in gst_ogm_parse_stream_header()
723 if (ogm->hdr.streamtype[0] == 't') { in gst_ogm_parse_comment_packet()
794 switch (ogm->hdr.streamtype[0]) { in gst_ogm_parse_data_packet()
[all …]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-policy2c/
Dminimal-secure-streams.c174 purify_csymbol(pol->streamtype, buf, in main()
376 purify_csymbol(pol->streamtype, buf, sizeof(buf))); in main()
431 printf("\t.streamtype = \"%s\",\n", auth->streamtype); in main()
462 purify_csymbol(pol->streamtype, buf, sizeof(buf))); in main()
469 printf("\t.streamtype = \"%s\",\n", pol->streamtype); in main()
495 purify_csymbol(pol->streamtype, buf, sizeof(buf)), in main()
662 purify_csymbol(lastpol->streamtype, buf, sizeof(buf))); in main()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/
Dstatic-policy.h212 .streamtype = "captive_portal_detect",
229 .streamtype = "test_stream",
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-seq/
Dminimal-secure-streams.c256 ssi.streamtype = "mintest-fail"; in min_sec_str_sequencer_cb()
260 ssi.streamtype = "minpost"; in min_sec_str_sequencer_cb()
263 ssi.streamtype = "mintest"; in min_sec_str_sequencer_cb()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-secure-streams/
Dmain.c274 .streamtype = "httpbin_get"
282 .streamtype = "httpbin_get404"
290 .streamtype = "httpbin_post"
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-sigv4/
Dstatic_policy.h465 .streamtype = "(null)",
471 .streamtype = "s3PutObj",
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtpmp4gpay.c158 rtpmp4gpay->streamtype = NULL; in gst_rtp_mp4g_pay_cleanup()
255 rtpmp4gpay->streamtype = "5"; in gst_rtp_mp4g_pay_parse_audio_config()
330 rtpmp4gpay->streamtype = "4"; in gst_rtp_mp4g_pay_parse_video_config()
360 "streamtype", G_TYPE_STRING, rtpmp4gpay->streamtype, \ in gst_rtp_mp4g_pay_new_caps()
Dgstrtpmp4apay.h50 const gchar *streamtype; member
Dgstrtpmp4gpay.h55 const gchar *streamtype; member
Dgstrtpmp4gdepay.h48 gint streamtype; member
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-testsfail/
Dminimal-secure-streams-testsfail.c432 const char *streamtype; member
743 ssi.streamtype = ts->streamtype; in tests_start_next()
/third_party/gstreamer/gstplugins_bad/ext/smoothstreaming/
Dgstmssdemux.c360 GstMssStreamType streamtype; in _create_pad() local
371 streamtype = gst_mss_stream_get_type (manifeststream); in _create_pad()
373 gst_mss_stream_type_name (streamtype)); in _create_pad()
376 if (streamtype == MSS_STREAM_TYPE_VIDEO) { in _create_pad()
379 } else if (streamtype == MSS_STREAM_TYPE_AUDIO) { in _create_pad()
/third_party/libwebsockets/include/libwebsockets/
Dlws-secure-streams-policy.h232 const char *streamtype; member
251 const char *streamtype; /**< stream type lhs to match on */ member
/third_party/libwebsockets/lib/secure-streams/protocols/
Dss-raw.c49 lws_ss_tag(h), h->policy->streamtype, in ? (char *)in : "(null)"); in secstream_raw()
74 h->policy ? h->policy->streamtype : "no policy"); in secstream_raw()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-hugeurl/
Dminimal-secure-streams.c318 .streamtype = "httpbin_anything_h2"
339 ssi.streamtype = "httpbin_anything_h1"; in app_system_state_nf()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-server/
Dss-client.c81 .streamtype = "mintest",
/third_party/libwebsockets/lib/secure-streams/system/captive-portal-detect/
Dcaptive-portal-detect.c80 .streamtype = "captive_portal_detect",
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-smd/
Dmulti.c232 .streamtype = LWS_SMD_STREAMTYPENAME,
280 .streamtype = LWS_SMD_STREAMTYPENAME,

123