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

Unified Diff: media/test/pipeline_integration_fuzzertest.cc

Issue 2727573005: Remove useless DCHECK; discard helper enforces invalid values. (Closed)
Patch Set: Created 3 years, 10 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/filters/ffmpeg_demuxer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/pipeline_integration_fuzzertest.cc
diff --git a/media/test/pipeline_integration_fuzzertest.cc b/media/test/pipeline_integration_fuzzertest.cc
index 964f280425ca1c88bbd1404b558f1d5238cf1782..68b701c9d8e31fd87d14c6cbdbcabf531ba6670b 100644
--- a/media/test/pipeline_integration_fuzzertest.cc
+++ b/media/test/pipeline_integration_fuzzertest.cc
@@ -46,7 +46,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
base::Bind(&OnEncryptedMediaInitData, &test));
media::PipelineStatus pipeline_status =
- test.Start(data, size, media::PipelineIntegrationTestBase::kClockless);
+ test.Start(data, size,
+ media::PipelineIntegrationTestBase::kClockless |
+ media::PipelineIntegrationTestBase::kUnreliableDuration);
if (pipeline_status != media::PIPELINE_OK)
return 0;
« no previous file with comments | « media/filters/ffmpeg_demuxer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698