mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 11:24:05 +00:00
Changed "partial-coding" variables to uint32_t
This commit is contained in:
parent
d905d1e7c8
commit
b8488ab48d
|
@ -1270,10 +1270,10 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
|
|||
cfg->ml_pu_depth_intra = (bool)atobool(value);
|
||||
}
|
||||
else if OPT("partial-coding") {
|
||||
uint8_t firstCTU_x;
|
||||
uint8_t firstCTU_y;
|
||||
uint16_t fullWidth;
|
||||
uint16_t fullHeight;
|
||||
uint32_t firstCTU_x;
|
||||
uint32_t firstCTU_y;
|
||||
uint32_t fullWidth;
|
||||
uint32_t fullHeight;
|
||||
if (4 != sscanf(value, "%u!%u!%u!%u", &firstCTU_x,
|
||||
&firstCTU_y, &fullWidth, &fullHeight)) {
|
||||
fprintf(stderr, "invalid partial-coding options. Expected \"%%u!%%u!%%u!%%u\", but got \"%s\"\n", value);
|
||||
|
|
Loading…
Reference in a new issue