| Index: media/base/video_util.h
|
| diff --git a/media/base/video_util.h b/media/base/video_util.h
|
| index 3d21c8c1e39707ee48f48ae6cca59b1ddd2b97c6..408534d2a1791bdeef33267870afbbb8f4d7b828 100644
|
| --- a/media/base/video_util.h
|
| +++ b/media/base/video_util.h
|
| @@ -7,11 +7,17 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "media/base/media_export.h"
|
| +#include "ui/gfx/rect.h"
|
|
|
| namespace media {
|
|
|
| class VideoFrame;
|
|
|
| +// Computes the size of |visible_rect| for a given aspect ratio.
|
| +MEDIA_EXPORT gfx::Size GetNaturalSize(const gfx::Rect& visible_rect,
|
| + int aspect_ratio_numerator,
|
| + int aspect_ratio_denominator);
|
| +
|
| // Copies a plane of YUV source into a VideoFrame object, taking into account
|
| // source and destinations dimensions.
|
| //
|
|
|