Chromium Code Reviews| Index: media/base/demuxer_stream.h |
| diff --git a/media/base/demuxer_stream.h b/media/base/demuxer_stream.h |
| index 596ab67e83692aba287f11e6c1488a623ffee8e6..c4e189b7723078bfb3d6abfbbb716e080d12ceef 100644 |
| --- a/media/base/demuxer_stream.h |
| +++ b/media/base/demuxer_stream.h |
| @@ -91,6 +91,12 @@ class MEDIA_EXPORT DemuxerStream { |
| virtual VideoRotation video_rotation() = 0; |
| + // Get the data buffer size, in bytes. |
|
wolenetz
2015/06/12 21:31:57
nit: s/size/size limit/
servolk
2015/06/16 01:30:51
Done.
|
| + virtual int GetMemoryLimit() const; |
|
wolenetz
2015/06/12 21:31:56
nit: signed int: is a range including negative val
servolk
2015/06/16 01:30:51
The best type for this is probably size_t, but the
|
| + |
| + // Set the data buffer size, in bytes. |
|
wolenetz
2015/06/12 21:31:56
nit ditto (limit)
servolk
2015/06/16 01:30:51
Done.
|
| + virtual void SetMemoryLimit(int memory_limit); |
|
wolenetz
2015/06/12 21:31:56
nit ditto (int ?)
Also, is a DemuxerStream valid
servolk
2015/06/16 01:30:51
Yes, there are reasonable defaults for memory limi
|
| + |
| protected: |
| // Only allow concrete implementations to get deleted. |
| virtual ~DemuxerStream(); |