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.

309 lines
10KB

  1. /*
  2. * audio resampling
  3. * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. */
  22. /**
  23. * @file resample2.c
  24. * audio resampling
  25. * @author Michael Niedermayer <michaelni@gmx.at>
  26. */
  27. #include "avcodec.h"
  28. #include "common.h"
  29. #include "dsputil.h"
  30. #ifndef CONFIG_RESAMPLE_HP
  31. #define FILTER_SHIFT 15
  32. #define FELEM int16_t
  33. #define FELEM2 int32_t
  34. #define FELEM_MAX INT16_MAX
  35. #define FELEM_MIN INT16_MIN
  36. #else
  37. #define FILTER_SHIFT 30
  38. #define FELEM int32_t
  39. #define FELEM2 int64_t
  40. #define FELEM_MAX INT32_MAX
  41. #define FELEM_MIN INT32_MIN
  42. #endif
  43. typedef struct AVResampleContext{
  44. FELEM *filter_bank;
  45. int filter_length;
  46. int ideal_dst_incr;
  47. int dst_incr;
  48. int index;
  49. int frac;
  50. int src_incr;
  51. int compensation_distance;
  52. int phase_shift;
  53. int phase_mask;
  54. int linear;
  55. }AVResampleContext;
  56. /**
  57. * 0th order modified bessel function of the first kind.
  58. */
  59. static double bessel(double x){
  60. double v=1;
  61. double t=1;
  62. int i;
  63. for(i=1; i<50; i++){
  64. t *= i;
  65. v += pow(x*x/4, i)/(t*t);
  66. }
  67. return v;
  68. }
  69. /**
  70. * builds a polyphase filterbank.
  71. * @param factor resampling factor
  72. * @param scale wanted sum of coefficients for each filter
  73. * @param type 0->cubic, 1->blackman nuttall windowed sinc, 2..16->kaiser windowed sinc beta=2..16
  74. */
  75. void av_build_filter(FELEM *filter, double factor, int tap_count, int phase_count, int scale, int type){
  76. int ph, i, v;
  77. double x, y, w, tab[tap_count];
  78. const int center= (tap_count-1)/2;
  79. /* if upsampling, only need to interpolate, no filter */
  80. if (factor > 1.0)
  81. factor = 1.0;
  82. for(ph=0;ph<phase_count;ph++) {
  83. double norm = 0;
  84. for(i=0;i<tap_count;i++) {
  85. x = M_PI * ((double)(i - center) - (double)ph / phase_count) * factor;
  86. if (x == 0) y = 1.0;
  87. else y = sin(x) / x;
  88. switch(type){
  89. case 0:{
  90. const float d= -0.5; //first order derivative = -0.5
  91. x = fabs(((double)(i - center) - (double)ph / phase_count) * factor);
  92. if(x<1.0) y= 1 - 3*x*x + 2*x*x*x + d*( -x*x + x*x*x);
  93. else y= d*(-4 + 8*x - 5*x*x + x*x*x);
  94. break;}
  95. case 1:
  96. w = 2.0*x / (factor*tap_count) + M_PI;
  97. y *= 0.3635819 - 0.4891775 * cos(w) + 0.1365995 * cos(2*w) - 0.0106411 * cos(3*w);
  98. break;
  99. default:
  100. w = 2.0*x / (factor*tap_count*M_PI);
  101. y *= bessel(type*sqrt(FFMAX(1-w*w, 0)));
  102. break;
  103. }
  104. tab[i] = y;
  105. norm += y;
  106. }
  107. /* normalize so that an uniform color remains the same */
  108. for(i=0;i<tap_count;i++) {
  109. v = av_clip(lrintf(tab[i] * scale / norm), FELEM_MIN, FELEM_MAX);
  110. filter[ph * tap_count + i] = v;
  111. }
  112. }
  113. #if 0
  114. {
  115. #define LEN 1024
  116. int j,k;
  117. double sine[LEN + tap_count];
  118. double filtered[LEN];
  119. double maxff=-2, minff=2, maxsf=-2, minsf=2;
  120. for(i=0; i<LEN; i++){
  121. double ss=0, sf=0, ff=0;
  122. for(j=0; j<LEN+tap_count; j++)
  123. sine[j]= cos(i*j*M_PI/LEN);
  124. for(j=0; j<LEN; j++){
  125. double sum=0;
  126. ph=0;
  127. for(k=0; k<tap_count; k++)
  128. sum += filter[ph * tap_count + k] * sine[k+j];
  129. filtered[j]= sum / (1<<FILTER_SHIFT);
  130. ss+= sine[j + center] * sine[j + center];
  131. ff+= filtered[j] * filtered[j];
  132. sf+= sine[j + center] * filtered[j];
  133. }
  134. ss= sqrt(2*ss/LEN);
  135. ff= sqrt(2*ff/LEN);
  136. sf= 2*sf/LEN;
  137. maxff= FFMAX(maxff, ff);
  138. minff= FFMIN(minff, ff);
  139. maxsf= FFMAX(maxsf, sf);
  140. minsf= FFMIN(minsf, sf);
  141. if(i%11==0){
  142. av_log(NULL, AV_LOG_ERROR, "i:%4d ss:%f ff:%f-%f sf:%f-%f\n", i, ss, maxff, minff, maxsf, minsf);
  143. minff=minsf= 2;
  144. maxff=maxsf= -2;
  145. }
  146. }
  147. }
  148. #endif
  149. }
  150. /**
  151. * initalizes a audio resampler.
  152. * note, if either rate is not a integer then simply scale both rates up so they are
  153. */
  154. AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_size, int phase_shift, int linear, double cutoff){
  155. AVResampleContext *c= av_mallocz(sizeof(AVResampleContext));
  156. double factor= FFMIN(out_rate * cutoff / in_rate, 1.0);
  157. int phase_count= 1<<phase_shift;
  158. c->phase_shift= phase_shift;
  159. c->phase_mask= phase_count-1;
  160. c->linear= linear;
  161. c->filter_length= FFMAX((int)ceil(filter_size/factor), 1);
  162. c->filter_bank= av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
  163. av_build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, 1);
  164. memcpy(&c->filter_bank[c->filter_length*phase_count+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
  165. c->filter_bank[c->filter_length*phase_count]= c->filter_bank[c->filter_length - 1];
  166. c->src_incr= out_rate;
  167. c->ideal_dst_incr= c->dst_incr= in_rate * phase_count;
  168. c->index= -phase_count*((c->filter_length-1)/2);
  169. return c;
  170. }
  171. void av_resample_close(AVResampleContext *c){
  172. av_freep(&c->filter_bank);
  173. av_freep(&c);
  174. }
  175. /**
  176. * Compensates samplerate/timestamp drift. The compensation is done by changing
  177. * the resampler parameters, so no audible clicks or similar distortions ocur
  178. * @param compensation_distance distance in output samples over which the compensation should be performed
  179. * @param sample_delta number of output samples which should be output less
  180. *
  181. * example: av_resample_compensate(c, 10, 500)
  182. * here instead of 510 samples only 500 samples would be output
  183. *
  184. * note, due to rounding the actual compensation might be slightly different,
  185. * especially if the compensation_distance is large and the in_rate used during init is small
  186. */
  187. void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensation_distance){
  188. // sample_delta += (c->ideal_dst_incr - c->dst_incr)*(int64_t)c->compensation_distance / c->ideal_dst_incr;
  189. c->compensation_distance= compensation_distance;
  190. c->dst_incr = c->ideal_dst_incr - c->ideal_dst_incr * (int64_t)sample_delta / compensation_distance;
  191. }
  192. /**
  193. * resamples.
  194. * @param src an array of unconsumed samples
  195. * @param consumed the number of samples of src which have been consumed are returned here
  196. * @param src_size the number of unconsumed samples available
  197. * @param dst_size the amount of space in samples available in dst
  198. * @param update_ctx if this is 0 then the context wont be modified, that way several channels can be resampled with the same context
  199. * @return the number of samples written in dst or -1 if an error occured
  200. */
  201. int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){
  202. int dst_index, i;
  203. int index= c->index;
  204. int frac= c->frac;
  205. int dst_incr_frac= c->dst_incr % c->src_incr;
  206. int dst_incr= c->dst_incr / c->src_incr;
  207. int compensation_distance= c->compensation_distance;
  208. if(compensation_distance == 0 && c->filter_length == 1 && c->phase_shift==0){
  209. int64_t index2= ((int64_t)index)<<32;
  210. int64_t incr= (1LL<<32) * c->dst_incr / c->src_incr;
  211. dst_size= FFMIN(dst_size, (src_size-1-index) * (int64_t)c->src_incr / c->dst_incr);
  212. for(dst_index=0; dst_index < dst_size; dst_index++){
  213. dst[dst_index] = src[index2>>32];
  214. index2 += incr;
  215. }
  216. frac += dst_index * dst_incr_frac;
  217. index += dst_index * dst_incr;
  218. index += frac / c->src_incr;
  219. frac %= c->src_incr;
  220. }else{
  221. for(dst_index=0; dst_index < dst_size; dst_index++){
  222. FELEM *filter= c->filter_bank + c->filter_length*(index & c->phase_mask);
  223. int sample_index= index >> c->phase_shift;
  224. FELEM2 val=0;
  225. if(sample_index < 0){
  226. for(i=0; i<c->filter_length; i++)
  227. val += src[FFABS(sample_index + i) % src_size] * filter[i];
  228. }else if(sample_index + c->filter_length > src_size){
  229. break;
  230. }else if(c->linear){
  231. int64_t v=0;
  232. int sub_phase= (frac<<8) / c->src_incr;
  233. for(i=0; i<c->filter_length; i++){
  234. int64_t coeff= filter[i]*(256 - sub_phase) + filter[i + c->filter_length]*sub_phase;
  235. v += src[sample_index + i] * coeff;
  236. }
  237. val= v>>8;
  238. }else{
  239. for(i=0; i<c->filter_length; i++){
  240. val += src[sample_index + i] * (FELEM2)filter[i];
  241. }
  242. }
  243. val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT;
  244. dst[dst_index] = (unsigned)(val + 32768) > 65535 ? (val>>31) ^ 32767 : val;
  245. frac += dst_incr_frac;
  246. index += dst_incr;
  247. if(frac >= c->src_incr){
  248. frac -= c->src_incr;
  249. index++;
  250. }
  251. if(dst_index + 1 == compensation_distance){
  252. compensation_distance= 0;
  253. dst_incr_frac= c->ideal_dst_incr % c->src_incr;
  254. dst_incr= c->ideal_dst_incr / c->src_incr;
  255. }
  256. }
  257. }
  258. *consumed= FFMAX(index, 0) >> c->phase_shift;
  259. if(index>=0) index &= c->phase_mask;
  260. if(compensation_distance){
  261. compensation_distance -= dst_index;
  262. assert(compensation_distance > 0);
  263. }
  264. if(update_ctx){
  265. c->frac= frac;
  266. c->index= index;
  267. c->dst_incr= dst_incr_frac + c->src_incr*dst_incr;
  268. c->compensation_distance= compensation_distance;
  269. }
  270. #if 0
  271. if(update_ctx && !c->compensation_distance){
  272. #undef rand
  273. av_resample_compensate(c, rand() % (8000*2) - 8000, 8000*2);
  274. av_log(NULL, AV_LOG_DEBUG, "%d %d %d\n", c->dst_incr, c->ideal_dst_incr, c->compensation_distance);
  275. }
  276. #endif
  277. return dst_index;
  278. }