| Index: Source/modules/mediasource/SourceBufferList.h
|
| diff --git a/Source/modules/mediasource/SourceBufferList.h b/Source/modules/mediasource/SourceBufferList.h
|
| index 2772e8a0b8b0657ec832d5fce5781a8f8b3b3d15..1395565450c7d78541a107a04a2126b87b091fe5 100644
|
| --- a/Source/modules/mediasource/SourceBufferList.h
|
| +++ b/Source/modules/mediasource/SourceBufferList.h
|
| @@ -55,7 +55,9 @@ public:
|
| SourceBuffer* item(unsigned long index) const { return (index < m_list.size()) ? m_list[index].get() : 0; }
|
|
|
| void add(SourceBuffer*);
|
| + void insert(size_t position, SourceBuffer*);
|
| void remove(SourceBuffer*);
|
| + size_t find(SourceBuffer* buffer) { return m_list.find(buffer); }
|
| bool contains(SourceBuffer* buffer) { return m_list.find(buffer) != kNotFound; }
|
| void clear();
|
|
|
|
|