Home
last modified time | relevance | path

Searched refs:height_part (Results 1 – 1 of 1) sorted by relevance

/dports/multimedia/mpv/mpv-0.34.1/video/out/
H A Ddrm_common.c343 char *height_part, *refresh_part; in parse_mode_spec() local
344 const unsigned int width = strtoul(spec, &height_part, 10); in parse_mode_spec()
345 if (spec == height_part || height_part[0] == '\0' || height_part[0] != 'x') in parse_mode_spec()
348 height_part += 1; in parse_mode_spec()
349 if (!mp_isdigit(height_part[0])) in parse_mode_spec()
351 const unsigned int height = strtoul(height_part, &refresh_part, 10); in parse_mode_spec()
352 if (height_part == refresh_part) in parse_mode_spec()