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 |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
743 } | 743 } |
744 | 744 |
745 /* Generate CRC if required. */ | 745 /* Generate CRC if required. */ |
746 if ((instISAC->bandwidthKHz != isac8kHz) && (streamLenUB > 0)) { | 746 if ((instISAC->bandwidthKHz != isac8kHz) && (streamLenUB > 0)) { |
747 uint32_t crc; | 747 uint32_t crc; |
748 | 748 |
749 WebRtcIsac_GetCrc((int16_t*)(&(encoded[streamLenLB + 1])), | 749 WebRtcIsac_GetCrc((int16_t*)(&(encoded[streamLenLB + 1])), |
750 streamLenUB + garbageLen, &crc); | 750 streamLenUB + garbageLen, &crc); |
751 #ifndef WEBRTC_ARCH_BIG_ENDIAN | 751 #ifndef WEBRTC_ARCH_BIG_ENDIAN |
752 for (k = 0; k < LEN_CHECK_SUM_WORD8; k++) { | 752 for (k = 0; k < LEN_CHECK_SUM_WORD8; k++) { |
753 encoded[streamLen - LEN_CHECK_SUM_WORD8 + k] = crc >> (24 - k * 8); | 753 encoded[streamLen - LEN_CHECK_SUM_WORD8 + k] = |
754 (crc >> (24 - k * 8)) & 0xFF; | |
kwiberg-webrtc
2015/07/12 18:40:30
Why the explicit & 0xff?
Peter Kasting
2015/07/13 02:41:24
It should probably be a static_cast<uint8_t>() ins
Peter Kasting
2015/07/13 22:25:04
Changed to a static_cast.
kwiberg-webrtc
2015/07/15 01:10:53
Excellent. (That you changed to a cast. A static_c
| |
754 } | 755 } |
755 #else | 756 #else |
756 memcpy(&encoded[streamLenLB + streamLenUB + 1], &crc, LEN_CHECK_SUM_WORD8); | 757 memcpy(&encoded[streamLenLB + streamLenUB + 1], &crc, LEN_CHECK_SUM_WORD8); |
757 #endif | 758 #endif |
758 } | 759 } |
759 return streamLen; | 760 return streamLen; |
760 } | 761 } |
761 | 762 |
762 | 763 |
763 /****************************************************************************** | 764 /****************************************************************************** |
(...skipping 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2392 WebRtcIsacBw_GetBandwidthInfo(&instISAC->bwestimator_obj, | 2393 WebRtcIsacBw_GetBandwidthInfo(&instISAC->bwestimator_obj, |
2393 instISAC->decoderSamplingRateKHz, bwinfo); | 2394 instISAC->decoderSamplingRateKHz, bwinfo); |
2394 } | 2395 } |
2395 | 2396 |
2396 void WebRtcIsac_SetBandwidthInfo(ISACStruct* inst, | 2397 void WebRtcIsac_SetBandwidthInfo(ISACStruct* inst, |
2397 const IsacBandwidthInfo* bwinfo) { | 2398 const IsacBandwidthInfo* bwinfo) { |
2398 ISACMainStruct* instISAC = (ISACMainStruct*)inst; | 2399 ISACMainStruct* instISAC = (ISACMainStruct*)inst; |
2399 assert(instISAC->initFlag & BIT_MASK_ENC_INIT); | 2400 assert(instISAC->initFlag & BIT_MASK_ENC_INIT); |
2400 WebRtcIsacBw_SetBandwidthInfo(&instISAC->bwestimator_obj, bwinfo); | 2401 WebRtcIsacBw_SetBandwidthInfo(&instISAC->bwestimator_obj, bwinfo); |
2401 } | 2402 } |
OLD | NEW |