- av_find_info_tag
int av_find_info_tag(char* arg, int arg_size, const(char)* tag1, const(char)* info)
Attempt to find a specific tag in a URL.
- av_get_known_color_name
const(char)* av_get_known_color_name(int color_idx, const(ubyte*)* rgb)
Get the name of a color from the internal table of hard-coded named
colors.
- av_parse_color
int av_parse_color(ubyte* rgba_color, const(char)* color_string, int slen, void* log_ctx)
Put the RGBA values that correspond to color_string in rgba_color.
- av_parse_ratio
int av_parse_ratio(AVRational* q, const(char)* str, int max, int log_offset, void* log_ctx)
Parse str and store the parsed ratio in q.
- av_parse_ratio_quiet
auto av_parse_ratio_quiet(T0 rate, T1 str, T2 max)
Undocumented in source. Be warned that the author may not have intended to support it.
- av_parse_time
int av_parse_time(long* timeval, const(char)* timestr, int duration)
Parse timestr and return in *time a corresponding number of
microseconds.
- av_parse_video_rate
int av_parse_video_rate(AVRational* rate, const(char)* str)
Parse str and store the detected values in *rate.
- av_parse_video_size
int av_parse_video_size(int* width_ptr, int* height_ptr, const(char)* str)
Parse str and put in width_ptr and height_ptr the detected values.
- av_small_strptime
char* av_small_strptime(const(char)* p, const(char)* fmt, tm* dt)
Simplified version of strptime
- av_timegm
time_t av_timegm(tm* tm)
Convert the decomposed UTC time in tm to a time_t value.