Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
brindosch committed Mar 23, 2016
1 parent 5bdbda1 commit fc7bc3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libsrc/grabber/v4l2/V4L2Grabber.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ void V4L2Grabber::init_device(VideoStandard videoStandard, int input)
_height = fmt.fmt.pix.height;

// print the eventually used width and height
std::cout << "V4L2 width=" << _width << " height=" << _height << std::endl;
std::cout << "V4L2GRABBER INFO: width=" << _width << " height=" << _height << std::endl;

// check pixel format and frame size
switch (fmt.fmt.pix.pixelformat)
Expand Down
4 changes: 2 additions & 2 deletions libsrc/hyperion/Hyperion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ LedDevice * Hyperion::createColorSmoothing(const Json::Value & smoothingConfig,

if (type == "none")
{
std::cout << "HYPERION INDO: Not creating any smoothing" << std::endl;
std::cout << "HYPERION INFO: Not creating any smoothing" << std::endl;
return ledDevice;
}
else if (type == "linear")
Expand All @@ -439,7 +439,7 @@ LedDevice * Hyperion::createColorSmoothing(const Json::Value & smoothingConfig,
else
{
const unsigned updateDelay = smoothingConfig.get("updateDelay", Json::Value(0u)).asUInt();
std::cout << "HYPERION INFO: Creating linear smoothing" << std::endl;
std::cout << "INFO: Creating linear smoothing" << std::endl;
return new LinearColorSmoothing(
ledDevice,
smoothingConfig["updateFrequency"].asDouble(),
Expand Down

0 comments on commit fc7bc3c

Please sign in to comment.