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/source/qm_select.h" | 11 #include "webrtc/modules/video_coding/main/source/qm_select.h" |
12 | 12 |
13 #include <math.h> | 13 #include <math.h> |
14 | 14 |
15 #include "webrtc/modules/interface/module_common_types.h" | 15 #include "webrtc/modules/include/module_common_types.h" |
16 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" | 16 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" |
17 #include "webrtc/modules/video_coding/main/source/internal_defines.h" | 17 #include "webrtc/modules/video_coding/main/source/internal_defines.h" |
18 #include "webrtc/modules/video_coding/main/source/qm_select_data.h" | 18 #include "webrtc/modules/video_coding/main/source/qm_select_data.h" |
19 #include "webrtc/system_wrappers/include/trace.h" | 19 #include "webrtc/system_wrappers/include/trace.h" |
20 | 20 |
21 namespace webrtc { | 21 namespace webrtc { |
22 | 22 |
23 // QM-METHOD class | 23 // QM-METHOD class |
24 | 24 |
25 VCMQmMethod::VCMQmMethod() | 25 VCMQmMethod::VCMQmMethod() |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
949 | 949 |
950 // Set the UEP (unequal-protection across packets) on/off for the FEC. | 950 // Set the UEP (unequal-protection across packets) on/off for the FEC. |
951 bool VCMQmRobustness::SetUepProtection(uint8_t code_rate_delta, | 951 bool VCMQmRobustness::SetUepProtection(uint8_t code_rate_delta, |
952 float total_rate, | 952 float total_rate, |
953 uint8_t packet_loss, | 953 uint8_t packet_loss, |
954 bool frame_type) { | 954 bool frame_type) { |
955 // Default. | 955 // Default. |
956 return false; | 956 return false; |
957 } | 957 } |
958 } // namespace | 958 } // namespace |
OLD | NEW |