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.

258 lines
12KB

  1. /*
  2. * Copyright (C) 2011 Michael Niedermayer (michaelni@gmx.at)
  3. *
  4. * This file is part of libswresample
  5. *
  6. * libswresample is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * libswresample is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with libswresample; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/avassert.h"
  21. #include "libavutil/common.h"
  22. #include "libavutil/audioconvert.h"
  23. #include "swresample.h"
  24. #undef fprintf
  25. #define SAMPLES 1000
  26. #define ASSERT_LEVEL 2
  27. static double get(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f){
  28. const uint8_t *p;
  29. if(av_sample_fmt_is_planar(f)){
  30. f= av_get_alt_sample_fmt(f, 0);
  31. p= a[ch];
  32. }else{
  33. p= a[0];
  34. index= ch + index*ch_count;
  35. }
  36. switch(f){
  37. case AV_SAMPLE_FMT_U8 : return ((const uint8_t*)p)[index]/255.0*2-1.0;
  38. case AV_SAMPLE_FMT_S16: return ((const int16_t*)p)[index]/32767.0;
  39. case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0;
  40. case AV_SAMPLE_FMT_FLT: return ((const float *)p)[index];
  41. case AV_SAMPLE_FMT_DBL: return ((const double *)p)[index];
  42. default: av_assert0(0);
  43. }
  44. }
  45. static void set(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f, double v){
  46. uint8_t *p;
  47. if(av_sample_fmt_is_planar(f)){
  48. f= av_get_alt_sample_fmt(f, 0);
  49. p= a[ch];
  50. }else{
  51. p= a[0];
  52. index= ch + index*ch_count;
  53. }
  54. switch(f){
  55. case AV_SAMPLE_FMT_U8 : ((uint8_t*)p)[index]= (v+1.0)*255.0/2; break;
  56. case AV_SAMPLE_FMT_S16: ((int16_t*)p)[index]= v*32767; break;
  57. case AV_SAMPLE_FMT_S32: ((int32_t*)p)[index]= v*2147483647; break;
  58. case AV_SAMPLE_FMT_FLT: ((float *)p)[index]= v; break;
  59. case AV_SAMPLE_FMT_DBL: ((double *)p)[index]= v; break;
  60. default: av_assert2(0);
  61. }
  62. }
  63. static void shift(uint8_t *a[], int index, int ch_count, enum AVSampleFormat f){
  64. int i, ch;
  65. if(av_sample_fmt_is_planar(f)){
  66. f= av_get_alt_sample_fmt(f, 0);
  67. for(ch= 0; ch<ch_count; ch++)
  68. a[ch] += index*av_get_bytes_per_sample(f);
  69. }else{
  70. a[0] += index*ch_count*av_get_bytes_per_sample(f);
  71. }
  72. }
  73. uint64_t layouts[]={
  74. AV_CH_LAYOUT_MONO ,
  75. AV_CH_LAYOUT_STEREO ,
  76. AV_CH_LAYOUT_2_1 ,
  77. AV_CH_LAYOUT_SURROUND ,
  78. AV_CH_LAYOUT_4POINT0 ,
  79. AV_CH_LAYOUT_2_2 ,
  80. AV_CH_LAYOUT_QUAD ,
  81. AV_CH_LAYOUT_5POINT0 ,
  82. AV_CH_LAYOUT_5POINT1 ,
  83. AV_CH_LAYOUT_5POINT0_BACK ,
  84. AV_CH_LAYOUT_5POINT1_BACK ,
  85. AV_CH_LAYOUT_7POINT0 ,
  86. AV_CH_LAYOUT_7POINT1 ,
  87. AV_CH_LAYOUT_7POINT1_WIDE ,
  88. 0
  89. };
  90. static void setup_array(uint8_t *out[SWR_CH_MAX], uint8_t *in, enum AVSampleFormat format, int samples){
  91. if(av_sample_fmt_is_planar(format)){
  92. int i;
  93. int plane_size= av_get_bytes_per_sample(format&0xFF)*samples;
  94. format&=0xFF;
  95. for(i=0; i<SWR_CH_MAX; i++){
  96. out[i]= in + i*plane_size;
  97. }
  98. }else{
  99. out[0]= in;
  100. }
  101. }
  102. int main(int argc, char **argv){
  103. int in_sample_rate, out_sample_rate, ch ,i, in_ch_layout_index, out_ch_layout_index, osr, flush_count;
  104. uint64_t in_ch_layout, out_ch_layout;
  105. enum AVSampleFormat in_sample_fmt, out_sample_fmt;
  106. int sample_rates[]={8000,11025,16000,22050,32000};
  107. uint8_t array_in[SAMPLES*8*8];
  108. uint8_t array_mid[SAMPLES*8*8*3];
  109. uint8_t array_out[SAMPLES*8*8+100];
  110. uint8_t *ain[SWR_CH_MAX];
  111. uint8_t *aout[SWR_CH_MAX];
  112. uint8_t *amid[SWR_CH_MAX];
  113. int flush_i=0;
  114. int mode = 0;
  115. struct SwrContext * forw_ctx= NULL;
  116. struct SwrContext *backw_ctx= NULL;
  117. in_sample_rate=16000;
  118. for(osr=0; osr<5; osr++){
  119. out_sample_rate= sample_rates[osr];
  120. for(in_sample_fmt= AV_SAMPLE_FMT_U8; in_sample_fmt<=AV_SAMPLE_FMT_DBL; in_sample_fmt++){
  121. for(out_sample_fmt= AV_SAMPLE_FMT_U8; out_sample_fmt<=AV_SAMPLE_FMT_DBL; out_sample_fmt++){
  122. for(in_ch_layout_index=0; layouts[in_ch_layout_index]; in_ch_layout_index++){
  123. int in_ch_count;
  124. in_ch_layout= layouts[in_ch_layout_index];
  125. in_ch_count= av_get_channel_layout_nb_channels(in_ch_layout);
  126. for(out_ch_layout_index=0; layouts[out_ch_layout_index]; out_ch_layout_index++){
  127. int out_count, mid_count, out_ch_count;
  128. out_ch_layout= layouts[out_ch_layout_index];
  129. out_ch_count= av_get_channel_layout_nb_channels(out_ch_layout);
  130. fprintf(stderr, "ch %d->%d, rate:%5d->%5d, fmt:%s->%s",
  131. in_ch_count, out_ch_count,
  132. in_sample_rate, out_sample_rate,
  133. av_get_sample_fmt_name(in_sample_fmt), av_get_sample_fmt_name(out_sample_fmt));
  134. forw_ctx = swr_alloc_set_opts(forw_ctx, out_ch_layout, av_get_alt_sample_fmt(out_sample_fmt, 1), out_sample_rate,
  135. in_ch_layout, av_get_alt_sample_fmt( in_sample_fmt, 1), in_sample_rate,
  136. 0, 0);
  137. backw_ctx = swr_alloc_set_opts(backw_ctx, in_ch_layout, in_sample_fmt, in_sample_rate,
  138. out_ch_layout, av_get_alt_sample_fmt(out_sample_fmt, 1), out_sample_rate,
  139. 0, 0);
  140. if(swr_init( forw_ctx) < 0)
  141. fprintf(stderr, "swr_init(->) failed\n");
  142. if(swr_init(backw_ctx) < 0)
  143. fprintf(stderr, "swr_init(<-) failed\n");
  144. if(!forw_ctx)
  145. fprintf(stderr, "Failed to init forw_cts\n");
  146. if(!backw_ctx)
  147. fprintf(stderr, "Failed to init backw_ctx\n");
  148. //FIXME test planar
  149. setup_array(ain , array_in , av_get_alt_sample_fmt( in_sample_fmt, 1), SAMPLES);
  150. setup_array(amid, array_mid, av_get_alt_sample_fmt(out_sample_fmt, 1), 3*SAMPLES);
  151. setup_array(aout, array_out, in_sample_fmt , SAMPLES);
  152. for(ch=0; ch<in_ch_count; ch++){
  153. for(i=0; i<SAMPLES; i++)
  154. set(ain, ch, i, in_ch_count, av_get_alt_sample_fmt(in_sample_fmt, 1), sin(i*i*3/SAMPLES));
  155. }
  156. mode++;
  157. mode%=3;
  158. if(mode==0 /*|| out_sample_rate == in_sample_rate*/) {
  159. mid_count= swr_convert(forw_ctx, amid, 3*SAMPLES, ain, SAMPLES);
  160. } else if(mode==1){
  161. mid_count= swr_convert(forw_ctx, amid, 0, ain, SAMPLES);
  162. mid_count+=swr_convert(forw_ctx, amid, 3*SAMPLES, ain, 0);
  163. } else {
  164. int tmp_count;
  165. mid_count= swr_convert(forw_ctx, amid, 0, ain, 1);
  166. av_assert0(mid_count==0);
  167. shift(ain, 1, in_ch_count, av_get_alt_sample_fmt(in_sample_fmt, 1));
  168. mid_count+=swr_convert(forw_ctx, amid, 3*SAMPLES, ain, 0);
  169. shift(amid, mid_count, out_ch_count, av_get_alt_sample_fmt(out_sample_fmt, 1)); tmp_count = mid_count;
  170. mid_count+=swr_convert(forw_ctx, amid, 2, ain, 2);
  171. shift(amid, mid_count-tmp_count, out_ch_count, av_get_alt_sample_fmt(out_sample_fmt, 1)); tmp_count = mid_count;
  172. shift(ain, 2, in_ch_count, av_get_alt_sample_fmt(in_sample_fmt, 1));
  173. mid_count+=swr_convert(forw_ctx, amid, 1, ain, SAMPLES-3);
  174. shift(amid, mid_count-tmp_count, out_ch_count, av_get_alt_sample_fmt(out_sample_fmt, 1)); tmp_count = mid_count;
  175. shift(ain, -3, in_ch_count, av_get_alt_sample_fmt(in_sample_fmt, 1));
  176. mid_count+=swr_convert(forw_ctx, amid, 3*SAMPLES, ain, 0);
  177. shift(amid, -tmp_count, out_ch_count, av_get_alt_sample_fmt(out_sample_fmt, 1));
  178. }
  179. out_count= swr_convert(backw_ctx,aout, SAMPLES, amid, mid_count);
  180. for(ch=0; ch<in_ch_count; ch++){
  181. double sse, x, maxdiff=0;
  182. double sum_a= 0;
  183. double sum_b= 0;
  184. double sum_aa= 0;
  185. double sum_bb= 0;
  186. double sum_ab= 0;
  187. for(i=0; i<out_count; i++){
  188. double a= get(ain , ch, i, in_ch_count, av_get_alt_sample_fmt(in_sample_fmt, 1));
  189. double b= get(aout, ch, i, in_ch_count, in_sample_fmt);
  190. sum_a += a;
  191. sum_b += b;
  192. sum_aa+= a*a;
  193. sum_bb+= b*b;
  194. sum_ab+= a*b;
  195. maxdiff= FFMAX(maxdiff, FFABS(a-b));
  196. }
  197. x = sum_ab/sum_bb;
  198. sse= sum_aa + sum_bb*x*x - 2*x*sum_ab;
  199. fprintf(stderr, "[%f %f %f] len:%5d\n", sqrt(sse/out_count), x, maxdiff, out_count);
  200. }
  201. flush_i++;
  202. flush_i%=21;
  203. flush_count = swr_convert(backw_ctx,aout, flush_i, 0, 0);
  204. shift(aout, flush_i, in_ch_count, in_sample_fmt);
  205. flush_count+= swr_convert(backw_ctx,aout, SAMPLES-flush_i, 0, 0);
  206. shift(aout, -flush_i, in_ch_count, in_sample_fmt);
  207. if(flush_count){
  208. for(ch=0; ch<in_ch_count; ch++){
  209. double sse, x, maxdiff=0;
  210. double sum_a= 0;
  211. double sum_b= 0;
  212. double sum_aa= 0;
  213. double sum_bb= 0;
  214. double sum_ab= 0;
  215. for(i=0; i<flush_count; i++){
  216. double a= get(ain , ch, i+out_count, in_ch_count, av_get_alt_sample_fmt(in_sample_fmt, 1));
  217. double b= get(aout, ch, i, in_ch_count, in_sample_fmt);
  218. sum_a += a;
  219. sum_b += b;
  220. sum_aa+= a*a;
  221. sum_bb+= b*b;
  222. sum_ab+= a*b;
  223. maxdiff= FFMAX(maxdiff, FFABS(a-b));
  224. }
  225. x = sum_ab/sum_bb;
  226. sse= sum_aa + sum_bb*x*x - 2*x*sum_ab;
  227. fprintf(stderr, "[%f %f %f] len:%5d F:%3d\n", sqrt(sse/flush_count), x, maxdiff, flush_count, flush_i);
  228. }
  229. }
  230. fprintf(stderr, "\n");
  231. }
  232. }
  233. }
  234. }
  235. }
  236. return 0;
  237. }