OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 /****************************************************************** | 11 /****************************************************************** |
12 | 12 |
13 iLBC Speech Coder ANSI-C Source Code | 13 iLBC Speech Coder ANSI-C Source Code |
14 | 14 |
15 WebRtcIlbcfix_GetSyncSeq.c | 15 WebRtcIlbcfix_GetSyncSeq.c |
16 | 16 |
17 ******************************************************************/ | 17 ******************************************************************/ |
18 | 18 |
19 #include "defines.h" | 19 #include "defines.h" |
20 #include "constants.h" | 20 #include "constants.h" |
21 #include "refiner.h" | 21 #include "refiner.h" |
22 #include "nearest_neighbor.h" | 22 #include "nearest_neighbor.h" |
23 | 23 |
24 /*----------------------------------------------------------------* | 24 /*----------------------------------------------------------------* |
25 * get the pitch-synchronous sample sequence | 25 * get the pitch-synchronous sample sequence |
26 *---------------------------------------------------------------*/ | 26 *---------------------------------------------------------------*/ |
27 | 27 |
28 void WebRtcIlbcfix_GetSyncSeq( | 28 void WebRtcIlbcfix_GetSyncSeq( |
29 int16_t *idata, /* (i) original data */ | 29 int16_t *idata, /* (i) original data */ |
30 int16_t idatal, /* (i) dimension of data */ | 30 size_t idatal, /* (i) dimension of data */ |
31 int16_t centerStartPos, /* (i) where current block starts */ | 31 size_t centerStartPos, /* (i) where current block starts */ |
32 int16_t *period, /* (i) rough-pitch-period array (Q-2) */ | 32 size_t *period, /* (i) rough-pitch-period array (Q-2) */ |
33 int16_t *plocs, /* (i) where periods of period array are taken (Q-2) */ | 33 const size_t *plocs, /* (i) where periods of period array are taken (Q-2) */ |
34 size_t periodl, /* (i) dimension period array */ | 34 size_t periodl, /* (i) dimension period array */ |
35 int16_t hl, /* (i) 2*hl+1 is the number of sequences */ | 35 size_t hl, /* (i) 2*hl+1 is the number of sequences */ |
36 int16_t *surround /* (i/o) The contribution from this sequence | 36 int16_t *surround /* (i/o) The contribution from this sequence |
37 summed with earlier contributions */ | 37 summed with earlier contributions */ |
38 ){ | 38 ){ |
39 size_t i; | 39 size_t i, centerEndPos, q; |
40 int16_t centerEndPos,q; | |
41 /* Stack based */ | 40 /* Stack based */ |
42 int16_t lagBlock[2*ENH_HL+1]; | 41 size_t lagBlock[2 * ENH_HL + 1]; |
43 int16_t blockStartPos[2*ENH_HL+1]; /* Defines the position to search around (Q
2) */ | 42 size_t blockStartPos[2 * ENH_HL + 1]; /* The position to search around (Q2) */ |
44 int16_t plocs2[ENH_PLOCSL]; | 43 size_t plocs2[ENH_PLOCSL]; |
45 | 44 |
46 centerEndPos=centerStartPos+ENH_BLOCKL-1; | 45 centerEndPos = centerStartPos + ENH_BLOCKL - 1; |
47 | 46 |
48 /* present (find predicted lag from this position) */ | 47 /* present (find predicted lag from this position) */ |
49 | 48 |
50 WebRtcIlbcfix_NearestNeighbor(lagBlock + hl, | 49 WebRtcIlbcfix_NearestNeighbor(lagBlock + hl, |
51 plocs, | 50 plocs, |
52 (int16_t)(2 * (centerStartPos + centerEndPos)), | 51 2 * (centerStartPos + centerEndPos), |
53 periodl); | 52 periodl); |
54 | 53 |
55 blockStartPos[hl] = (int16_t)(4 * centerStartPos); | 54 blockStartPos[hl] = 4 * centerStartPos; |
56 | 55 |
57 /* past (find predicted position and perform a refined | 56 /* past (find predicted position and perform a refined |
58 search to find the best sequence) */ | 57 search to find the best sequence) */ |
59 | 58 |
60 for(q=hl-1;q>=0;q--) { | 59 for (q = hl; q > 0; q--) { |
61 blockStartPos[q]=blockStartPos[q+1]-period[lagBlock[q+1]]; | 60 size_t qq = q - 1; |
| 61 blockStartPos[qq] = blockStartPos[q] - period[lagBlock[q]]; |
62 | 62 |
63 WebRtcIlbcfix_NearestNeighbor( | 63 WebRtcIlbcfix_NearestNeighbor( |
64 lagBlock + q, | 64 lagBlock + qq, |
65 plocs, | 65 plocs, |
66 (int16_t)(blockStartPos[q] + 4 * ENH_BLOCKL_HALF - | 66 blockStartPos[qq] + 4 * ENH_BLOCKL_HALF - period[lagBlock[q]], |
67 period[lagBlock[q + 1]]), | |
68 periodl); | 67 periodl); |
69 | 68 |
70 if (blockStartPos[q] - 4 * ENH_OVERHANG >= 0) { | 69 if (blockStartPos[qq] >= (4 * ENH_OVERHANG)) { |
71 | 70 |
72 /* Find the best possible sequence in the 4 times upsampled | 71 /* Find the best possible sequence in the 4 times upsampled |
73 domain around blockStartPos+q */ | 72 domain around blockStartPos+q */ |
74 WebRtcIlbcfix_Refiner(blockStartPos+q,idata,idatal, | 73 WebRtcIlbcfix_Refiner(blockStartPos + qq, idata, idatal, centerStartPos, |
75 centerStartPos,blockStartPos[q],surround,WebRtcIlbcf
ix_kEnhWt[q]); | 74 blockStartPos[qq], surround, |
| 75 WebRtcIlbcfix_kEnhWt[qq]); |
76 | 76 |
77 } else { | 77 } else { |
78 /* Don't add anything since this sequence would | 78 /* Don't add anything since this sequence would |
79 be outside the buffer */ | 79 be outside the buffer */ |
80 } | 80 } |
81 } | 81 } |
82 | 82 |
83 /* future (find predicted position and perform a refined | 83 /* future (find predicted position and perform a refined |
84 search to find the best sequence) */ | 84 search to find the best sequence) */ |
85 | 85 |
86 for(i=0;i<periodl;i++) { | 86 for (i = 0; i < periodl; i++) { |
87 plocs2[i]=(plocs[i]-period[i]); | 87 plocs2[i] = plocs[i] - period[i]; |
88 } | 88 } |
89 | 89 |
90 for (q = hl + 1; q <= (int16_t)(2 * hl); q++) { | 90 for (q = hl + 1; q <= (2 * hl); q++) { |
91 | 91 |
92 WebRtcIlbcfix_NearestNeighbor( | 92 WebRtcIlbcfix_NearestNeighbor( |
93 lagBlock + q, | 93 lagBlock + q, |
94 plocs2, | 94 plocs2, |
95 (int16_t)(blockStartPos[q - 1] + 4 * ENH_BLOCKL_HALF), | 95 blockStartPos[q - 1] + 4 * ENH_BLOCKL_HALF, |
96 periodl); | 96 periodl); |
97 | 97 |
98 blockStartPos[q]=blockStartPos[q-1]+period[lagBlock[q]]; | 98 blockStartPos[q]=blockStartPos[q-1]+period[lagBlock[q]]; |
99 | 99 |
100 if (blockStartPos[q] + 4 * (ENH_BLOCKL + ENH_OVERHANG) < 4 * idatal) { | 100 if (blockStartPos[q] < (4 * (idatal + ENH_BLOCKL + ENH_OVERHANG))) { |
101 | 101 |
102 /* Find the best possible sequence in the 4 times upsampled | 102 /* Find the best possible sequence in the 4 times upsampled |
103 domain around blockStartPos+q */ | 103 domain around blockStartPos+q */ |
104 WebRtcIlbcfix_Refiner(blockStartPos+q, idata, idatal, | 104 WebRtcIlbcfix_Refiner(blockStartPos + q, idata, idatal, centerStartPos, |
105 centerStartPos,blockStartPos[q],surround,WebRtcIlbcf
ix_kEnhWt[2*hl-q]); | 105 blockStartPos[q], surround, |
| 106 WebRtcIlbcfix_kEnhWt[2 * hl - q]); |
106 | 107 |
107 } | 108 } else { |
108 else { | |
109 /* Don't add anything since this sequence would | 109 /* Don't add anything since this sequence would |
110 be outside the buffer */ | 110 be outside the buffer */ |
111 } | 111 } |
112 } | 112 } |
113 } | 113 } |
OLD | NEW |