FFmpeg
|
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "config.h"
#include "common.h"
#include "mem.h"
#include "avstring.h"
#include "bprint.h"
Go to the source code of this file.
Macros | |
#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. | |
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. | |
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,...) |
char * | av_asprintf (const char *fmt,...) |
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. | |
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(). | |
int | av_strcasecmp (const char *a, const char *b) |
Locale-independent case-insensitive compare. | |
int | av_strncasecmp (const char *a, const char *b, size_t n) |
Locale-independent case-insensitive compare. | |
const char * | av_basename (const char *path) |
Thread safe basename. | |
const char * | av_dirname (char *path) |
Thread safe dirname. | |
int | av_escape (char **dst, const char *src, const char *special_chars, enum AVEscapeMode mode, int flags) |
Escape string in src, and put the escaped string in an allocated string in *dst, which must be freed with av_free(). | |
int | av_isdigit (int c) |
Locale-independent conversion of ASCII isdigit. | |
int | av_isgraph (int c) |
Locale-independent conversion of ASCII isgraph. | |
int | av_isspace (int c) |
Locale-independent conversion of ASCII isspace. | |
int | av_isxdigit (int c) |
Locale-independent conversion of ASCII isxdigit. | |
#define WHITESPACES " \n\t" |
Definition at line 146 of file avstring.c.
Referenced by av_get_token().
size_t av_strlcatf | ( | char * | dst, |
size_t | size, | ||
const char * | fmt, | ||
... | |||
) |
Definition at line 100 of file avstring.c.
Referenced by 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(), framecrc_write_packet(), get_wb_bitrate_mode(), http_connect(), http_parse_request(), make_digest_auth(), mov_write_udta_sdp(), rtsp_read_packet(), rtsp_read_setup(), rtsp_send_reply(), and value_string().
char* av_asprintf | ( | const char * | fmt, |
... | |||
) |
Definition at line 112 of file avstring.c.
Referenced by ff_ass_subtitle_header(), filter_frame(), frei0r_init(), init(), load_path(), modplug_load_metadata(), opt_old2new(), opt_qscale(), opt_show_format_entry(), opt_timecode(), parse_ffconfig(), process_line(), read_thread(), and stream_component_open().