| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 | 10 |
| 11 #include "webrtc/modules/video_coding/main/test/receiver_tests.h" | 11 #include "webrtc/modules/video_coding/main/test/receiver_tests.h" |
| 12 #include "webrtc/modules/video_coding/main/test/vcm_payload_sink_factory.h" | 12 #include "webrtc/modules/video_coding/main/test/vcm_payload_sink_factory.h" |
| 13 #include "webrtc/system_wrappers/interface/trace.h" | 13 #include "webrtc/system_wrappers/include/trace.h" |
| 14 #include "webrtc/test/testsupport/fileutils.h" | 14 #include "webrtc/test/testsupport/fileutils.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 const bool kConfigProtectionEnabled = true; | 18 const bool kConfigProtectionEnabled = true; |
| 19 const webrtc::VCMVideoProtection kConfigProtectionMethod = | 19 const webrtc::VCMVideoProtection kConfigProtectionMethod = |
| 20 webrtc::kProtectionNack; | 20 webrtc::kProtectionNack; |
| 21 const float kConfigLossRate = 0.0f; | 21 const float kConfigLossRate = 0.0f; |
| 22 const bool kConfigReordering = false; | 22 const bool kConfigReordering = false; |
| 23 const int64_t kConfigRttMs = 0; | 23 const int64_t kConfigRttMs = 0; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 printf("Failed\n"); | 79 printf("Failed\n"); |
| 80 return -1; | 80 return -1; |
| 81 case 0: | 81 case 0: |
| 82 printf("Timeout\n"); | 82 printf("Timeout\n"); |
| 83 return -1; | 83 return -1; |
| 84 } | 84 } |
| 85 | 85 |
| 86 webrtc::Trace::ReturnTrace(); | 86 webrtc::Trace::ReturnTrace(); |
| 87 return 0; | 87 return 0; |
| 88 } | 88 } |
| OLD | NEW |