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.

321 lines
10KB

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