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 10 matching lines...) Expand all Loading... |
21 #include <netinet/in.h> | 21 #include <netinet/in.h> |
22 #endif | 22 #endif |
23 | 23 |
24 #include <assert.h> | 24 #include <assert.h> |
25 | 25 |
26 #include <algorithm> | 26 #include <algorithm> |
27 | 27 |
28 #include "webrtc/typedefs.h" | 28 #include "webrtc/typedefs.h" |
29 // needed for NetEqDecoder | 29 // needed for NetEqDecoder |
30 #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" | 30 #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" |
31 #include "webrtc/modules/audio_coding/neteq/interface/neteq.h" | 31 #include "webrtc/modules/audio_coding/neteq/include/neteq.h" |
32 | 32 |
33 /************************/ | 33 /************************/ |
34 /* Define payload types */ | 34 /* Define payload types */ |
35 /************************/ | 35 /************************/ |
36 | 36 |
37 #include "PayloadTypes.h" | 37 #include "PayloadTypes.h" |
38 | 38 |
39 /*********************/ | 39 /*********************/ |
40 /* Misc. definitions */ | 40 /* Misc. definitions */ |
41 /*********************/ | 41 /*********************/ |
(...skipping 1795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1837 memmove(ptrL + stride, ptrL, ptrR - ptrL); | 1837 memmove(ptrL + stride, ptrL, ptrR - ptrL); |
1838 | 1838 |
1839 // copy from temp to left pointer | 1839 // copy from temp to left pointer |
1840 memcpy(ptrL, temp, stride); | 1840 memcpy(ptrL, temp, stride); |
1841 | 1841 |
1842 // advance pointers | 1842 // advance pointers |
1843 ptrL += stride * 2; | 1843 ptrL += stride * 2; |
1844 ptrR += stride; | 1844 ptrR += stride; |
1845 } | 1845 } |
1846 } | 1846 } |
OLD | NEW |