| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 <algorithm> | 10 #include <algorithm> |
| 11 #include <map> | 11 #include <map> |
| 12 #include <sstream> | 12 #include <sstream> |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 #include "webrtc/base/checks.h" | 17 #include "webrtc/base/checks.h" |
| 18 #include "webrtc/base/event.h" | 18 #include "webrtc/base/event.h" |
| 19 #include "webrtc/base/scoped_ptr.h" | 19 #include "webrtc/base/scoped_ptr.h" |
| 20 #include "webrtc/call.h" | 20 #include "webrtc/call.h" |
| 21 #include "webrtc/call/transport_adapter.h" | 21 #include "webrtc/call/transport_adapter.h" |
| 22 #include "webrtc/frame_callback.h" | 22 #include "webrtc/frame_callback.h" |
| 23 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" | 23 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
| 24 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 24 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
| 25 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" | 25 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
| 26 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 26 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
| 27 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" | 27 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" |
| 28 #include "webrtc/modules/video_coding/include/video_coding_defines.h" | 28 #include "webrtc/modules/video_coding/include/video_coding_defines.h" |
| 29 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | |
| 30 #include "webrtc/system_wrappers/include/metrics.h" | 29 #include "webrtc/system_wrappers/include/metrics.h" |
| 31 #include "webrtc/system_wrappers/include/sleep.h" | 30 #include "webrtc/system_wrappers/include/sleep.h" |
| 32 #include "webrtc/test/call_test.h" | 31 #include "webrtc/test/call_test.h" |
| 33 #include "webrtc/test/direct_transport.h" | 32 #include "webrtc/test/direct_transport.h" |
| 34 #include "webrtc/test/encoder_settings.h" | 33 #include "webrtc/test/encoder_settings.h" |
| 35 #include "webrtc/test/fake_decoder.h" | 34 #include "webrtc/test/fake_decoder.h" |
| 36 #include "webrtc/test/fake_encoder.h" | 35 #include "webrtc/test/fake_encoder.h" |
| 37 #include "webrtc/test/frame_generator.h" | 36 #include "webrtc/test/frame_generator.h" |
| 38 #include "webrtc/test/frame_generator_capturer.h" | 37 #include "webrtc/test/frame_generator_capturer.h" |
| 39 #include "webrtc/test/histogram.h" | 38 #include "webrtc/test/histogram.h" |
| (...skipping 3454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3494 private: | 3493 private: |
| 3495 bool video_observed_; | 3494 bool video_observed_; |
| 3496 bool audio_observed_; | 3495 bool audio_observed_; |
| 3497 SequenceNumberUnwrapper unwrapper_; | 3496 SequenceNumberUnwrapper unwrapper_; |
| 3498 std::set<int64_t> received_packet_ids_; | 3497 std::set<int64_t> received_packet_ids_; |
| 3499 } test; | 3498 } test; |
| 3500 | 3499 |
| 3501 RunBaseTest(&test); | 3500 RunBaseTest(&test); |
| 3502 } | 3501 } |
| 3503 } // namespace webrtc | 3502 } // namespace webrtc |
| OLD | NEW |