Skip to content

Commit

Permalink
by default hide the debug info for b/w levels
Browse files Browse the repository at this point in the history
  • Loading branch information
bouncyball-git committed Jul 5, 2018
1 parent a016b40 commit 3b4711c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/mlv/llrawproc/llrawproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,13 @@ void applyLLRawProcObject(mlvObject_t * video, uint16_t * raw_image_buff, size_t
raw_info.active_area.y2 = raw_info.height;
raw_info.black_level = video->RAWI.raw_info.black_level;
raw_info.white_level = video->RAWI.raw_info.white_level;
//#ifndef STDOUT_SILENT
#ifndef STDOUT_SILENT
printf("\nold_black = %u, old_white = %u\n", raw_info.black_level, raw_info.white_level);
//#endif
#endif
int scale_bits = scale_bits_for_diso(&raw_info, raw_image_buff, video->lossless_bpp);
//#ifndef STDOUT_SILENT
#ifndef STDOUT_SILENT
printf("new_black = %u, new_white = %u\n", raw_info.black_level, raw_info.white_level);
//#endif
#endif
if(scale_bits)
{
#ifndef STDOUT_SILENT
Expand Down

0 comments on commit 3b4711c

Please sign in to comment.