Home
last modified time | relevance | path

Searched refs:tcr (Results 1 - 11 of 11) sorted by relevance

/third_party/libwebsockets/lib/tls/openssl/
H A Dopenssl-client.c727 struct lws_tls_client_reuse *tcr; local
834 tcr = lws_container_of(p, struct lws_tls_client_reuse, cc_list);
836 if (!memcmp(hash, tcr->hash, len)) {
840 tcr->refcount++;
841 vh->tls.ssl_client_ctx = tcr->ssl_client_ctx;
842 vh->tls.tcr = tcr;
845 __func__, vh->name, tcr->index,
846 tcr->refcount);
879 tcr
[all...]
H A Dopenssl-ssl.c143 if (vhost->tls.tcr && --vhost->tls.tcr->refcount) in lws_ssl_destroy_client_ctx()
151 if (vhost->tls.tcr) { in lws_ssl_destroy_client_ctx()
152 lws_dll2_remove(&vhost->tls.tcr->cc_list); in lws_ssl_destroy_client_ctx()
153 lws_free(vhost->tls.tcr); in lws_ssl_destroy_client_ctx()
154 vhost->tls.tcr = NULL; in lws_ssl_destroy_client_ctx()
/third_party/ffmpeg/libavformat/
H A Ddvenc.c393 AVDictionaryEntry *tcr = av_dict_get(s->metadata, "timecode", NULL, 0); in dv_write_header() local
404 if (!tcr) { // no global timecode, look into the streams in dv_write_header()
407 tcr = av_dict_get(s->streams[i]->metadata, "timecode", NULL, 0); in dv_write_header()
408 if (tcr) in dv_write_header()
412 if (tcr && av_timecode_init_from_string(&dvc->tc, rate, tcr->value, s) >= 0) in dv_write_header()
H A Dgxfenc.c691 AVDictionaryEntry *tcr = av_dict_get(s->metadata, "timecode", NULL, 0); in gxf_write_header() local
755 if (!tcr) in gxf_write_header()
756 tcr = av_dict_get(st->metadata, "timecode", NULL, 0); in gxf_write_header()
805 if (tcr && vsc) in gxf_write_header()
806 gxf_init_timecode(s, &gxf->tc, tcr->value, vsc->fields); in gxf_write_header()
H A Dsegment.c354 AVDictionaryEntry *tcr; in segment_end() local
415 tcr = av_dict_get(s->metadata, "timecode", NULL, 0); in segment_end()
416 if (tcr) { in segment_end()
421 err = av_timecode_init_from_string(&tc, rate, tcr->value, s); in segment_end()
H A Dmxfenc.c2478 AVDictionaryEntry *tcr = av_dict_get(s->metadata, "timecode", NULL, 0); in mxf_init_timecode() local
2490 if (!tcr) in mxf_init_timecode()
2491 tcr = av_dict_get(st->metadata, "timecode", NULL, 0); in mxf_init_timecode()
2493 if (tcr) in mxf_init_timecode()
2494 return av_timecode_init_from_string(&mxf->tc, av_inv_q(tbc), tcr->value, s); in mxf_init_timecode()
H A Dmov.c8580 AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
8581 if (tcr) {
8582 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
8743 AVDictionaryEntry *tcr;
8752 tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
8753 if (tcr)
8754 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
/third_party/ffmpeg/libavfilter/
H A Dvf_bilateral.c186 type tcr = *texture_x++; \
187 type dr = abs(tcr - tpr); \
192 tpr = tcr; \
205 type tcr = *--texture_x; \
206 type dr = abs(tcr - tpr); \
212 tpr = tcr; \
/third_party/libwebsockets/lib/tls/
H A Dprivate-network.h54 struct lws_tls_client_reuse *tcr; member
/third_party/ffmpeg/libavdevice/
H A Ddecklink_dec.cpp918 AVTimecode tcr; in VideoInputFrameArrived() local
919 if (get_frame_timecode(avctx, ctx, &tcr, videoFrame) >= 0) { in VideoInputFrameArrived()
921 const char *tc = av_timecode_make_string(&tcr, tcstr, 0); in VideoInputFrameArrived()
927 uint32_t tc_data = av_timecode_get_smpte_from_framenum(&tcr, 0); in VideoInputFrameArrived()
/third_party/ffmpeg/fftools/
H A Dffmpeg_opt.c3387 char *tcr = av_asprintf("timecode=%s", arg); in opt_timecode() local
3388 if (!tcr) in opt_timecode()
3390 ret = parse_option(o, "metadata:g", tcr, options); in opt_timecode()
3393 av_free(tcr); in opt_timecode()

Completed in 29 milliseconds