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

Unified Diff: media/filters/ffmpeg_demuxer.cc

Issue 1171263004: Allow setting memory limits on media::DemuxerStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merged CL that adds get/set buffer size on WMP Created 5 years, 6 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.h ('k') | media/filters/source_buffer_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_demuxer.cc
diff --git a/media/filters/ffmpeg_demuxer.cc b/media/filters/ffmpeg_demuxer.cc
index bc6ae8c96a62d60741bdf9a5cbc8e7b034052fe2..0af639b5f7baf2e24f3fb2040fb079bb25fa9a29 100644
--- a/media/filters/ffmpeg_demuxer.cc
+++ b/media/filters/ffmpeg_demuxer.cc
@@ -481,6 +481,25 @@ VideoRotation FFmpegDemuxerStream::video_rotation() {
return video_rotation_;
}
+size_t FFmpegDemuxerStream::GetMemoryLimit() const {
+ // TODO(servolk): Implement better memory limit control for FFMpegDemuxer,
+ // currently it has a hard-coded limit of 150Mb across all streams (see
+ // IsMaxMemoryUsageReached and crbug.com/343304).
+ // Also FFmpegDemuxer is always used with media::BufferDataSource, perhaps
+ // we should control buffer size via that for FFmpeg.
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+void FFmpegDemuxerStream::SetMemoryLimit(size_t memory_limit) {
+ // TODO(servolk): Implement better memory limit control for FFMpegDemuxer,
+ // currently it has a hard-coded limit of 150Mb across all streams (see
+ // IsMaxMemoryUsageReached and crbug.com/343304).
+ // Also FFmpegDemuxer is always used with media::BufferDataSource, perhaps
+ // we should control buffer size via that for FFmpeg.
+ NOTIMPLEMENTED();
+}
+
void FFmpegDemuxerStream::SetLiveness(Liveness liveness) {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK_EQ(liveness_, LIVENESS_UNKNOWN);
« no previous file with comments | « media/filters/ffmpeg_demuxer.h ('k') | media/filters/source_buffer_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698