Skip to content

Commit

Permalink
add broader range for interpretation bit ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
anuejn committed Mar 9, 2023
1 parent 34661b6 commit 543846f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pipeline_processing/parametrizable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,11 +399,10 @@ impl ParametersDescriptor {
.with("fps", WithDefault(PositiveReal(), FloatRangeValue(24.0)))

// buffer interpretation
.with("uint-bits", Optional(IntRange(8, 16)))
.with("uint-bits", Optional(IntRange(1, 64)))
.with("fp16", Flag())
.with("fp32", Flag())


// color interpretation
.with("bayer", WithDefault(StringParameter, StringValue("RGBG".to_string())))
.with("rgb", Flag())
Expand Down

0 comments on commit 543846f

Please sign in to comment.