blob: 449adbd4a57c0a7fb20eb7e07df3a95edc94707d (
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
|
// Copyright 2014 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_MOCK_MEDIA_STREAM_VIDEO_SOURCE_H_
#define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_VIDEO_SOURCE_H_
#include "content/renderer/media/media_stream_video_source.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace content {
class MockMediaStreamVideoSource : public MediaStreamVideoSource {
public:
explicit MockMediaStreamVideoSource(bool manual_get_supported_formats);
virtual ~MockMediaStreamVideoSource();
MOCK_METHOD1(DoSetMutedState, void(bool muted_state));
// Simulate that the underlying source start successfully.
void StartMockedSource();
// Simulate that the underlying source fail to start.
void FailToStartMockedSource();
// Returns true if StartSource has been called and StartMockedSource
// or FailToStartMockedSource has not been called.
bool SourceHasAttemptedToStart() { return attempted_to_start_; }
void SetSupportedFormats(const media::VideoCaptureFormats& formats) {
supported_formats_ = formats;
}
// Delivers |frame| to all registered tracks on the IO thread. Its up to the
// call to make sure MockMediaStreamVideoSource is not destroyed before the
// frame has been delivered.
void DeliverVideoFrame(const scoped_refptr<media::VideoFrame>& frame);
void CompleteGetSupportedFormats();
const media::VideoCaptureParams& start_params() const { return params_; }
int max_requested_height() const { return max_requested_height_; }
int max_requested_width() const { return max_requested_width_; }
double max_requested_frame_rate() const { return max_requested_frame_rate_; }
void SetMutedState(bool muted_state) {
MediaStreamVideoSource::SetMutedState(muted_state);
DoSetMutedState(muted_state);
}
protected:
void DeliverVideoFrameOnIO(const scoped_refptr<media::VideoFrame>& frame,
media::VideoCaptureFormat format,
const base::TimeTicks& estimated_capture_time,
const VideoCaptureDeliverFrameCB& frame_callback);
// Implements MediaStreamVideoSource.
virtual void GetCurrentSupportedFormats(
int max_requested_height,
int max_requested_width,
double max_requested_frame_rate,
const VideoCaptureDeviceFormatsCB& callback) OVERRIDE;
virtual void StartSourceImpl(
const media::VideoCaptureParams& params,
const VideoCaptureDeliverFrameCB& frame_callback) OVERRIDE;
virtual void StopSourceImpl() OVERRIDE;
private:
media::VideoCaptureParams params_;
media::VideoCaptureFormats supported_formats_;
bool manual_get_supported_formats_;
int max_requested_height_;
int max_requested_width_;
double max_requested_frame_rate_;
bool attempted_to_start_;
VideoCaptureDeviceFormatsCB formats_callback_;
VideoCaptureDeliverFrameCB frame_callback_;
DISALLOW_COPY_AND_ASSIGN(MockMediaStreamVideoSource);
};
} // namespace content
#endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_VIDEO_SOURCE_H_
|