Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 138a4f7

Browse files
committed
Added gaussian blur, some refactor, fast gaussian, fix MSVC M_PI build
1 parent 173f478 commit 138a4f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bench/YuvBenchmarkBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,6 @@ void SparkyuvFastGuassianRGBA(benchmark::State &state) {
265265
sparkyuv::RGBToRGBA(inSrcData.data(), inWidth * sizeof(uint8_t) * 3, rgbaData.data(), rgbaStride, inWidth, inHeight);
266266

267267
for (auto _ : state) {
268-
sparkyuv::FastGaussianRGBA(reinterpret_cast<uint8_t *>(rgbaData.data()), rgbaStride, inWidth, inHeight, 15);
268+
sparkyuv::FastGaussianBlurRGBA(reinterpret_cast<uint8_t *>(rgbaData.data()), rgbaStride, inWidth, inHeight, 15);
269269
}
270270
}

0 commit comments

Comments
 (0)