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

Unified Diff: media/test/pipeline_integration_test_base.h

Issue 1260193005: Fix incorrect opus seek preroll and flaky pre-skip removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mojo renderer. Created 5 years, 4 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 | « media/test/pipeline_integration_test.cc ('k') | media/test/pipeline_integration_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/pipeline_integration_test_base.h
diff --git a/media/test/pipeline_integration_test_base.h b/media/test/pipeline_integration_test_base.h
index c65ea45401459a07d352cb851c9eec55486c7fc4..8f859f9d304c2046863bf8c530e3e37ec374df77 100644
--- a/media/test/pipeline_integration_test_base.h
+++ b/media/test/pipeline_integration_test_base.h
@@ -71,9 +71,10 @@ class PipelineIntegrationTestBase {
// Starts the pipeline in a particular mode for advanced testing and
// benchmarking purposes (e.g., underflow is disabled to ensure consistent
- // hashes).
- enum kTestType { kHashed, kClockless };
- PipelineStatus Start(const std::string& filename, kTestType test_type);
+ // hashes). May be combined using the bitwise or operator (and as such must
+ // have values that are powers of two).
+ enum TestTypeFlags { kHashed = 1, kClockless = 2};
+ PipelineStatus Start(const std::string& filename, uint8_t test_type);
void Play();
void Pause();
« no previous file with comments | « media/test/pipeline_integration_test.cc ('k') | media/test/pipeline_integration_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698