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.

323 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. * @file
  23. * audio resampling
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "libavutil/avassert.h"
  27. #include "avcodec.h"
  28. #include "dsputil.h"
  29. #ifndef CONFIG_RESAMPLE_HP
  30. #define FILTER_SHIFT 15
  31. #define FELEM int16_t
  32. #define FELEM2 int32_t
  33. #define FELEML int64_t
  34. #define FELEM_MAX INT16_MAX
  35. #define FELEM_MIN INT16_MIN
  36. #define WINDOW_TYPE 9
  37. #elif !defined(CONFIG_RESAMPLE_AUDIOPHILE_KIDDY_MODE)
  38. #define FILTER_SHIFT 30
  39. #define FELEM int32_t
  40. #define FELEM2 int64_t
  41. #define FELEML int64_t
  42. #define FELEM_MAX INT32_MAX
  43. #define FELEM_MIN INT32_MIN
  44. #define WINDOW_TYPE 12
  45. #else
  46. #define FILTER_SHIFT 0
  47. #define FELEM double
  48. #define FELEM2 double
  49. #define FELEML double
  50. #define WINDOW_TYPE 24
  51. #endif
  52. typedef struct AVResampleContext{
  53. const AVClass *av_class;
  54. FELEM *filter_bank;
  55. int filter_length;
  56. int ideal_dst_incr;
  57. int dst_incr;
  58. int index;
  59. int frac;
  60. int src_incr;
  61. int compensation_distance;
  62. int phase_shift;
  63. int phase_mask;
  64. int linear;
  65. }AVResampleContext;
  66. /**
  67. * 0th order modified bessel function of the first kind.
  68. */
  69. static double bessel(double x){
  70. double v=1;
  71. double lastv=0;
  72. double t=1;
  73. int i;
  74. x= x*x/4;
  75. for(i=1; v != lastv; i++){
  76. lastv=v;
  77. t *= x/(i*i);
  78. v += t;
  79. }
  80. return v;
  81. }
  82. /**
  83. * Build a polyphase filterbank.
  84. * @param factor resampling factor
  85. * @param scale wanted sum of coefficients for each filter
  86. * @param type 0->cubic, 1->blackman nuttall windowed sinc, 2..16->kaiser windowed sinc beta=2..16
  87. * @return 0 on success, negative on error
  88. */
  89. static int build_filter(FELEM *filter, double factor, int tap_count, int phase_count, int scale, int type){
  90. int ph, i;
  91. double x, y, w;
  92. double *tab = av_malloc(tap_count * sizeof(*tab));
  93. const int center= (tap_count-1)/2;
  94. if (!tab)
  95. return AVERROR(ENOMEM);
  96. /* if upsampling, only need to interpolate, no filter */
  97. if (factor > 1.0)
  98. factor = 1.0;
  99. for(ph=0;ph<phase_count;ph++) {
  100. double norm = 0;
  101. for(i=0;i<tap_count;i++) {
  102. x = M_PI * ((double)(i - center) - (double)ph / phase_count) * factor;
  103. if (x == 0) y = 1.0;
  104. else y = sin(x) / x;
  105. switch(type){
  106. case 0:{
  107. const float d= -0.5; //first order derivative = -0.5
  108. x = fabs(((double)(i - center) - (double)ph / phase_count) * factor);
  109. if(x<1.0) y= 1 - 3*x*x + 2*x*x*x + d*( -x*x + x*x*x);
  110. else y= d*(-4 + 8*x - 5*x*x + x*x*x);
  111. break;}
  112. case 1:
  113. w = 2.0*x / (factor*tap_count) + M_PI;
  114. y *= 0.3635819 - 0.4891775 * cos(w) + 0.1365995 * cos(2*w) - 0.0106411 * cos(3*w);
  115. break;
  116. default:
  117. w = 2.0*x / (factor*tap_count*M_PI);
  118. y *= bessel(type*sqrt(FFMAX(1-w*w, 0)));
  119. break;
  120. }
  121. tab[i] = y;
  122. norm += y;
  123. }
  124. /* normalize so that an uniform color remains the same */
  125. for(i=0;i<tap_count;i++) {
  126. #ifdef CONFIG_RESAMPLE_AUDIOPHILE_KIDDY_MODE
  127. filter[ph * tap_count + i] = tab[i] / norm;
  128. #else
  129. filter[ph * tap_count + i] = av_clip(lrintf(tab[i] * scale / norm), FELEM_MIN, FELEM_MAX);
  130. #endif
  131. }
  132. }
  133. #if 0
  134. {
  135. #define LEN 1024
  136. int j,k;
  137. double sine[LEN + tap_count];
  138. double filtered[LEN];
  139. double maxff=-2, minff=2, maxsf=-2, minsf=2;
  140. for(i=0; i<LEN; i++){
  141. double ss=0, sf=0, ff=0;
  142. for(j=0; j<LEN+tap_count; j++)
  143. sine[j]= cos(i*j*M_PI/LEN);
  144. for(j=0; j<LEN; j++){
  145. double sum=0;
  146. ph=0;
  147. for(k=0; k<tap_count; k++)
  148. sum += filter[ph * tap_count + k] * sine[k+j];
  149. filtered[j]= sum / (1<<FILTER_SHIFT);
  150. ss+= sine[j + center] * sine[j + center];
  151. ff+= filtered[j] * filtered[j];
  152. sf+= sine[j + center] * filtered[j];
  153. }
  154. ss= sqrt(2*ss/LEN);
  155. ff= sqrt(2*ff/LEN);
  156. sf= 2*sf/LEN;
  157. maxff= FFMAX(maxff, ff);
  158. minff= FFMIN(minff, ff);
  159. maxsf= FFMAX(maxsf, sf);
  160. minsf= FFMIN(minsf, sf);
  161. if(i%11==0){
  162. av_log(NULL, AV_LOG_ERROR, "i:%4d ss:%f ff:%13.6e-%13.6e sf:%13.6e-%13.6e\n", i, ss, maxff, minff, maxsf, minsf);
  163. minff=minsf= 2;
  164. maxff=maxsf= -2;
  165. }
  166. }
  167. }
  168. #endif
  169. av_free(tab);
  170. return 0;
  171. }
  172. AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_size, int phase_shift, int linear, double cutoff){
  173. AVResampleContext *c= av_mallocz(sizeof(AVResampleContext));
  174. double factor= FFMIN(out_rate * cutoff / in_rate, 1.0);
  175. int phase_count= 1<<phase_shift;
  176. if (!c)
  177. return NULL;
  178. c->phase_shift= phase_shift;
  179. c->phase_mask= phase_count-1;
  180. c->linear= linear;
  181. c->filter_length= FFMAX((int)ceil(filter_size/factor), 1);
  182. c->filter_bank= av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
  183. if (!c->filter_bank)
  184. goto error;
  185. if (build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, WINDOW_TYPE))
  186. goto error;
  187. memcpy(&c->filter_bank[c->filter_length*phase_count+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
  188. c->filter_bank[c->filter_length*phase_count]= c->filter_bank[c->filter_length - 1];
  189. if(!av_reduce(&c->src_incr, &c->dst_incr, out_rate, in_rate * (int64_t)phase_count, INT32_MAX/2))
  190. goto error;
  191. c->ideal_dst_incr= c->dst_incr;
  192. c->index= -phase_count*((c->filter_length-1)/2);
  193. return c;
  194. error:
  195. av_free(c->filter_bank);
  196. av_free(c);
  197. return NULL;
  198. }
  199. void av_resample_close(AVResampleContext *c){
  200. av_freep(&c->filter_bank);
  201. av_freep(&c);
  202. }
  203. void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensation_distance){
  204. // sample_delta += (c->ideal_dst_incr - c->dst_incr)*(int64_t)c->compensation_distance / c->ideal_dst_incr;
  205. c->compensation_distance= compensation_distance;
  206. c->dst_incr = c->ideal_dst_incr - c->ideal_dst_incr * (int64_t)sample_delta / compensation_distance;
  207. }
  208. int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){
  209. int dst_index, i;
  210. int index= c->index;
  211. int frac= c->frac;
  212. int dst_incr_frac= c->dst_incr % c->src_incr;
  213. int dst_incr= c->dst_incr / c->src_incr;
  214. int compensation_distance= c->compensation_distance;
  215. if(compensation_distance == 0 && c->filter_length == 1 && c->phase_shift==0){
  216. int64_t index2= ((int64_t)index)<<32;
  217. int64_t incr= (1LL<<32) * c->dst_incr / c->src_incr;
  218. dst_size= FFMIN(dst_size, (src_size-1-index) * (int64_t)c->src_incr / c->dst_incr);
  219. for(dst_index=0; dst_index < dst_size; dst_index++){
  220. dst[dst_index] = src[index2>>32];
  221. index2 += incr;
  222. }
  223. index += dst_index * dst_incr;
  224. index += (frac + dst_index * (int64_t)dst_incr_frac) / c->src_incr;
  225. frac = (frac + dst_index * (int64_t)dst_incr_frac) % c->src_incr;
  226. }else{
  227. for(dst_index=0; dst_index < dst_size; dst_index++){
  228. FELEM *filter= c->filter_bank + c->filter_length*(index & c->phase_mask);
  229. int sample_index= index >> c->phase_shift;
  230. FELEM2 val=0;
  231. if(sample_index < 0){
  232. for(i=0; i<c->filter_length; i++)
  233. val += src[FFABS(sample_index + i) % src_size] * filter[i];
  234. }else if(sample_index + c->filter_length > src_size){
  235. break;
  236. }else if(c->linear){
  237. FELEM2 v2=0;
  238. for(i=0; i<c->filter_length; i++){
  239. val += src[sample_index + i] * (FELEM2)filter[i];
  240. v2 += src[sample_index + i] * (FELEM2)filter[i + c->filter_length];
  241. }
  242. val+=(v2-val)*(FELEML)frac / c->src_incr;
  243. }else{
  244. for(i=0; i<c->filter_length; i++){
  245. val += src[sample_index + i] * (FELEM2)filter[i];
  246. }
  247. }
  248. #ifdef CONFIG_RESAMPLE_AUDIOPHILE_KIDDY_MODE
  249. dst[dst_index] = av_clip_int16(lrintf(val));
  250. #else
  251. val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT;
  252. dst[dst_index] = (unsigned)(val + 32768) > 65535 ? (val>>31) ^ 32767 : val;
  253. #endif
  254. frac += dst_incr_frac;
  255. index += dst_incr;
  256. if(frac >= c->src_incr){
  257. frac -= c->src_incr;
  258. index++;
  259. }
  260. if(dst_index + 1 == compensation_distance){
  261. compensation_distance= 0;
  262. dst_incr_frac= c->ideal_dst_incr % c->src_incr;
  263. dst_incr= c->ideal_dst_incr / c->src_incr;
  264. }
  265. }
  266. }
  267. *consumed= FFMAX(index, 0) >> c->phase_shift;
  268. if(index>=0) index &= c->phase_mask;
  269. if(compensation_distance){
  270. compensation_distance -= dst_index;
  271. av_assert2(compensation_distance > 0);
  272. }
  273. if(update_ctx){
  274. c->frac= frac;
  275. c->index= index;
  276. c->dst_incr= dst_incr_frac + c->src_incr*dst_incr;
  277. c->compensation_distance= compensation_distance;
  278. }
  279. #if 0
  280. if(update_ctx && !c->compensation_distance){
  281. #undef rand
  282. av_resample_compensate(c, rand() % (8000*2) - 8000, 8000*2);
  283. av_log(NULL, AV_LOG_DEBUG, "%d %d %d\n", c->dst_incr, c->ideal_dst_incr, c->compensation_distance);
  284. }
  285. #endif
  286. return dst_index;
  287. }