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

Unified Diff: media/test/pipeline_integration_test.cc

Issue 2605993002: Experiment with more aggressive MSE GC on memory pressure (Closed)
Patch Set: Allow MSE GC to happen in EOS state now Created 3 years, 11 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
Index: media/test/pipeline_integration_test.cc
diff --git a/media/test/pipeline_integration_test.cc b/media/test/pipeline_integration_test.cc
index 652398f9781fb692cf39a1d274c0e99684a9ec0d..c66d2e9180a61aac53c522f67ba87a0664a4f49c 100644
--- a/media/test/pipeline_integration_test.cc
+++ b/media/test/pipeline_integration_test.cc
@@ -540,8 +540,8 @@ class MockMediaSource {
chunk_demuxer_->SetMemoryLimitsForTest(DemuxerStream::VIDEO, limit_bytes);
}
- void EvictCodedFrames(base::TimeDelta currentMediaTime, size_t newDataSize) {
- chunk_demuxer_->EvictCodedFrames(kSourceId, currentMediaTime, newDataSize);
+ void EvictCodedFrames(base::TimeDelta currentMediaTime, size_t evict_size) {
+ chunk_demuxer_->EvictCodedFrames(kSourceId, currentMediaTime, evict_size);
}
void RemoveRange(base::TimeDelta start, base::TimeDelta end) {
« media/filters/source_buffer_stream.cc ('K') | « media/filters/source_buffer_stream.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698