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

Unified Diff: third_party/opus/src/tests/test_opus_common.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/tests/test_opus_api.c ('k') | third_party/opus/src/tests/test_opus_decode.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/tests/test_opus_common.h
diff --git a/third_party/opus/src/tests/test_opus_common.h b/third_party/opus/src/tests/test_opus_common.h
index 66b969001893c988c8cede3a5e29b0f03cd0d62b..235cf1c101689110a00135bbce2c3a2b51fda0b4 100644
--- a/third_party/opus/src/tests/test_opus_common.h
+++ b/third_party/opus/src/tests/test_opus_common.h
@@ -64,6 +64,8 @@ static opus_uint32 iseed;
#ifdef __GNUC__
__attribute__((noreturn))
+#elif defined(_MSC_VER)
+__declspec(noreturn)
#endif
static OPUS_INLINE void _test_failed(const char *file, int line)
{
@@ -76,3 +78,5 @@ static OPUS_INLINE void _test_failed(const char *file, int line)
abort();
}
#define test_failed() _test_failed(__FILE__, __LINE__);
+
+void regression_test(void);
« no previous file with comments | « third_party/opus/src/tests/test_opus_api.c ('k') | third_party/opus/src/tests/test_opus_decode.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698