Go to the source code of this file.
Macros
Functions
int
av_strstart (const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
int
av_stristart (const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case.
Locate the first case-independent occurrence in the string haystack of the string needle.
char *
av_strnstr (const char *haystack, const char *needle, size_t hay_length)
Locate the first occurrence of the string needle in the string haystack where not more than hay_length characters are searched.
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Append the string src to the string dst, but to a total length of no more than size - 1 bytes, and null-terminate dst.
Convert a number to a av_malloced string.
Unescape the given string until a non escaped terminating char, and return the token corresponding to the unescaped string.
char *
av_strtok (char *
s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to
av_strtok().
Locale-independent case-insensitive compare.
Locale-independent case-insensitive compare.
Escape string in src, and put the escaped string in an allocated string in *dst, which must be freed with
av_free().
Locale-independent conversion of ASCII isdigit.
Locale-independent conversion of ASCII isgraph.
Locale-independent conversion of ASCII isspace.
Locale-independent conversion of ASCII isxdigit.
Match instances of a name in a comma-separated list of names.
Read and decode a single UTF-8 code point (character) from the buffer in *buf, and update *buf to point to the next byte to decode.
Check if a name is in a list.
Macro Definition Documentation
#define WHITESPACES " \n\t"
Function Documentation
size_t av_strlcatf
(
char *
dst,
size_t
size,
const char *
fmt,
...
)
Definition at line 101 of file avstring.c.
Referenced by avcodec_string(), avfilter_process_command(), configure_filtergraph(), configure_input_audio_filter(), configure_output_audio_filter(), do_adobe_auth(), ff_rdt_subscribe_rule(), ff_rtsp_setup_output_streams(), ff_url_join(), find_compressor(), framecrc_write_packet(), func_eval_expr_int_format(), get_wb_bitrate_mode(), http_connect(), http_parse_request(), make_digest_auth(), mov_rewrite_dvd_sub_extradata(), mov_write_udta_sdp(), parse_icy(), rtsp_read_packet(), rtsp_read_setup(), rtsp_send_reply(), set_codec_str(), and value_string().
char* av_asprintf
(
const char *
fmt,
...
)
Definition at line 113 of file avstring.c.
Referenced by avi_write_header(), create_filter(), ff_ass_subtitle_header(), ffserver_parse_config_feed(), filter_frame(), frei0r_init(), init(), load_path(), modplug_load_metadata(), opt_old2new(), opt_qscale(), opt_show_format_entry(), opt_timecode(), read_thread(), read_uslt(), try_load(), webm_dash_manifest_read_header(), and write_packet().