| Index: media/gpu/vp8_picture.h
|
| diff --git a/media/gpu/vp8_picture.h b/media/gpu/vp8_picture.h
|
| index 164cf0a2c7e2259984603cf4d6936b4cb4980fed..9183747a63b18a05109229ef27e65f669dbb7e3d 100644
|
| --- a/media/gpu/vp8_picture.h
|
| +++ b/media/gpu/vp8_picture.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| +#include "ui/gfx/geometry/rect.h"
|
|
|
| namespace media {
|
|
|
| @@ -20,6 +21,10 @@ class VP8Picture : public base::RefCounted<VP8Picture> {
|
| virtual V4L2VP8Picture* AsV4L2VP8Picture();
|
| virtual VaapiVP8Picture* AsVaapiVP8Picture();
|
|
|
| + // The visible size of picture. In VP8 codec visible size should be always as
|
| + // large as picture size.
|
| + gfx::Rect visible_rect;
|
| +
|
| protected:
|
| friend class base::RefCounted<VP8Picture>;
|
| virtual ~VP8Picture();
|
|
|