1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
media / capture / video / video_frame_receiver.h [blame]
// Copyright 2016 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_CAPTURE_VIDEO_VIDEO_FRAME_RECEIVER_H_
#define MEDIA_CAPTURE_VIDEO_VIDEO_FRAME_RECEIVER_H_
#include <memory>
#include "base/functional/callback_helpers.h"
#include "media/capture/capture_export.h"
#include "media/capture/mojom/video_capture_buffer.mojom.h"
#include "media/capture/mojom/video_capture_types.mojom.h"
#include "media/capture/video/video_capture_buffer_handle.h"
#include "media/capture/video/video_capture_device.h"
namespace media {
struct CAPTURE_EXPORT ReadyFrameInBuffer {
ReadyFrameInBuffer();
ReadyFrameInBuffer(
int buffer_id,
int frame_feedback_id,
std::unique_ptr<
VideoCaptureDevice::Client::Buffer::ScopedAccessPermission>
buffer_read_permission,
mojom::VideoFrameInfoPtr frame_info);
ReadyFrameInBuffer(ReadyFrameInBuffer&& other);
~ReadyFrameInBuffer();
ReadyFrameInBuffer& operator=(ReadyFrameInBuffer&& other);
int buffer_id;
int frame_feedback_id;
std::unique_ptr<VideoCaptureDevice::Client::Buffer::ScopedAccessPermission>
buffer_read_permission;
mojom::VideoFrameInfoPtr frame_info;
};
// Adapter for a VideoFrameReceiver to notify once frame consumption is
// complete. VideoFrameReceiver requires owning an object that it will destroy
// once consumption is complete. This class adapts between that scheme and
// running a "done callback" to notify that consumption is complete. The
// callback is guaranteed to be run on the thread that the adapter was created
// on, since the VideoFrameReceiver may not be destroying the object on the same
// thread.
class CAPTURE_EXPORT ScopedFrameDoneHelper final
: public base::ScopedClosureRunner,
public media::VideoCaptureDevice::Client::Buffer::ScopedAccessPermission {
public:
explicit ScopedFrameDoneHelper(base::OnceClosure done_callback);
~ScopedFrameDoneHelper() final;
};
// Callback interface for VideoCaptureDeviceClient to communicate with its
// clients. On some platforms, VideoCaptureDeviceClient calls these methods from
// OS or capture driver provided threads which do not have a task runner and
// cannot be posted back to. The mostly equivalent interface
// video_capture::mojom::VideoFrameHandler cannot be used by
// VideoCaptureDeviceClient directly, because creating a
// video_capture::mojom::ScopedAccessPermission for passing into
// OnFrameReadyInBuffer() requires a thread with a task runner.
class CAPTURE_EXPORT VideoFrameReceiver {
public:
virtual ~VideoFrameReceiver() {}
// Tells the VideoFrameReceiver that the producer is going to subsequently use
// the provided buffer as one of possibly many for frame delivery via
// OnFrameReadyInBuffer(). Note, that a call to this method does not mean that
// the caller allows the receiver to read from or write to the buffer just
// yet. Temporary permission to read will be given with subsequent calls to
// OnFrameReadyInBuffer().
virtual void OnNewBuffer(
int32_t buffer_id,
media::mojom::VideoBufferHandlePtr buffer_handle) = 0;
// Tells the VideoFrameReceiver that a new frame is ready for consumption
// in the buffer with id |buffer_id| and allows it to read the data from
// the buffer. The producer guarantees that the buffer and its contents stay
// alive and unchanged until VideoFrameReceiver releases the given
// |buffer_read_permission|.
virtual void OnFrameReadyInBuffer(ReadyFrameInBuffer frame) = 0;
// Tells the VideoFrameReceiver that the producer is no longer going to use
// the buffer with id |buffer_id| for frame delivery. This may be called even
// while the receiver is still holding |buffer_read_permission| from a call to
// OnFrameReadInBuffer() for the same buffer. In that case, it means that the
// caller is asking the VideoFrameReceiver to release the read permission and
// buffer handle at its earliest convenience. After this call, a producer may
// immediately reuse the retired |buffer_id| with a new buffer via a call to
// OnNewBuffer().
virtual void OnBufferRetired(int buffer_id) = 0;
virtual void OnCaptureConfigurationChanged() = 0;
virtual void OnError(VideoCaptureError error) = 0;
virtual void OnFrameDropped(VideoCaptureFrameDropReason reason) = 0;
virtual void OnNewSubCaptureTargetVersion(
uint32_t sub_capture_target_version) = 0;
virtual void OnFrameWithEmptyRegionCapture() = 0;
virtual void OnLog(const std::string& message) = 0;
virtual void OnStarted() = 0;
virtual void OnStartedUsingGpuDecode() = 0;
virtual void OnStopped() = 0;
};
} // namespace media
#endif // MEDIA_CAPTURE_VIDEO_VIDEO_FRAME_RECEIVER_H_