From ad584aa548054abef4f67697f3d0fe9a262225ea Mon Sep 17 00:00:00 2001 From: brindosch Date: Wed, 23 Mar 2016 18:54:49 +0100 Subject: [PATCH] Typos Former-commit-id: fc7bc3c0e4bddcb5a6b778c2afabc3940a08782c --- libsrc/grabber/v4l2/V4L2Grabber.cpp | 2 +- libsrc/hyperion/Hyperion.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libsrc/grabber/v4l2/V4L2Grabber.cpp b/libsrc/grabber/v4l2/V4L2Grabber.cpp index f03793a5..4bce3a57 100644 --- a/libsrc/grabber/v4l2/V4L2Grabber.cpp +++ b/libsrc/grabber/v4l2/V4L2Grabber.cpp @@ -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) diff --git a/libsrc/hyperion/Hyperion.cpp b/libsrc/hyperion/Hyperion.cpp index 3c1792f8..1d6925da 100644 --- a/libsrc/hyperion/Hyperion.cpp +++ b/libsrc/hyperion/Hyperion.cpp @@ -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") @@ -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(),