Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: third_party/opus/src/include/opus_types.h

Issue 2962373002: [Opus] Update to v1.2.1 (Closed)
Patch Set: Pre-increment instead of post-increment Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/opus/src/include/opus_multistream.h ('k') | third_party/opus/src/releases.sha2 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/include/opus_types.h
diff --git a/third_party/opus/src/include/opus_types.h b/third_party/opus/src/include/opus_types.h
index b28e03aea202d97fe71cf58afc90dac2084144a9..71808266655a1502105ea4c68f15e8ff0be932e4 100644
--- a/third_party/opus/src/include/opus_types.h
+++ b/third_party/opus/src/include/opus_types.h
@@ -34,7 +34,7 @@
#define OPUS_TYPES_H
/* Use the real stdint.h if it's there (taken from Paul Hsieh's pstdint.h) */
-#if (defined(__STDC__) && __STDC__ && __STDC_VERSION__ >= 199901L) || (defined(__GNUC__) && (defined(_STDINT_H) || defined(_STDINT_H_)) || defined (HAVE_STDINT_H))
+#if (defined(__STDC__) && __STDC__ && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || (defined(__GNUC__) && (defined(_STDINT_H) || defined(_STDINT_H_)) || defined (HAVE_STDINT_H))
#include <stdint.h>
typedef int16_t opus_int16;
« no previous file with comments | « third_party/opus/src/include/opus_multistream.h ('k') | third_party/opus/src/releases.sha2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698