Lines Matching refs:str
32 * Parse str and store the parsed ratio in q.
41 * @param[in] str the string to parse: it has to be a string in the format
49 int av_parse_ratio(AVRational *q, const char *str, int max,
52 #define av_parse_ratio_quiet(rate, str, max) \
53 av_parse_ratio(rate, str, max, AV_LOG_MAX_OFFSET, NULL)
56 * Parse str and put in width_ptr and height_ptr the detected values.
62 * @param[in] str the string to parse: it has to be a string in the format
66 int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str);
69 * Parse str and store the detected values in *rate.
73 * @param[in] str the string to parse: it has to be a string in the format
77 int av_parse_video_rate(AVRational *rate, const char *str);