Upgrade libjpeg to 2.0.2

Test: build
Change-Id: If51cbf56f0b48fde26fac4f36d4f0219068659ac
diff --git a/jconfigint.h b/jconfigint.h
index bf988da..5b28a1f 100644
--- a/jconfigint.h
+++ b/jconfigint.h
@@ -4,7 +4,10 @@
 #define __JCONFIGINT_H__
 
 /* libjpeg-turbo build number */
-#define BUILD ""
+#define BUILD  ""
+
+/* Compiler's inline keyword */
+#undef inline
 
 /* How to obtain function inlining. */
 #ifndef INLINE
@@ -22,19 +25,34 @@
 #endif
 
 /* Define to the full name of this package. */
-#define PACKAGE_NAME "libjpeg-turbo"
+#define PACKAGE_NAME  "libjpeg-turbo"
 
 /* Version number of package */
-#define VERSION "2.0.0"
+#define VERSION  "2.0.2"
 
+/* The size of `size_t', as computed by sizeof. */
 /* The size of `size_t', as reported by the compiler through the
  * builtin macro __SIZEOF_SIZE_T__. If the compiler does not
  * report __SIZEOF_SIZE_T__ add a custom rule for the compiler
  * here. */
 #ifdef __SIZEOF_SIZE_T__
-#define SIZEOF_SIZE_T __SIZEOF_SIZE_T__
+  #define SIZEOF_SIZE_T __SIZEOF_SIZE_T__
 #else
-#error cannot determine the size of size_t
+  #error cannot determine the size of size_t
 #endif
 
-#endif // __JCONFIGINT_H__
+/* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
+#define HAVE_BUILTIN_CTZL
+
+/* Define to 1 if you have the <intrin.h> header file. */
+/* #undef HAVE_INTRIN_H */
+
+#if defined(_MSC_VER) && defined(HAVE_INTRIN_H)
+#if (SIZEOF_SIZE_T == 8)
+#define HAVE_BITSCANFORWARD64
+#elif (SIZEOF_SIZE_T == 4)
+#define HAVE_BITSCANFORWARD
+#endif
+#endif
+
+#endif  // __JCONFIGINT_H__