Skip to content

Commit

Permalink
Change default signedness of .pfm to true.
Browse files Browse the repository at this point in the history
  • Loading branch information
aous72 committed Sep 22, 2024
1 parent bcc4d3b commit 11307b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/ojph_compress/ojph_compress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ int main(int argc, char * argv[]) {
ojph::ui32 bd = 32;
if (bit_depth[c] != 0)
bd = bit_depth[c];
bool is = false;
bool is = true;
if (is_signed[c] != -1)
is = is_signed[c] != 0;
siz.set_component(c, ds, bd, is);
Expand Down

0 comments on commit 11307b6

Please sign in to comment.