Skip to content

Commit

Permalink
***WHITE*** level fix
Browse files Browse the repository at this point in the history
facepalm. Was setting black level to 15000 haha.
  • Loading branch information
ilia3101 committed Jul 21, 2017
1 parent 18a7ee5 commit 88654c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlv/video_mlv.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ void openMlvClip(mlvObject_t * video, char * mlvPath)
/* If black level is below 15000, set it to 15000, anything lower seems to low */
if ((getMlvWhiteLevel(video) < 15000) || (getMlvWhiteLevel(video) > 16383))
{
getMlvBlackLevel(video) = 15000;
getMlvWhiteLevel(video) = 15000;
}

video->block_num = block_num;
Expand Down

0 comments on commit 88654c1

Please sign in to comment.