Chromium Code Reviews| Index: media/base/demuxer_stream.h |
| diff --git a/media/base/demuxer_stream.h b/media/base/demuxer_stream.h |
| index 87f53e7307fcec7982b85be91639b4a536dd4ee2..ce94b6432be940b9705514dfd194cd339d5b85b2 100644 |
| --- a/media/base/demuxer_stream.h |
| +++ b/media/base/demuxer_stream.h |
| @@ -8,6 +8,7 @@ |
| #include "base/callback.h" |
| #include "base/memory/ref_counted.h" |
| #include "media/base/media_export.h" |
| +#include "media/base/video_rotation.h" |
| namespace media { |
| @@ -80,6 +81,9 @@ class MEDIA_EXPORT DemuxerStream { |
| // on this. |
| virtual bool SupportsConfigChanges() = 0; |
| + virtual VideoRotation video_rotation() = 0; |
| + virtual void set_video_rotation(VideoRotation video_rotation) = 0; |
|
scherkus (not reviewing)
2014/07/07 23:58:45
clients shouldn't be able to change the rotation -
|
| + |
| protected: |
| // Only allow concrete implementations to get deleted. |
| virtual ~DemuxerStream(); |