lavu/opt: handle UINT options as the POD they are

Fixes operations on array UINT options.
release/7.1
Anton Khirnov 5 months ago
parent 450a3f58ed
commit 4ef149249a
  1. 1
      libavutil/opt.c

@ -98,6 +98,7 @@ static int opt_is_pod(enum AVOptionType type)
case AV_OPT_TYPE_DURATION:
case AV_OPT_TYPE_COLOR:
case AV_OPT_TYPE_BOOL:
case AV_OPT_TYPE_UINT:
return 1;
}
return 0;

Loading…
Cancel
Save