blob: 9fa8125d27b27f7184afc300e006db3ddecf44a2 (
plain)
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
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_TRACK_H_
#define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_TRACK_H_
#include <vector>
#include "base/compiler_specific.h"
#include "base/memory/scoped_vector.h"
#include "base/threading/thread_checker.h"
#include "content/common/content_export.h"
#include "content/public/renderer/media_stream_video_sink.h"
#include "content/renderer/media/media_stream_track.h"
#include "content/renderer/media/media_stream_video_source.h"
namespace content {
// MediaStreamVideoTrack is a video specific representation of a
// blink::WebMediaStreamTrack in content. It is owned by the blink object
// and can be retrieved from a blink object using
// WebMediaStreamTrack::extraData() or MediaStreamVideoTrack::GetVideoTrack.
class CONTENT_EXPORT MediaStreamVideoTrack : public MediaStreamTrack {
public:
// Help method to create a blink::WebMediaStreamTrack and a
// MediaStreamVideoTrack instance. The MediaStreamVideoTrack object is owned
// by the blink object in its WebMediaStreamTrack::ExtraData member.
// |callback| is triggered if the track is added to the source
// successfully and will receive video frames that match |constraints|
// or if the source fail to provide video frames.
// If |enabled| is true, sinks added to the track will
// receive video frames when the source deliver frames to the track.
static blink::WebMediaStreamTrack CreateVideoTrack(
MediaStreamVideoSource* source,
const blink::WebMediaConstraints& constraints,
const MediaStreamVideoSource::ConstraintsCallback& callback,
bool enabled);
static MediaStreamVideoTrack* GetVideoTrack(
const blink::WebMediaStreamTrack& track);
// Constructor for local video tracks.
MediaStreamVideoTrack(
MediaStreamVideoSource* source,
const blink::WebMediaConstraints& constraints,
const MediaStreamVideoSource::ConstraintsCallback& callback,
bool enabled);
virtual ~MediaStreamVideoTrack();
// Add |sink| to receive state changes and video frames on the main render
// thread.
virtual void AddSink(MediaStreamVideoSink* sink);
virtual void RemoveSink(MediaStreamVideoSink* sink);
// Add |sink| to receive state changes on the main render thread and video
// frames in the |callback| method on the IO-thread.
virtual void AddSink(MediaStreamSink* sink,
const VideoCaptureDeliverFrameCB& callback);
virtual void RemoveSink(MediaStreamSink* sink);
virtual void SetEnabled(bool enabled) OVERRIDE;
virtual void Stop() OVERRIDE;
void OnReadyStateChanged(blink::WebMediaStreamSource::ReadyState state);
const blink::WebMediaConstraints& constraints() const {
return constraints_;
}
protected:
// Used to DCHECK that we are called on the correct thread.
base::ThreadChecker thread_checker_;
private:
// |FrameDeliverer| is an internal helper object used for delivering video
// frames on the IO-thread using callbacks to all registered tracks.
class FrameDeliverer;
scoped_refptr<FrameDeliverer> frame_deliverer_;
blink::WebMediaConstraints constraints_;
// Weak ref to the source this tracks is connected to. |source_| is owned
// by the blink::WebMediaStreamSource and is guaranteed to outlive the
// track.
MediaStreamVideoSource* source_;
DISALLOW_COPY_AND_ASSIGN(MediaStreamVideoTrack);
};
} // namespace content
#endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_VIDEO_TRACK_H_
|