Small code cleanups

This commit is contained in:
heckflosse
2016-09-09 21:54:51 +02:00
parent d564d17425
commit 3ffe983140
2 changed files with 5 additions and 4 deletions

View File

@@ -326,12 +326,13 @@ public:
return imgsrc;
}
struct {
struct DenoiseInfoStore {
DenoiseInfoStore () : valid(false) {}
float chM;
float max_r[9];
float max_b[9];
float ch_M[9];
bool valid = false;
bool valid;
} denoiseInfoStore;