Home
last modified time | relevance | path

Searched refs:av_strlcat (Results 1 – 23 of 23) sorted by relevance

/third_party/ffmpeg/libavformat/
Dlibrtmp.c163 av_strlcat(filename, " app=", len); in rtmp_open()
164 av_strlcat(filename, ctx->app, len); in rtmp_open()
167 av_strlcat(filename, " tcUrl=", len); in rtmp_open()
168 av_strlcat(filename, ctx->tcurl, len); in rtmp_open()
171 av_strlcat(filename, " pageUrl=", len); in rtmp_open()
172 av_strlcat(filename, ctx->pageurl, len); in rtmp_open()
175 av_strlcat(filename, " swfUrl=", len); in rtmp_open()
176 av_strlcat(filename, ctx->swfurl, len); in rtmp_open()
179 av_strlcat(filename, " flashVer=", len); in rtmp_open()
180 av_strlcat(filename, ctx->flashver, len); in rtmp_open()
[all …]
Durl.c57 av_strlcat(str, "[", size); in ff_url_join()
58 av_strlcat(str, hostname, size); in ff_url_join()
59 av_strlcat(str, "]", size); in ff_url_join()
61 av_strlcat(str, hostname, size); in ff_url_join()
67 av_strlcat(str, hostname, size); in ff_url_join()
Drtsp.c589 av_strlcat(rtsp_st->control_url, "/", in sdp_parse_line()
591 av_strlcat(rtsp_st->control_url, p, in sdp_parse_line()
1241 av_strlcat(rt->last_reply, p, sizeof(rt->last_reply)); in ff_rtsp_read_reply()
1242 av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply)); in ff_rtsp_read_reply()
1280 av_strlcat(buf, "\r\n", sizeof(buf)); in ff_rtsp_read_reply()
1353 av_strlcat(buf, headers, sizeof(buf)); in rtsp_send_cmd_with_content_async()
1364 av_strlcat(buf, str, sizeof(buf)); in rtsp_send_cmd_with_content_async()
1369 av_strlcat(buf, "\r\n", sizeof(buf)); in rtsp_send_cmd_with_content_async()
1532 av_strlcat(transport, in ff_rtsp_make_setup_request()
1536 av_strlcat(transport, "unicast;", sizeof(transport)); in ff_rtsp_make_setup_request()
[all …]
Drtpproto.c165 av_strlcat(buf, "&", buf_size); in url_add_option()
167 av_strlcat(buf, "?", buf_size); in url_add_option()
169 av_strlcat(buf, buf1, buf_size); in url_add_option()
Drtspdec.c115 av_strlcat(message, extracontent, sizeof(message)); in rtsp_send_reply()
116 av_strlcat(message, "\r\n", sizeof(message)); in rtsp_send_reply()
618 av_strlcat(cmd, in ff_rtsp_setup_input_streams()
880 av_strlcat(rt->last_subscription, ",", in rtsp_read_packet()
Dsdp.c296 av_strlcat(psets, "; ", MAX_PSET_SIZE); in extradata2psets_hevc()
308 av_strlcat(psets, ",", MAX_PSET_SIZE); in extradata2psets_hevc()
Dhttpauth.c275 av_strlcat(ptr, "\r\n", len - (ptr - authstr)); in ff_http_auth_create_response()
Dmmsh.c281 av_strlcat(stream_selection, tmp, mms->stream_num * 19 + 1); in mmsh_open_internal()
Ddashenc.c1303 av_strlcat(audio_codec_str, ",", sizeof(audio_codec_str)); in write_manifest()
1304 av_strlcat(audio_codec_str, os->codec_str, sizeof(audio_codec_str)); in write_manifest()
1331 av_strlcat(codec_str, ",", sizeof(codec_str)); in write_manifest()
1332 av_strlcat(codec_str, audio_codec_str, sizeof(codec_str)); in write_manifest()
Ddashdec.c777 av_strlcat(root_url, "/", size + 2); in resolve_content_path()
802 av_strlcat(tmp_str, text + start, tmp_max_url_size); in resolve_content_path()
Dhlsenc.c729 av_strlcat(hls->key_basename, ".key", len); in do_encrypt()
1907 av_strlcat(name, extension, name_buf_len);
Dmov.c2318 av_strlcat(buf, "palette: ", sizeof(buf)); in mov_rewrite_dvd_sub_extradata()
2327 if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf)) in mov_rewrite_dvd_sub_extradata()
4190 av_strlcat(filename, "../", sizeof(filename)); in mov_open_dref()
4192 av_strlcat(filename, ref->path + l + 1, sizeof(filename)); in mov_open_dref()
Dmatroskadec.c1795 av_strlcat(key, "-", sizeof(key)); in matroska_convert_tag()
1796 av_strlcat(key, lang, sizeof(key)); in matroska_convert_tag()
Dmovenc.c4312 av_strlcat(track_name_buf, type, sizeof(track_name_buf)); in mov_write_isml_manifest()
4320 av_strlcat(track_name_buf, "_cc", sizeof(track_name_buf)); in mov_write_isml_manifest()
4322 av_strlcat(track_name_buf, "_ad", sizeof(track_name_buf)); in mov_write_isml_manifest()
Drtmpproto.c2768 av_strlcat(rt->playpath, fname, max_len); in rtmp_open()
/third_party/ffmpeg/libavcodec/
Dtrace_headers_bsf.c81 av_strlcat(tmp, ", key frame", sizeof(tmp)); in trace_headers()
83 av_strlcat(tmp, ", corrupt", sizeof(tmp)); in trace_headers()
88 av_strlcat(tmp, ", no pts", sizeof(tmp)); in trace_headers()
92 av_strlcat(tmp, ", no dts", sizeof(tmp)); in trace_headers()
Davcodec.c694 av_strlcat(buf, separator, buf_size); in avcodec_string()
746 av_strlcat(buf, new_line ? separator : ", ", buf_size); in avcodec_string()
788 av_strlcat(buf, separator, buf_size); in avcodec_string()
/third_party/ffmpeg/libavutil/
Ddict.c120 av_strlcat(newval, oldval, len); in av_dict_set()
122 av_strlcat(newval, copy_value, len); in av_dict_set()
Davstring.h119 size_t av_strlcat(char *dst, const char *src, size_t size);
Davstring.c93 size_t av_strlcat(char *dst, const char *src, size_t size) in av_strlcat() function
/third_party/ffmpeg/fftools/
Dcmdutils.c195 av_strlcat(buf, " ", sizeof(buf)); in show_help_options()
196 av_strlcat(buf, po->argname, sizeof(buf)); in show_help_options()
Dffmpeg_opt.c3183 av_strlcat(ac_str, stream_str, ac_str_size); in opt_channel_layout()
Dffmpeg.c3256 av_strlcat(encoder_string, ost->enc->name, encoder_string_len); in set_encoder_id()