diff --git a/deploy/hyperion.tar.gz.REMOVED.git-id b/deploy/hyperion.tar.gz.REMOVED.git-id index 91855036..a3a391be 100644 --- a/deploy/hyperion.tar.gz.REMOVED.git-id +++ b/deploy/hyperion.tar.gz.REMOVED.git-id @@ -1 +1 @@ -62843d7b04fbbe0a2ae994531100d2f3f3d73b11 \ No newline at end of file +d61b685eca164580cb39eb5bc3cf65b89afad410 \ No newline at end of file diff --git a/libsrc/grabber/v4l2/V4L2Grabber.cpp b/libsrc/grabber/v4l2/V4L2Grabber.cpp index b3517dac..2df80524 100644 --- a/libsrc/grabber/v4l2/V4L2Grabber.cpp +++ b/libsrc/grabber/v4l2/V4L2Grabber.cpp @@ -737,9 +737,9 @@ void V4L2Grabber::process_image(const uint8_t * data) case PIXELFORMAT_RGB32: { int index = (_width * ySource + xSource) * 4; - rgb.red = data[index+1]; - rgb.green = data[index+2]; - rgb.blue = data[index+3]; + rgb.red = data[index ]; + rgb.green = data[index+1]; + rgb.blue = data[index+2]; } break; default: