Skip to content

Commit cab42e9

Browse files
committed
Fixed README.
1 parent 5f4515d commit cab42e9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you are interested in donating to the project you can look at all available m
2828
[![Windows MSYS](https://github.com/webcamoid/akvirtualcamera/actions/workflows/windows-msys.yml/badge.svg)](https://github.com/webcamoid/akvirtualcamera/actions/workflows/windows-msys.yml)
2929
[![Windows MSVC](https://github.com/webcamoid/akvirtualcamera/actions/workflows/windows-vs.yml/badge.svg)](https://github.com/webcamoid/akvirtualcamera/actions/workflows/windows-vs.yml)
3030
[![Build status](https://api.cirrus-ci.com/github/webcamoid/akvirtualcamera.svg)](https://cirrus-ci.com/github/webcamoid/akvirtualcamera)
31-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/1cee2645a3604633a506a203fb8c3161)](https://www.codacy.com/gh/webcamoid/akvirtualcamera/dashboard?utm_source=github.com&utm_medium=referral&utm_content=webcamoid/akvirtualcamera&utm_campaign=Badge_Grade)
31+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/1cee2645a3604633a506a203fb8c3161)](https://app.codacy.com/gh/webcamoid/akvirtualcamera/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
3232
[![Project Stats](https://www.openhub.net/p/akvirtualcamera/widgets/project_thin_badge.gif)](https://www.openhub.net/p/akvirtualcamera)
3333

3434
## Reporting Bugs

VCamUtils/src/colorconvert.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,9 @@ int64_t AkVCam::ColorConvertPrivate::nearestPowOf2(int64_t value) const
560560
res++;
561561

562562
if (std::abs((1 << (res + 1)) - value) <= std::abs((1 << res) - value))
563-
return 1 << (res + 1);
563+
return 1LL << (res + 1);
564564

565-
return 1 << res;
565+
return 1LL << res;
566566
}
567567

568568
void AkVCam::ColorConvertPrivate::limitsY(int bits,

0 commit comments

Comments
 (0)