summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2022-10-21 15:37:12 -0700
committerJames Zern <jzern@google.com>2022-10-25 16:24:07 -0700
commit769387c54a2507bced932ba58ea7020acc0ef9cd (patch)
treeb75fc197d5aeaab7bd3c8471cea9e2707000131a
parenta02978c2505abb91d92db36b54f58101c0676e7c (diff)
downloadlibwebp-769387c54a2507bced932ba58ea7020acc0ef9cd.tar.gz
cpu.c,cosmetics: fix a typo
VP8DecGetCPUInfo -> VP8GetCPUInfo Change-Id: Ic59d23a2964a881b853db62b3617117bf10ec66d
-rw-r--r--src/dsp/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dsp/cpu.c b/src/dsp/cpu.c
index a4ba7f2c..62de73f7 100644
--- a/src/dsp/cpu.c
+++ b/src/dsp/cpu.c
@@ -212,7 +212,7 @@ VP8CPUInfo VP8GetCPUInfo = wasmCPUInfo;
#elif defined(WEBP_HAVE_NEON)
// In most cases this function doesn't check for NEON support (it's assumed by
// the configuration), but enables turning off NEON at runtime, for testing
-// purposes, by setting VP8DecGetCPUInfo = NULL.
+// purposes, by setting VP8GetCPUInfo = NULL.
static int armCPUInfo(CPUFeature feature) {
if (feature != kNEON) return 0;
#if defined(__linux__) && defined(WEBP_HAVE_NEON_RTCD)