OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 #include <stdio.h> | 10 #include <stdio.h> |
(...skipping 26 matching lines...) Expand all Loading... |
37 namespace webrtc { | 37 namespace webrtc { |
38 | 38 |
39 static const int kSendStatsPollingIntervalMs = 1000; | 39 static const int kSendStatsPollingIntervalMs = 1000; |
40 static const int kPayloadTypeH264 = 122; | 40 static const int kPayloadTypeH264 = 122; |
41 static const int kPayloadTypeVP8 = 123; | 41 static const int kPayloadTypeVP8 = 123; |
42 static const int kPayloadTypeVP9 = 124; | 42 static const int kPayloadTypeVP9 = 124; |
43 | 43 |
44 class VideoAnalyzer : public PacketReceiver, | 44 class VideoAnalyzer : public PacketReceiver, |
45 public Transport, | 45 public Transport, |
46 public I420FrameCallback, | 46 public I420FrameCallback, |
47 public VideoRenderer, | 47 public rtc::VideoSinkInterface<VideoFrame>, |
48 public VideoCaptureInput, | 48 public VideoCaptureInput, |
49 public EncodedFrameObserver { | 49 public EncodedFrameObserver { |
50 public: | 50 public: |
51 VideoAnalyzer(test::LayerFilteringTransport* transport, | 51 VideoAnalyzer(test::LayerFilteringTransport* transport, |
52 const std::string& test_label, | 52 const std::string& test_label, |
53 double avg_psnr_threshold, | 53 double avg_psnr_threshold, |
54 double avg_ssim_threshold, | 54 double avg_ssim_threshold, |
55 int duration_frames, | 55 int duration_frames, |
56 FILE* graph_data_output_file, | 56 FILE* graph_data_output_file, |
57 const std::string& graph_title, | 57 const std::string& graph_title, |
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 video_send_stream_->Stop(); | 1127 video_send_stream_->Stop(); |
1128 receive_stream->Stop(); | 1128 receive_stream->Stop(); |
1129 | 1129 |
1130 call->DestroyVideoReceiveStream(receive_stream); | 1130 call->DestroyVideoReceiveStream(receive_stream); |
1131 call->DestroyVideoSendStream(video_send_stream_); | 1131 call->DestroyVideoSendStream(video_send_stream_); |
1132 | 1132 |
1133 transport.StopSending(); | 1133 transport.StopSending(); |
1134 } | 1134 } |
1135 | 1135 |
1136 } // namespace webrtc | 1136 } // namespace webrtc |
OLD | NEW |