chromium/media/video/picture.h

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_VIDEO_PICTURE_H_
#define MEDIA_VIDEO_PICTURE_H_

#include <stdint.h>

#include "media/base/media_export.h"
#include "ui/gfx/geometry/rect.h"

namespace media {

// A PictureBuffer carries metadata about a particular buffer tracked by the
// client of a VideoDecodeAccelerator.
class MEDIA_EXPORT PictureBuffer {};

// A decoded picture frame.
// This is the media-namespace equivalent of PP_Picture_Dev.
class MEDIA_EXPORT Picture {};

}  // namespace media

#endif  // MEDIA_VIDEO_PICTURE_H_