OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_VIDEO_PICTURE_H_ | 5 #ifndef MEDIA_VIDEO_PICTURE_H_ |
6 #define MEDIA_VIDEO_PICTURE_H_ | 6 #define MEDIA_VIDEO_PICTURE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "gpu/command_buffer/common/mailbox.h" | 9 #include "gpu/command_buffer/common/mailbox.h" |
10 #include "media/base/media_export.h" | 10 #include "media/base/media_export.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 | 71 |
72 void set_bitstream_buffer_id(int32 bitstream_buffer_id) { | 72 void set_bitstream_buffer_id(int32 bitstream_buffer_id) { |
73 bitstream_buffer_id_ = bitstream_buffer_id; | 73 bitstream_buffer_id_ = bitstream_buffer_id; |
74 } | 74 } |
75 | 75 |
76 // Returns the visible rectangle of the picture. Its size may be smaller | 76 // Returns the visible rectangle of the picture. Its size may be smaller |
77 // than the size of the PictureBuffer, as it is the only visible part of the | 77 // than the size of the PictureBuffer, as it is the only visible part of the |
78 // Picture contained in the PictureBuffer. | 78 // Picture contained in the PictureBuffer. |
79 gfx::Rect visible_rect() const { return visible_rect_; } | 79 gfx::Rect visible_rect() const { return visible_rect_; } |
80 | 80 |
| 81 void set_allow_overlay(bool allow_overlay) { allow_overlay_ = allow_overlay; } |
| 82 bool allow_overlay() const { return allow_overlay_; } |
| 83 |
81 private: | 84 private: |
82 int32 picture_buffer_id_; | 85 int32 picture_buffer_id_; |
83 int32 bitstream_buffer_id_; | 86 int32 bitstream_buffer_id_; |
84 gfx::Rect visible_rect_; | 87 gfx::Rect visible_rect_; |
| 88 bool allow_overlay_; |
85 }; | 89 }; |
86 | 90 |
87 } // namespace media | 91 } // namespace media |
88 | 92 |
89 #endif // MEDIA_VIDEO_PICTURE_H_ | 93 #endif // MEDIA_VIDEO_PICTURE_H_ |
OLD | NEW |