MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / opt_height

Function opt_height

fftools/ffplay.c:3646–3655  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3644}
3645
3646static int opt_height(void *optctx, const char *opt, const char *arg)
3647{
3648 double num;
3649 int ret = parse_number(opt, arg, OPT_TYPE_INT64, 1, INT_MAX, &num);
3650 if (ret < 0)
3651 return ret;
3652
3653 screen_height = num;
3654 return 0;
3655}
3656
3657static int opt_format(void *optctx, const char *opt, const char *arg)
3658{

Callers

nothing calls this directly

Calls 1

parse_numberFunction · 0.85

Tested by

no test coverage detected