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" |
11 #include "ui/gfx/geometry/rect.h" | |
12 #include "ui/gfx/size.h" | 11 #include "ui/gfx/size.h" |
13 | 12 |
14 namespace media { | 13 namespace media { |
15 | 14 |
16 // A picture buffer that is composed of a GLES2 texture. | 15 // A picture buffer that is composed of a GLES2 texture. |
17 // This is the media-namespace equivalent of PP_PictureBuffer_Dev. | 16 // This is the media-namespace equivalent of PP_PictureBuffer_Dev. |
18 class MEDIA_EXPORT PictureBuffer { | 17 class MEDIA_EXPORT PictureBuffer { |
19 public: | 18 public: |
20 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id); | 19 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id); |
21 PictureBuffer(int32 id, | 20 PictureBuffer(int32 id, |
(...skipping 26 matching lines...) Expand all Loading... |
48 int32 id_; | 47 int32 id_; |
49 gfx::Size size_; | 48 gfx::Size size_; |
50 uint32 texture_id_; | 49 uint32 texture_id_; |
51 gpu::Mailbox texture_mailbox_; | 50 gpu::Mailbox texture_mailbox_; |
52 }; | 51 }; |
53 | 52 |
54 // A decoded picture frame. | 53 // A decoded picture frame. |
55 // This is the media-namespace equivalent of PP_Picture_Dev. | 54 // This is the media-namespace equivalent of PP_Picture_Dev. |
56 class MEDIA_EXPORT Picture { | 55 class MEDIA_EXPORT Picture { |
57 public: | 56 public: |
58 Picture(int32 picture_buffer_id, | 57 Picture(int32 picture_buffer_id, int32 bitstream_buffer_id); |
59 int32 bitstream_buffer_id, | |
60 const gfx::Rect& visible_rect); | |
61 | 58 |
62 // Returns the id of the picture buffer where this picture is contained. | 59 // Returns the id of the picture buffer where this picture is contained. |
63 int32 picture_buffer_id() const { | 60 int32 picture_buffer_id() const { |
64 return picture_buffer_id_; | 61 return picture_buffer_id_; |
65 } | 62 } |
66 | 63 |
67 // Returns the id of the bitstream buffer from which this frame was decoded. | 64 // Returns the id of the bitstream buffer from which this frame was decoded. |
68 int32 bitstream_buffer_id() const { | 65 int32 bitstream_buffer_id() const { |
69 return bitstream_buffer_id_; | 66 return bitstream_buffer_id_; |
70 } | 67 } |
71 | 68 |
72 void set_bitstream_buffer_id(int32 bitstream_buffer_id) { | 69 void set_bitstream_buffer_id(int32 bitstream_buffer_id) { |
73 bitstream_buffer_id_ = bitstream_buffer_id; | 70 bitstream_buffer_id_ = bitstream_buffer_id; |
74 } | 71 } |
75 | 72 |
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 | |
78 // Picture contained in the PictureBuffer. | |
79 gfx::Rect visible_rect() const { return visible_rect_; } | |
80 | |
81 private: | 73 private: |
82 int32 picture_buffer_id_; | 74 int32 picture_buffer_id_; |
83 int32 bitstream_buffer_id_; | 75 int32 bitstream_buffer_id_; |
84 gfx::Rect visible_rect_; | |
85 }; | 76 }; |
86 | 77 |
87 } // namespace media | 78 } // namespace media |
88 | 79 |
89 #endif // MEDIA_VIDEO_PICTURE_H_ | 80 #endif // MEDIA_VIDEO_PICTURE_H_ |
OLD | NEW |