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_GPUMEMORYBUFFER
,
33 PIXEL_FORMAT_UNKNOWN
, // Color format not set.
37 // Policies for capture devices that has source content with dynamic resolution.
38 enum ResolutionChangePolicy
{
39 // Capture device outputs a fixed resolution all the time. The resolution of
40 // the first frame is the resolution for all frames.
41 // It is implementation specific for the capture device to scale, letter-box
42 // and pillar-box. The only guarantee is that resolution will never change.
43 RESOLUTION_POLICY_FIXED
,
45 // Capture device outputs frames with dynamic resolution. The width and height
46 // will not exceed the maximum dimensions specified. The typical scenario is
47 // the frames will have the same aspect ratio as the original content and
48 // scaled down to fit inside the limit.
49 RESOLUTION_POLICY_DYNAMIC_WITHIN_LIMIT
,
51 RESOLUTION_POLICY_LAST
,
54 // Some drivers use rational time per frame instead of float frame rate, this
55 // constant k is used to convert between both: A fps -> [k/k*A] seconds/frame.
56 const int kFrameRatePrecision
= 10000;
58 // Video capture format specification.
59 // This class is used by the video capture device to specify the format of every
60 // frame captured and returned to a client. It is also used to specify a
61 // supported capture format by a device.
62 class MEDIA_EXPORT VideoCaptureFormat
{
65 VideoCaptureFormat(const gfx::Size
& frame_size
,
67 VideoPixelFormat pixel_format
);
69 std::string
ToString() const;
70 static std::string
PixelFormatToString(VideoPixelFormat format
);
72 // Returns the required buffer size to hold an image of a given
73 // VideoCaptureFormat with no padding and tightly packed.
74 size_t ImageAllocationSize() const;
76 // Checks that all values are in the expected range. All limits are specified
82 VideoPixelFormat pixel_format
;
85 typedef std::vector
<VideoCaptureFormat
> VideoCaptureFormats
;
87 // Parameters for starting video capture.
88 // This class is used by the client of a video capture device to specify the
89 // format of frames in which the client would like to have captured frames
91 class MEDIA_EXPORT VideoCaptureParams
{
95 // Requests a resolution and format at which the capture will occur.
96 VideoCaptureFormat requested_format
;
98 // Policy for resolution change.
99 ResolutionChangePolicy resolution_change_policy
;
104 #endif // MEDIA_BASE_VIDEO_CAPTURE_TYPES_H_