| Index: media/base/filters.h
|
| ===================================================================
|
| --- media/base/filters.h (revision 21798)
|
| +++ media/base/filters.h (working copy)
|
| @@ -88,6 +88,25 @@
|
| return message_loop_;
|
| }
|
|
|
| + // The pipeline has resumed playback. Filters can continue requesting reads.
|
| + // Filters may implement this method if they need to respond to this call.
|
| + virtual void Play(FilterCallback* callback) {
|
| + if (callback) {
|
| + callback->Run();
|
| + delete callback;
|
| + }
|
| + }
|
| +
|
| + // The pipeline has paused playback. Filters should fulfill any existing read
|
| + // requests and then idle. Filters may implement this method if they need to
|
| + // respond to this call.
|
| + virtual void Pause(FilterCallback* callback) {
|
| + if (callback) {
|
| + callback->Run();
|
| + delete callback;
|
| + }
|
| + }
|
| +
|
| // The pipeline is being stopped either as a result of an error or because
|
| // the client called Stop().
|
| virtual void Stop() = 0;
|
|
|
| Property changes on: media\base\filters.h
|
| ___________________________________________________________________
|
| Modified: svn:mergeinfo
|
| Merged /trunk/src/media/base/filters.h:r21611
|
|
|
|
|