You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

222 lines
7.4KB

  1. /*
  2. * audio resampling
  3. * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. */
  20. /**
  21. * @file resample2.c
  22. * audio resampling
  23. * @author Michael Niedermayer <michaelni@gmx.at>
  24. */
  25. #include "avcodec.h"
  26. #include "common.h"
  27. #define PHASE_SHIFT 10
  28. #define PHASE_COUNT (1<<PHASE_SHIFT)
  29. #define PHASE_MASK (PHASE_COUNT-1)
  30. #define FILTER_SHIFT 15
  31. typedef struct AVResampleContext{
  32. short *filter_bank;
  33. int filter_length;
  34. int ideal_dst_incr;
  35. int dst_incr;
  36. int index;
  37. int frac;
  38. int src_incr;
  39. int compensation_distance;
  40. }AVResampleContext;
  41. /**
  42. * 0th order modified bessel function of the first kind.
  43. */
  44. double bessel(double x){
  45. double v=1;
  46. double t=1;
  47. int i;
  48. for(i=1; i<50; i++){
  49. t *= i;
  50. v += pow(x*x/4, i)/(t*t);
  51. }
  52. return v;
  53. }
  54. /**
  55. * builds a polyphase filterbank.
  56. * @param factor resampling factor
  57. * @param scale wanted sum of coefficients for each filter
  58. * @param type 0->cubic, 1->blackman nuttall windowed sinc, 2->kaiser windowed sinc beta=16
  59. */
  60. void av_build_filter(int16_t *filter, double factor, int tap_count, int phase_count, int scale, int type){
  61. int ph, i, v;
  62. double x, y, w, tab[tap_count];
  63. const int center= (tap_count-1)/2;
  64. /* if upsampling, only need to interpolate, no filter */
  65. if (factor > 1.0)
  66. factor = 1.0;
  67. for(ph=0;ph<phase_count;ph++) {
  68. double norm = 0;
  69. double e= 0;
  70. for(i=0;i<tap_count;i++) {
  71. x = M_PI * ((double)(i - center) - (double)ph / phase_count) * factor;
  72. if (x == 0) y = 1.0;
  73. else y = sin(x) / x;
  74. switch(type){
  75. case 0:{
  76. const float d= -0.5; //first order derivative = -0.5
  77. x = fabs(((double)(i - center) - (double)ph / phase_count) * factor);
  78. if(x<1.0) y= 1 - 3*x*x + 2*x*x*x + d*( -x*x + x*x*x);
  79. else y= d*(-4 + 8*x - 5*x*x + x*x*x);
  80. break;}
  81. case 1:
  82. w = 2.0*x / (factor*tap_count) + M_PI;
  83. y *= 0.3635819 - 0.4891775 * cos(w) + 0.1365995 * cos(2*w) - 0.0106411 * cos(3*w);
  84. break;
  85. case 2:
  86. w = 2.0*x / (factor*tap_count*M_PI);
  87. y *= bessel(16*sqrt(FFMAX(1-w*w, 0)));
  88. break;
  89. }
  90. tab[i] = y;
  91. norm += y;
  92. }
  93. /* normalize so that an uniform color remains the same */
  94. for(i=0;i<tap_count;i++) {
  95. v = clip(lrintf(tab[i] * scale / norm) + e, -32768, 32767);
  96. filter[ph * tap_count + i] = v;
  97. e += tab[i] * scale / norm - v;
  98. }
  99. }
  100. }
  101. /**
  102. * initalizes a audio resampler.
  103. * note, if either rate is not a integer then simply scale both rates up so they are
  104. */
  105. AVResampleContext *av_resample_init(int out_rate, int in_rate){
  106. AVResampleContext *c= av_mallocz(sizeof(AVResampleContext));
  107. double factor= FFMIN(out_rate / (double)in_rate, 1.0);
  108. memset(c, 0, sizeof(AVResampleContext));
  109. c->filter_length= ceil(16.0/factor);
  110. c->filter_bank= av_mallocz(c->filter_length*(PHASE_COUNT+1)*sizeof(short));
  111. av_build_filter(c->filter_bank, factor, c->filter_length, PHASE_COUNT, 1<<FILTER_SHIFT, 1);
  112. c->filter_bank[c->filter_length*PHASE_COUNT + (c->filter_length-1) + 1]= (1<<FILTER_SHIFT)-1;
  113. c->filter_bank[c->filter_length*PHASE_COUNT + (c->filter_length-1) + 2]= 1;
  114. c->src_incr= out_rate;
  115. c->ideal_dst_incr= c->dst_incr= in_rate * PHASE_COUNT;
  116. c->index= -PHASE_COUNT*((c->filter_length-1)/2);
  117. return c;
  118. }
  119. void av_resample_close(AVResampleContext *c){
  120. av_freep(&c->filter_bank);
  121. av_freep(&c);
  122. }
  123. void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensation_distance){
  124. // sample_delta += (c->ideal_dst_incr - c->dst_incr)*(int64_t)c->compensation_distance / c->ideal_dst_incr;
  125. c->compensation_distance= compensation_distance;
  126. c->dst_incr = c->ideal_dst_incr - c->ideal_dst_incr * (int64_t)sample_delta / compensation_distance;
  127. }
  128. /**
  129. * resamples.
  130. * @param src an array of unconsumed samples
  131. * @param consumed the number of samples of src which have been consumed are returned here
  132. * @param src_size the number of unconsumed samples available
  133. * @param dst_size the amount of space in samples available in dst
  134. * @param update_ctx if this is 0 then the context wont be modified, that way several channels can be resampled with the same context
  135. * @return the number of samples written in dst or -1 if an error occured
  136. */
  137. int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){
  138. int dst_index, i;
  139. int index= c->index;
  140. int frac= c->frac;
  141. int dst_incr_frac= c->dst_incr % c->src_incr;
  142. int dst_incr= c->dst_incr / c->src_incr;
  143. if(c->compensation_distance && c->compensation_distance < dst_size)
  144. dst_size= c->compensation_distance;
  145. for(dst_index=0; dst_index < dst_size; dst_index++){
  146. short *filter= c->filter_bank + c->filter_length*(index & PHASE_MASK);
  147. int sample_index= index >> PHASE_SHIFT;
  148. int val=0;
  149. if(sample_index < 0){
  150. for(i=0; i<c->filter_length; i++)
  151. val += src[ABS(sample_index + i)] * filter[i];
  152. }else if(sample_index + c->filter_length > src_size){
  153. break;
  154. }else{
  155. #if 0
  156. int64_t v=0;
  157. int sub_phase= (frac<<12) / c->src_incr;
  158. for(i=0; i<c->filter_length; i++){
  159. int64_t coeff= filter[i]*(4096 - sub_phase) + filter[i + c->filter_length]*sub_phase;
  160. v += src[sample_index + i] * coeff;
  161. }
  162. val= v>>12;
  163. #else
  164. for(i=0; i<c->filter_length; i++){
  165. val += src[sample_index + i] * filter[i];
  166. }
  167. #endif
  168. }
  169. val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT;
  170. dst[dst_index] = (unsigned)(val + 32768) > 65535 ? (val>>31) ^ 32767 : val;
  171. frac += dst_incr_frac;
  172. index += dst_incr;
  173. if(frac >= c->src_incr){
  174. frac -= c->src_incr;
  175. index++;
  176. }
  177. }
  178. if(update_ctx){
  179. if(c->compensation_distance){
  180. c->compensation_distance -= dst_index;
  181. if(!c->compensation_distance)
  182. c->dst_incr= c->ideal_dst_incr;
  183. }
  184. c->frac= frac;
  185. c->index=0;
  186. }
  187. *consumed= index >> PHASE_SHIFT;
  188. #if 0
  189. if(update_ctx && !c->compensation_distance){
  190. #undef rand
  191. av_resample_compensate(c, rand() % (8000*2) - 8000, 8000*2);
  192. av_log(NULL, AV_LOG_DEBUG, "%d %d %d\n", c->dst_incr, c->ideal_dst_incr, c->compensation_distance);
  193. }
  194. #endif
  195. return dst_index;
  196. }