#include <stdarg.h>#include <stdio.h>#include <string.h>#include <ctype.h>#include "avstring.h"#include "mem.h"Go to the source code of this file.
Defines | |
| #define | WHITESPACES " \n\t" |
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. | |
| char * | av_stristr (const char *s1, const char *s2) |
| Locate the first case-independent occurrence in the string haystack of the string needle. | |
| size_t | av_strlcpy (char *dst, const char *src, size_t size) |
| Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst. | |
| size_t | av_strlcat (char *dst, const char *src, size_t size) |
| Append the string src to the string dst, but to a total length of no more than size - 1 bytes, and null-terminate dst. | |
| size_t | av_strlcatf (char *dst, size_t size, const char *fmt,...) |
| Append output to a string, according to a format. | |
| char * | av_d2str (double d) |
| Convert a number to a av_malloced string. | |
| char * | av_get_token (const char **buf, const char *term) |
| Unescape the given string until a non escaped terminating char, and return the token corresponding to the unescaped string. | |
| #define WHITESPACES " \n\t" |
Definition at line 101 of file avstring.c.
| char* av_d2str | ( | double | d | ) |
| char* av_get_token | ( | const char ** | buf, | |
| const char * | term | |||
| ) |
Unescape the given string until a non escaped terminating char, and return the token corresponding to the unescaped string.
The normal \ and ' escaping is supported. Leading and trailing whitespaces are removed, unless they are escaped with '\' or are enclosed between ''.
| buf | the buffer to parse, buf will be updated to point to the terminating char | |
| term | a 0-terminated list of terminating chars |
Definition at line 103 of file avstring.c.
Referenced by dilate_init(), parse_filter(), parse_key_value_pair(), parse_link_name(), and set_params().
| 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.
If it is, *ptr is set to the address of the first character in str after the prefix.
| str | input string | |
| pfx | prefix to test | |
| ptr | updated if the prefix is matched inside str |
Definition at line 40 of file avstring.c.
Referenced by av_stristr(), ff_http_auth_handle_header(), ff_rtsp_parse_line(), has_header(), and rtsp_parse_range_npt().
| char* av_stristr | ( | const char * | haystack, | |
| const char * | needle | |||
| ) |
Locate the first case-independent occurrence in the string haystack of the string needle.
A zero-length string needle is considered to match at the start of haystack.
This function is a case-insensitive version of the standard strstr().
| haystack | string to search in | |
| needle | string to search for |
Definition at line 51 of file avstring.c.
Referenced by has_header(), and http_start_receive_data().
| size_t av_strlcat | ( | char * | dst, | |
| const char * | src, | |||
| size_t | size | |||
| ) |
Append the string src to the string dst, but to a total length of no more than size - 1 bytes, and null-terminate dst.
This function is similar to BSD strlcat(), but differs when size <= strlen(dst).
| dst | destination buffer | |
| src | source string | |
| size | size of destination buffer |
Definition at line 74 of file avstring.c.
Referenced by av_get_channel_layout_string(), avcodec_string(), ff_http_auth_create_response(), ff_rtsp_connect(), ff_rtsp_read_reply(), ff_rtsp_send_cmd_with_content_async(), ff_rtsp_setup_input_streams(), ff_url_join(), make_absolute_url(), make_setup_request(), matroska_convert_tag(), mmsh_open(), mov_open_dref(), rtp_new_connection(), rtsp_read_packet(), show_help_options(), and url_add_option().
| size_t av_strlcatf | ( | char * | dst, | |
| size_t | size, | |||
| const char * | fmt, | |||
| ... | ||||
| ) |
Append output to a string, according to a format.
Never write out of the destination buffer, and always put a terminating 0 within the buffer.
| dst | destination buffer (string to which the output is appended) | |
| size | total size of the destination buffer | |
| fmt | printf-compatible format string, specifying how the following parameters are used |
Definition at line 82 of file avstring.c.
Referenced by avf_sdp_create(), ff_rdt_subscribe_rule(), ff_rtsp_send_cmd_with_content_async(), ff_rtsp_setup_output_streams(), ff_sdp_write_media(), ff_url_join(), http_connect(), make_digest_auth(), make_setup_request(), mov_write_udta_sdp(), rtsp_read_packet(), sdp_write_address(), sdp_write_header(), and sdp_write_media_attributes().
| size_t av_strlcpy | ( | char * | dst, | |
| const char * | src, | |||
| size_t | size | |||
| ) |
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
This function is the same as BSD strlcpy().
| dst | destination buffer | |
| src | source string | |
| size | size of destination buffer |
Definition at line 64 of file avstring.c.
Referenced by amf_parse_object(), asf_read_header(), ass_encode_frame(), av_get_channel_layout_string(), av_open_input_stream(), av_parse_color(), av_strerror(), av_strlcat(), av_url_split(), choose_qop(), compute_real_filename(), compute_status(), concat_open(), ff_amf_get_field_value(), ff_http_set_headers(), ff_metadata_demux_compat(), ff_rtsp_connect(), ff_rtsp_parse_line(), ff_rtsp_read_reply(), ff_rtsp_setup_output_streams(), get_preset_file(), http_connect(), http_open(), http_parse_request(), init(), make_absolute_url(), make_setup_request(), matroska_convert_tag(), mmsh_open(), opt_output_file(), read_header(), resolve_destination(), rm_read_audio_stream_info(), rtmp_open(), rtp_new_connection(), rtsp_cmd_teardown(), rtsp_parse_request(), rtsp_parse_rtp_info(), rtsp_parse_transport(), sap_read_header(), sap_write_header(), show_help_options(), srt_to_ass(), start_children(), stream_open(), url_alloc(), url_get_filename(), and write_header().
| int av_strstart | ( | const char * | str, | |
| const char * | pfx, | |||
| const char ** | ptr | |||
| ) |
Return non-zero if pfx is a prefix of str.
If it is, *ptr is set to the address of the first character in str after the prefix.
| str | input string | |
| pfx | prefix to test | |
| ptr | updated if the prefix is matched inside str |
Definition at line 29 of file avstring.c.
Referenced by amr_parse_sdp_line(), asfrtp_parse_sdp_line(), concat_open(), ff_real_parse_sdp_a_line(), ff_wms_parse_sdp_a_line(), file_open(), http_open_cnx(), latm_parse_sdp_line(), make_absolute_url(), md5_close(), opt_output_file(), parse_h264_sdp_line(), parse_playlist(), parse_sdp_line(), pipe_open(), rdt_parse_sdp_line(), rtsp_probe(), sap_probe(), sdp_probe(), and xiph_parse_sdp_line().
1.5.6