1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MEDIA_BASE_VIDEO_CAPTURE_TYPES_H_
6 #define MEDIA_BASE_VIDEO_CAPTURE_TYPES_H_
10 #include "media/base/media_export.h"
11 #include "ui/gfx/geometry/size.h"
15 // TODO(wjia): this type should be defined in a common place and
16 // shared with device manager.
17 typedef int VideoCaptureSessionId
;
19 // Color formats from camera. This list is sorted in order of preference.
20 enum VideoPixelFormat
{
31 PIXEL_FORMAT_TEXTURE
, // Capture format as a GL texture.
32 PIXEL_FORMAT_UNKNOWN
, // Color format not set.
36 // Policies for capture devices that has source content with dynamic resolution.
37 enum ResolutionChangePolicy
{
38 // Capture device outputs a fixed resolution all the time. The resolution of
39 // the first frame is the resolution for all frames.
40 // It is implementation specific for the capture device to scale, letter-box
41 // and pillar-box. The only guarantee is that resolution will never change.
42 RESOLUTION_POLICY_FIXED
,
44 // Capture device outputs frames with dynamic resolution. The width and height
45 // will not exceed the maximum dimensions specified. The typical scenario is
46 // the frames will have the same aspect ratio as the original content and
47 // scaled down to fit inside the limit.
48 RESOLUTION_POLICY_DYNAMIC_WITHIN_LIMIT
,
50 RESOLUTION_POLICY_LAST
,
53 // Some drivers use rational time per frame instead of float frame rate, this
54 // constant k is used to convert between both: A fps -> [k/k*A] seconds/frame.
55 const int kFrameRatePrecision
= 10000;
57 // Video capture format specification.
58 // This class is used by the video capture device to specify the format of every
59 // frame captured and returned to a client. It is also used to specify a
60 // supported capture format by a device.
61 class MEDIA_EXPORT VideoCaptureFormat
{
64 VideoCaptureFormat(const gfx::Size
& frame_size
,
66 VideoPixelFormat pixel_format
);
68 std::string
ToString() const;
69 static std::string
PixelFormatToString(VideoPixelFormat format
);
71 // Returns the required buffer size to hold an image of a given
72 // VideoCaptureFormat with no padding and tightly packed.
73 size_t ImageAllocationSize() const;
75 // Checks that all values are in the expected range. All limits are specified
81 VideoPixelFormat pixel_format
;
84 typedef std::vector
<VideoCaptureFormat
> VideoCaptureFormats
;
86 // Parameters for starting video capture.
87 // This class is used by the client of a video capture device to specify the
88 // format of frames in which the client would like to have captured frames
90 class MEDIA_EXPORT VideoCaptureParams
{
94 // Requests a resolution and format at which the capture will occur.
95 VideoCaptureFormat requested_format
;
97 // Policy for resolution change.
98 ResolutionChangePolicy resolution_change_policy
;
103 #endif // MEDIA_BASE_VIDEO_CAPTURE_TYPES_H_