Remove analyze setting -- it enables a bunch of additional, unintended analysis per-compile
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 59197ad..38cd87a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -167,11 +167,6 @@
         # Commonly used /utf-8 flag assumes UTF-8 for both source and console, which is usually not the case.
         # Warnings can be suppressed but there will still be random characters printed to the console.
         /source-charset:utf-8 /execution-charset:us-ascii
-
-        # The default of 16384 is a bit restrictive. If this increased size ever fires due to
-        # avifReformatState growing too large, consider allocating avifReformatState on the heap
-        # where it is used.
-        /analyze:stacksize 65536
     )
 else()
     MESSAGE(FATAL_ERROR "libavif: Unknown compiler, bailing out")