swresample.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930
  1. /*
  2. * Copyright (C) 2011-2013 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
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (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 GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License 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/opt.h"
  21. #include "swresample_internal.h"
  22. #include "audioconvert.h"
  23. #include "libavutil/avassert.h"
  24. #include "libavutil/channel_layout.h"
  25. #include "libavutil/internal.h"
  26. #include <float.h>
  27. #define ALIGN 32
  28. #include "libavutil/ffversion.h"
  29. const char swr_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
  30. unsigned swresample_version(void)
  31. {
  32. av_assert0(LIBSWRESAMPLE_VERSION_MICRO >= 100);
  33. return LIBSWRESAMPLE_VERSION_INT;
  34. }
  35. const char *swresample_configuration(void)
  36. {
  37. return FFMPEG_CONFIGURATION;
  38. }
  39. const char *swresample_license(void)
  40. {
  41. #define LICENSE_PREFIX "libswresample license: "
  42. return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  43. }
  44. int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){
  45. if(!s || s->in_convert) // s needs to be allocated but not initialized
  46. return AVERROR(EINVAL);
  47. s->channel_map = channel_map;
  48. return 0;
  49. }
  50. struct SwrContext *swr_alloc_set_opts(struct SwrContext *s,
  51. int64_t out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate,
  52. int64_t in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate,
  53. int log_offset, void *log_ctx){
  54. if(!s) s= swr_alloc();
  55. if(!s) return NULL;
  56. s->log_level_offset= log_offset;
  57. s->log_ctx= log_ctx;
  58. if (av_opt_set_int(s, "ocl", out_ch_layout, 0) < 0)
  59. goto fail;
  60. if (av_opt_set_int(s, "osf", out_sample_fmt, 0) < 0)
  61. goto fail;
  62. if (av_opt_set_int(s, "osr", out_sample_rate, 0) < 0)
  63. goto fail;
  64. if (av_opt_set_int(s, "icl", in_ch_layout, 0) < 0)
  65. goto fail;
  66. if (av_opt_set_int(s, "isf", in_sample_fmt, 0) < 0)
  67. goto fail;
  68. if (av_opt_set_int(s, "isr", in_sample_rate, 0) < 0)
  69. goto fail;
  70. if (av_opt_set_int(s, "tsf", AV_SAMPLE_FMT_NONE, 0) < 0)
  71. goto fail;
  72. if (av_opt_set_int(s, "ich", av_get_channel_layout_nb_channels(s-> user_in_ch_layout), 0) < 0)
  73. goto fail;
  74. if (av_opt_set_int(s, "och", av_get_channel_layout_nb_channels(s->user_out_ch_layout), 0) < 0)
  75. goto fail;
  76. av_opt_set_int(s, "uch", 0, 0);
  77. return s;
  78. fail:
  79. av_log(s, AV_LOG_ERROR, "Failed to set option\n");
  80. swr_free(&s);
  81. return NULL;
  82. }
  83. static void set_audiodata_fmt(AudioData *a, enum AVSampleFormat fmt){
  84. a->fmt = fmt;
  85. a->bps = av_get_bytes_per_sample(fmt);
  86. a->planar= av_sample_fmt_is_planar(fmt);
  87. if (a->ch_count == 1)
  88. a->planar = 1;
  89. }
  90. static void free_temp(AudioData *a){
  91. av_free(a->data);
  92. memset(a, 0, sizeof(*a));
  93. }
  94. static void clear_context(SwrContext *s){
  95. s->in_buffer_index= 0;
  96. s->in_buffer_count= 0;
  97. s->resample_in_constraint= 0;
  98. memset(s->in.ch, 0, sizeof(s->in.ch));
  99. memset(s->out.ch, 0, sizeof(s->out.ch));
  100. free_temp(&s->postin);
  101. free_temp(&s->midbuf);
  102. free_temp(&s->preout);
  103. free_temp(&s->in_buffer);
  104. free_temp(&s->silence);
  105. free_temp(&s->drop_temp);
  106. free_temp(&s->dither.noise);
  107. free_temp(&s->dither.temp);
  108. swri_audio_convert_free(&s-> in_convert);
  109. swri_audio_convert_free(&s->out_convert);
  110. swri_audio_convert_free(&s->full_convert);
  111. swri_rematrix_free(s);
  112. s->delayed_samples_fixup = 0;
  113. s->flushed = 0;
  114. }
  115. av_cold void swr_free(SwrContext **ss){
  116. SwrContext *s= *ss;
  117. if(s){
  118. clear_context(s);
  119. if (s->resampler)
  120. s->resampler->free(&s->resample);
  121. }
  122. av_freep(ss);
  123. }
  124. av_cold void swr_close(SwrContext *s){
  125. clear_context(s);
  126. }
  127. av_cold int swr_init(struct SwrContext *s){
  128. int ret;
  129. char l1[1024], l2[1024];
  130. clear_context(s);
  131. if(s-> in_sample_fmt >= AV_SAMPLE_FMT_NB){
  132. av_log(s, AV_LOG_ERROR, "Requested input sample format %d is invalid\n", s->in_sample_fmt);
  133. return AVERROR(EINVAL);
  134. }
  135. if(s->out_sample_fmt >= AV_SAMPLE_FMT_NB){
  136. av_log(s, AV_LOG_ERROR, "Requested output sample format %d is invalid\n", s->out_sample_fmt);
  137. return AVERROR(EINVAL);
  138. }
  139. s->out.ch_count = s-> user_out_ch_count;
  140. s-> in.ch_count = s-> user_in_ch_count;
  141. s->used_ch_count = s->user_used_ch_count;
  142. s-> in_ch_layout = s-> user_in_ch_layout;
  143. s->out_ch_layout = s->user_out_ch_layout;
  144. s->int_sample_fmt= s->user_int_sample_fmt;
  145. if(av_get_channel_layout_nb_channels(s-> in_ch_layout) > SWR_CH_MAX) {
  146. av_log(s, AV_LOG_WARNING, "Input channel layout 0x%"PRIx64" is invalid or unsupported.\n", s-> in_ch_layout);
  147. s->in_ch_layout = 0;
  148. }
  149. if(av_get_channel_layout_nb_channels(s->out_ch_layout) > SWR_CH_MAX) {
  150. av_log(s, AV_LOG_WARNING, "Output channel layout 0x%"PRIx64" is invalid or unsupported.\n", s->out_ch_layout);
  151. s->out_ch_layout = 0;
  152. }
  153. switch(s->engine){
  154. #if CONFIG_LIBSOXR
  155. case SWR_ENGINE_SOXR: s->resampler = &swri_soxr_resampler; break;
  156. #endif
  157. case SWR_ENGINE_SWR : s->resampler = &swri_resampler; break;
  158. default:
  159. av_log(s, AV_LOG_ERROR, "Requested resampling engine is unavailable\n");
  160. return AVERROR(EINVAL);
  161. }
  162. if(!s->used_ch_count)
  163. s->used_ch_count= s->in.ch_count;
  164. if(s->used_ch_count && s-> in_ch_layout && s->used_ch_count != av_get_channel_layout_nb_channels(s-> in_ch_layout)){
  165. av_log(s, AV_LOG_WARNING, "Input channel layout has a different number of channels than the number of used channels, ignoring layout\n");
  166. s-> in_ch_layout= 0;
  167. }
  168. if(!s-> in_ch_layout)
  169. s-> in_ch_layout= av_get_default_channel_layout(s->used_ch_count);
  170. if(!s->out_ch_layout)
  171. s->out_ch_layout= av_get_default_channel_layout(s->out.ch_count);
  172. s->rematrix= s->out_ch_layout !=s->in_ch_layout || s->rematrix_volume!=1.0 ||
  173. s->rematrix_custom;
  174. if(s->int_sample_fmt == AV_SAMPLE_FMT_NONE){
  175. if( av_get_bytes_per_sample(s-> in_sample_fmt) <= 2
  176. && av_get_bytes_per_sample(s->out_sample_fmt) <= 2){
  177. s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
  178. }else if( av_get_bytes_per_sample(s-> in_sample_fmt) <= 2
  179. && !s->rematrix
  180. && s->out_sample_rate==s->in_sample_rate
  181. && !(s->flags & SWR_FLAG_RESAMPLE)){
  182. s->int_sample_fmt= AV_SAMPLE_FMT_S16P;
  183. }else if( av_get_planar_sample_fmt(s-> in_sample_fmt) == AV_SAMPLE_FMT_S32P
  184. && av_get_planar_sample_fmt(s->out_sample_fmt) == AV_SAMPLE_FMT_S32P
  185. && !s->rematrix
  186. && s->engine != SWR_ENGINE_SOXR){
  187. s->int_sample_fmt= AV_SAMPLE_FMT_S32P;
  188. }else if(av_get_bytes_per_sample(s->in_sample_fmt) <= 4){
  189. s->int_sample_fmt= AV_SAMPLE_FMT_FLTP;
  190. }else{
  191. s->int_sample_fmt= AV_SAMPLE_FMT_DBLP;
  192. }
  193. }
  194. av_log(s, AV_LOG_DEBUG, "Using %s internally between filters\n", av_get_sample_fmt_name(s->int_sample_fmt));
  195. if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
  196. &&s->int_sample_fmt != AV_SAMPLE_FMT_S32P
  197. &&s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
  198. &&s->int_sample_fmt != AV_SAMPLE_FMT_DBLP){
  199. av_log(s, AV_LOG_ERROR, "Requested sample format %s is not supported internally, S16/S32/FLT/DBL is supported\n", av_get_sample_fmt_name(s->int_sample_fmt));
  200. return AVERROR(EINVAL);
  201. }
  202. set_audiodata_fmt(&s-> in, s-> in_sample_fmt);
  203. set_audiodata_fmt(&s->out, s->out_sample_fmt);
  204. if (s->firstpts_in_samples != AV_NOPTS_VALUE) {
  205. if (!s->async && s->min_compensation >= FLT_MAX/2)
  206. s->async = 1;
  207. s->firstpts =
  208. s->outpts = s->firstpts_in_samples * s->out_sample_rate;
  209. } else
  210. s->firstpts = AV_NOPTS_VALUE;
  211. if (s->async) {
  212. if (s->min_compensation >= FLT_MAX/2)
  213. s->min_compensation = 0.001;
  214. if (s->async > 1.0001) {
  215. s->max_soft_compensation = s->async / (double) s->in_sample_rate;
  216. }
  217. }
  218. if (s->out_sample_rate!=s->in_sample_rate || (s->flags & SWR_FLAG_RESAMPLE)){
  219. s->resample = s->resampler->init(s->resample, s->out_sample_rate, s->in_sample_rate, s->filter_size, s->phase_shift, s->linear_interp, s->cutoff, s->int_sample_fmt, s->filter_type, s->kaiser_beta, s->precision, s->cheby, s->exact_rational);
  220. if (!s->resample) {
  221. av_log(s, AV_LOG_ERROR, "Failed to initialize resampler\n");
  222. return AVERROR(ENOMEM);
  223. }
  224. }else
  225. s->resampler->free(&s->resample);
  226. if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
  227. && s->int_sample_fmt != AV_SAMPLE_FMT_S32P
  228. && s->int_sample_fmt != AV_SAMPLE_FMT_FLTP
  229. && s->int_sample_fmt != AV_SAMPLE_FMT_DBLP
  230. && s->resample){
  231. av_log(s, AV_LOG_ERROR, "Resampling only supported with internal s16/s32/flt/dbl\n");
  232. ret = AVERROR(EINVAL);
  233. goto fail;
  234. }
  235. #define RSC 1 //FIXME finetune
  236. if(!s-> in.ch_count)
  237. s-> in.ch_count= av_get_channel_layout_nb_channels(s-> in_ch_layout);
  238. if(!s->used_ch_count)
  239. s->used_ch_count= s->in.ch_count;
  240. if(!s->out.ch_count)
  241. s->out.ch_count= av_get_channel_layout_nb_channels(s->out_ch_layout);
  242. if(!s-> in.ch_count){
  243. av_assert0(!s->in_ch_layout);
  244. av_log(s, AV_LOG_ERROR, "Input channel count and layout are unset\n");
  245. ret = AVERROR(EINVAL);
  246. goto fail;
  247. }
  248. av_get_channel_layout_string(l1, sizeof(l1), s-> in.ch_count, s-> in_ch_layout);
  249. av_get_channel_layout_string(l2, sizeof(l2), s->out.ch_count, s->out_ch_layout);
  250. if (s->out_ch_layout && s->out.ch_count != av_get_channel_layout_nb_channels(s->out_ch_layout)) {
  251. av_log(s, AV_LOG_ERROR, "Output channel layout %s mismatches specified channel count %d\n", l2, s->out.ch_count);
  252. ret = AVERROR(EINVAL);
  253. goto fail;
  254. }
  255. if (s->in_ch_layout && s->used_ch_count != av_get_channel_layout_nb_channels(s->in_ch_layout)) {
  256. av_log(s, AV_LOG_ERROR, "Input channel layout %s mismatches specified channel count %d\n", l1, s->used_ch_count);
  257. ret = AVERROR(EINVAL);
  258. goto fail;
  259. }
  260. if ((!s->out_ch_layout || !s->in_ch_layout) && s->used_ch_count != s->out.ch_count && !s->rematrix_custom) {
  261. av_log(s, AV_LOG_ERROR, "Rematrix is needed between %s and %s "
  262. "but there is not enough information to do it\n", l1, l2);
  263. ret = AVERROR(EINVAL);
  264. goto fail;
  265. }
  266. av_assert0(s->used_ch_count);
  267. av_assert0(s->out.ch_count);
  268. s->resample_first= RSC*s->out.ch_count/s->in.ch_count - RSC < s->out_sample_rate/(float)s-> in_sample_rate - 1.0;
  269. s->in_buffer= s->in;
  270. s->silence = s->in;
  271. s->drop_temp= s->out;
  272. if(!s->resample && !s->rematrix && !s->channel_map && !s->dither.method){
  273. s->full_convert = swri_audio_convert_alloc(s->out_sample_fmt,
  274. s-> in_sample_fmt, s-> in.ch_count, NULL, 0);
  275. return 0;
  276. }
  277. s->in_convert = swri_audio_convert_alloc(s->int_sample_fmt,
  278. s-> in_sample_fmt, s->used_ch_count, s->channel_map, 0);
  279. s->out_convert= swri_audio_convert_alloc(s->out_sample_fmt,
  280. s->int_sample_fmt, s->out.ch_count, NULL, 0);
  281. if (!s->in_convert || !s->out_convert) {
  282. ret = AVERROR(ENOMEM);
  283. goto fail;
  284. }
  285. s->postin= s->in;
  286. s->preout= s->out;
  287. s->midbuf= s->in;
  288. if(s->channel_map){
  289. s->postin.ch_count=
  290. s->midbuf.ch_count= s->used_ch_count;
  291. if(s->resample)
  292. s->in_buffer.ch_count= s->used_ch_count;
  293. }
  294. if(!s->resample_first){
  295. s->midbuf.ch_count= s->out.ch_count;
  296. if(s->resample)
  297. s->in_buffer.ch_count = s->out.ch_count;
  298. }
  299. set_audiodata_fmt(&s->postin, s->int_sample_fmt);
  300. set_audiodata_fmt(&s->midbuf, s->int_sample_fmt);
  301. set_audiodata_fmt(&s->preout, s->int_sample_fmt);
  302. if(s->resample){
  303. set_audiodata_fmt(&s->in_buffer, s->int_sample_fmt);
  304. }
  305. if ((ret = swri_dither_init(s, s->out_sample_fmt, s->int_sample_fmt)) < 0)
  306. goto fail;
  307. if(s->rematrix || s->dither.method) {
  308. ret = swri_rematrix_init(s);
  309. if (ret < 0)
  310. goto fail;
  311. }
  312. return 0;
  313. fail:
  314. swr_close(s);
  315. return ret;
  316. }
  317. int swri_realloc_audio(AudioData *a, int count){
  318. int i, countb;
  319. AudioData old;
  320. if(count < 0 || count > INT_MAX/2/a->bps/a->ch_count)
  321. return AVERROR(EINVAL);
  322. if(a->count >= count)
  323. return 0;
  324. count*=2;
  325. countb= FFALIGN(count*a->bps, ALIGN);
  326. old= *a;
  327. av_assert0(a->bps);
  328. av_assert0(a->ch_count);
  329. a->data= av_mallocz_array(countb, a->ch_count);
  330. if(!a->data)
  331. return AVERROR(ENOMEM);
  332. for(i=0; i<a->ch_count; i++){
  333. a->ch[i]= a->data + i*(a->planar ? countb : a->bps);
  334. if(a->planar) memcpy(a->ch[i], old.ch[i], a->count*a->bps);
  335. }
  336. if(!a->planar) memcpy(a->ch[0], old.ch[0], a->count*a->ch_count*a->bps);
  337. av_freep(&old.data);
  338. a->count= count;
  339. return 1;
  340. }
  341. static void copy(AudioData *out, AudioData *in,
  342. int count){
  343. av_assert0(out->planar == in->planar);
  344. av_assert0(out->bps == in->bps);
  345. av_assert0(out->ch_count == in->ch_count);
  346. if(out->planar){
  347. int ch;
  348. for(ch=0; ch<out->ch_count; ch++)
  349. memcpy(out->ch[ch], in->ch[ch], count*out->bps);
  350. }else
  351. memcpy(out->ch[0], in->ch[0], count*out->ch_count*out->bps);
  352. }
  353. static void fill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
  354. int i;
  355. if(!in_arg){
  356. memset(out->ch, 0, sizeof(out->ch));
  357. }else if(out->planar){
  358. for(i=0; i<out->ch_count; i++)
  359. out->ch[i]= in_arg[i];
  360. }else{
  361. for(i=0; i<out->ch_count; i++)
  362. out->ch[i]= in_arg[0] + i*out->bps;
  363. }
  364. }
  365. static void reversefill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){
  366. int i;
  367. if(out->planar){
  368. for(i=0; i<out->ch_count; i++)
  369. in_arg[i]= out->ch[i];
  370. }else{
  371. in_arg[0]= out->ch[0];
  372. }
  373. }
  374. /**
  375. *
  376. * out may be equal in.
  377. */
  378. static void buf_set(AudioData *out, AudioData *in, int count){
  379. int ch;
  380. if(in->planar){
  381. for(ch=0; ch<out->ch_count; ch++)
  382. out->ch[ch]= in->ch[ch] + count*out->bps;
  383. }else{
  384. for(ch=out->ch_count-1; ch>=0; ch--)
  385. out->ch[ch]= in->ch[0] + (ch + count*out->ch_count) * out->bps;
  386. }
  387. }
  388. /**
  389. *
  390. * @return number of samples output per channel
  391. */
  392. static int resample(SwrContext *s, AudioData *out_param, int out_count,
  393. const AudioData * in_param, int in_count){
  394. AudioData in, out, tmp;
  395. int ret_sum=0;
  396. int border=0;
  397. int padless = ARCH_X86 && s->engine == SWR_ENGINE_SWR ? 7 : 0;
  398. av_assert1(s->in_buffer.ch_count == in_param->ch_count);
  399. av_assert1(s->in_buffer.planar == in_param->planar);
  400. av_assert1(s->in_buffer.fmt == in_param->fmt);
  401. tmp=out=*out_param;
  402. in = *in_param;
  403. border = s->resampler->invert_initial_buffer(s->resample, &s->in_buffer,
  404. &in, in_count, &s->in_buffer_index, &s->in_buffer_count);
  405. if (border == INT_MAX) {
  406. return 0;
  407. } else if (border < 0) {
  408. return border;
  409. } else if (border) {
  410. buf_set(&in, &in, border);
  411. in_count -= border;
  412. s->resample_in_constraint = 0;
  413. }
  414. do{
  415. int ret, size, consumed;
  416. if(!s->resample_in_constraint && s->in_buffer_count){
  417. buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
  418. ret= s->resampler->multiple_resample(s->resample, &out, out_count, &tmp, s->in_buffer_count, &consumed);
  419. out_count -= ret;
  420. ret_sum += ret;
  421. buf_set(&out, &out, ret);
  422. s->in_buffer_count -= consumed;
  423. s->in_buffer_index += consumed;
  424. if(!in_count)
  425. break;
  426. if(s->in_buffer_count <= border){
  427. buf_set(&in, &in, -s->in_buffer_count);
  428. in_count += s->in_buffer_count;
  429. s->in_buffer_count=0;
  430. s->in_buffer_index=0;
  431. border = 0;
  432. }
  433. }
  434. if((s->flushed || in_count > padless) && !s->in_buffer_count){
  435. s->in_buffer_index=0;
  436. ret= s->resampler->multiple_resample(s->resample, &out, out_count, &in, FFMAX(in_count-padless, 0), &consumed);
  437. out_count -= ret;
  438. ret_sum += ret;
  439. buf_set(&out, &out, ret);
  440. in_count -= consumed;
  441. buf_set(&in, &in, consumed);
  442. }
  443. //TODO is this check sane considering the advanced copy avoidance below
  444. size= s->in_buffer_index + s->in_buffer_count + in_count;
  445. if( size > s->in_buffer.count
  446. && s->in_buffer_count + in_count <= s->in_buffer_index){
  447. buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
  448. copy(&s->in_buffer, &tmp, s->in_buffer_count);
  449. s->in_buffer_index=0;
  450. }else
  451. if((ret=swri_realloc_audio(&s->in_buffer, size)) < 0)
  452. return ret;
  453. if(in_count){
  454. int count= in_count;
  455. if(s->in_buffer_count && s->in_buffer_count+2 < count && out_count) count= s->in_buffer_count+2;
  456. buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
  457. copy(&tmp, &in, /*in_*/count);
  458. s->in_buffer_count += count;
  459. in_count -= count;
  460. border += count;
  461. buf_set(&in, &in, count);
  462. s->resample_in_constraint= 0;
  463. if(s->in_buffer_count != count || in_count)
  464. continue;
  465. if (padless) {
  466. padless = 0;
  467. continue;
  468. }
  469. }
  470. break;
  471. }while(1);
  472. s->resample_in_constraint= !!out_count;
  473. return ret_sum;
  474. }
  475. static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_count,
  476. AudioData *in , int in_count){
  477. AudioData *postin, *midbuf, *preout;
  478. int ret/*, in_max*/;
  479. AudioData preout_tmp, midbuf_tmp;
  480. if(s->full_convert){
  481. av_assert0(!s->resample);
  482. swri_audio_convert(s->full_convert, out, in, in_count);
  483. return out_count;
  484. }
  485. // in_max= out_count*(int64_t)s->in_sample_rate / s->out_sample_rate + resample_filter_taps;
  486. // in_count= FFMIN(in_count, in_in + 2 - s->hist_buffer_count);
  487. if((ret=swri_realloc_audio(&s->postin, in_count))<0)
  488. return ret;
  489. if(s->resample_first){
  490. av_assert0(s->midbuf.ch_count == s->used_ch_count);
  491. if((ret=swri_realloc_audio(&s->midbuf, out_count))<0)
  492. return ret;
  493. }else{
  494. av_assert0(s->midbuf.ch_count == s->out.ch_count);
  495. if((ret=swri_realloc_audio(&s->midbuf, in_count))<0)
  496. return ret;
  497. }
  498. if((ret=swri_realloc_audio(&s->preout, out_count))<0)
  499. return ret;
  500. postin= &s->postin;
  501. midbuf_tmp= s->midbuf;
  502. midbuf= &midbuf_tmp;
  503. preout_tmp= s->preout;
  504. preout= &preout_tmp;
  505. if(s->int_sample_fmt == s-> in_sample_fmt && s->in.planar && !s->channel_map)
  506. postin= in;
  507. if(s->resample_first ? !s->resample : !s->rematrix)
  508. midbuf= postin;
  509. if(s->resample_first ? !s->rematrix : !s->resample)
  510. preout= midbuf;
  511. if(s->int_sample_fmt == s->out_sample_fmt && s->out.planar
  512. && !(s->out_sample_fmt==AV_SAMPLE_FMT_S32P && (s->dither.output_sample_bits&31))){
  513. if(preout==in){
  514. out_count= FFMIN(out_count, in_count); //TODO check at the end if this is needed or redundant
  515. av_assert0(s->in.planar); //we only support planar internally so it has to be, we support copying non planar though
  516. copy(out, in, out_count);
  517. return out_count;
  518. }
  519. else if(preout==postin) preout= midbuf= postin= out;
  520. else if(preout==midbuf) preout= midbuf= out;
  521. else preout= out;
  522. }
  523. if(in != postin){
  524. swri_audio_convert(s->in_convert, postin, in, in_count);
  525. }
  526. if(s->resample_first){
  527. if(postin != midbuf)
  528. out_count= resample(s, midbuf, out_count, postin, in_count);
  529. if(midbuf != preout)
  530. swri_rematrix(s, preout, midbuf, out_count, preout==out);
  531. }else{
  532. if(postin != midbuf)
  533. swri_rematrix(s, midbuf, postin, in_count, midbuf==out);
  534. if(midbuf != preout)
  535. out_count= resample(s, preout, out_count, midbuf, in_count);
  536. }
  537. if(preout != out && out_count){
  538. AudioData *conv_src = preout;
  539. if(s->dither.method){
  540. int ch;
  541. int dither_count= FFMAX(out_count, 1<<16);
  542. if (preout == in) {
  543. conv_src = &s->dither.temp;
  544. if((ret=swri_realloc_audio(&s->dither.temp, dither_count))<0)
  545. return ret;
  546. }
  547. if((ret=swri_realloc_audio(&s->dither.noise, dither_count))<0)
  548. return ret;
  549. if(ret)
  550. for(ch=0; ch<s->dither.noise.ch_count; ch++)
  551. if((ret=swri_get_dither(s, s->dither.noise.ch[ch], s->dither.noise.count, (12345678913579ULL*ch + 3141592) % 2718281828U, s->dither.noise.fmt))<0)
  552. return ret;
  553. av_assert0(s->dither.noise.ch_count == preout->ch_count);
  554. if(s->dither.noise_pos + out_count > s->dither.noise.count)
  555. s->dither.noise_pos = 0;
  556. if (s->dither.method < SWR_DITHER_NS){
  557. if (s->mix_2_1_simd) {
  558. int len1= out_count&~15;
  559. int off = len1 * preout->bps;
  560. if(len1)
  561. for(ch=0; ch<preout->ch_count; ch++)
  562. s->mix_2_1_simd(conv_src->ch[ch], preout->ch[ch], s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos, s->native_simd_one, 0, 0, len1);
  563. if(out_count != len1)
  564. for(ch=0; ch<preout->ch_count; ch++)
  565. s->mix_2_1_f(conv_src->ch[ch] + off, preout->ch[ch] + off, s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos + off + len1, s->native_one, 0, 0, out_count - len1);
  566. } else {
  567. for(ch=0; ch<preout->ch_count; ch++)
  568. s->mix_2_1_f(conv_src->ch[ch], preout->ch[ch], s->dither.noise.ch[ch] + s->dither.noise.bps * s->dither.noise_pos, s->native_one, 0, 0, out_count);
  569. }
  570. } else {
  571. switch(s->int_sample_fmt) {
  572. case AV_SAMPLE_FMT_S16P :swri_noise_shaping_int16(s, conv_src, preout, &s->dither.noise, out_count); break;
  573. case AV_SAMPLE_FMT_S32P :swri_noise_shaping_int32(s, conv_src, preout, &s->dither.noise, out_count); break;
  574. case AV_SAMPLE_FMT_FLTP :swri_noise_shaping_float(s, conv_src, preout, &s->dither.noise, out_count); break;
  575. case AV_SAMPLE_FMT_DBLP :swri_noise_shaping_double(s,conv_src, preout, &s->dither.noise, out_count); break;
  576. }
  577. }
  578. s->dither.noise_pos += out_count;
  579. }
  580. //FIXME packed doesn't need more than 1 chan here!
  581. swri_audio_convert(s->out_convert, out, conv_src, out_count);
  582. }
  583. return out_count;
  584. }
  585. int swr_is_initialized(struct SwrContext *s) {
  586. return !!s->in_buffer.ch_count;
  587. }
  588. int attribute_align_arg swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_count,
  589. const uint8_t *in_arg [SWR_CH_MAX], int in_count){
  590. AudioData * in= &s->in;
  591. AudioData *out= &s->out;
  592. int av_unused max_output;
  593. if (!swr_is_initialized(s)) {
  594. av_log(s, AV_LOG_ERROR, "Context has not been initialized\n");
  595. return AVERROR(EINVAL);
  596. }
  597. #if defined(ASSERT_LEVEL) && ASSERT_LEVEL >1
  598. max_output = swr_get_out_samples(s, in_count);
  599. #endif
  600. while(s->drop_output > 0){
  601. int ret;
  602. uint8_t *tmp_arg[SWR_CH_MAX];
  603. #define MAX_DROP_STEP 16384
  604. if((ret=swri_realloc_audio(&s->drop_temp, FFMIN(s->drop_output, MAX_DROP_STEP)))<0)
  605. return ret;
  606. reversefill_audiodata(&s->drop_temp, tmp_arg);
  607. s->drop_output *= -1; //FIXME find a less hackish solution
  608. ret = swr_convert(s, tmp_arg, FFMIN(-s->drop_output, MAX_DROP_STEP), in_arg, in_count); //FIXME optimize but this is as good as never called so maybe it doesn't matter
  609. s->drop_output *= -1;
  610. in_count = 0;
  611. if(ret>0) {
  612. s->drop_output -= ret;
  613. if (!s->drop_output && !out_arg)
  614. return 0;
  615. continue;
  616. }
  617. av_assert0(s->drop_output);
  618. return 0;
  619. }
  620. if(!in_arg){
  621. if(s->resample){
  622. if (!s->flushed)
  623. s->resampler->flush(s);
  624. s->resample_in_constraint = 0;
  625. s->flushed = 1;
  626. }else if(!s->in_buffer_count){
  627. return 0;
  628. }
  629. }else
  630. fill_audiodata(in , (void*)in_arg);
  631. fill_audiodata(out, out_arg);
  632. if(s->resample){
  633. int ret = swr_convert_internal(s, out, out_count, in, in_count);
  634. if(ret>0 && !s->drop_output)
  635. s->outpts += ret * (int64_t)s->in_sample_rate;
  636. av_assert2(max_output < 0 || ret < 0 || ret <= max_output);
  637. return ret;
  638. }else{
  639. AudioData tmp= *in;
  640. int ret2=0;
  641. int ret, size;
  642. size = FFMIN(out_count, s->in_buffer_count);
  643. if(size){
  644. buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
  645. ret= swr_convert_internal(s, out, size, &tmp, size);
  646. if(ret<0)
  647. return ret;
  648. ret2= ret;
  649. s->in_buffer_count -= ret;
  650. s->in_buffer_index += ret;
  651. buf_set(out, out, ret);
  652. out_count -= ret;
  653. if(!s->in_buffer_count)
  654. s->in_buffer_index = 0;
  655. }
  656. if(in_count){
  657. size= s->in_buffer_index + s->in_buffer_count + in_count - out_count;
  658. if(in_count > out_count) { //FIXME move after swr_convert_internal
  659. if( size > s->in_buffer.count
  660. && s->in_buffer_count + in_count - out_count <= s->in_buffer_index){
  661. buf_set(&tmp, &s->in_buffer, s->in_buffer_index);
  662. copy(&s->in_buffer, &tmp, s->in_buffer_count);
  663. s->in_buffer_index=0;
  664. }else
  665. if((ret=swri_realloc_audio(&s->in_buffer, size)) < 0)
  666. return ret;
  667. }
  668. if(out_count){
  669. size = FFMIN(in_count, out_count);
  670. ret= swr_convert_internal(s, out, size, in, size);
  671. if(ret<0)
  672. return ret;
  673. buf_set(in, in, ret);
  674. in_count -= ret;
  675. ret2 += ret;
  676. }
  677. if(in_count){
  678. buf_set(&tmp, &s->in_buffer, s->in_buffer_index + s->in_buffer_count);
  679. copy(&tmp, in, in_count);
  680. s->in_buffer_count += in_count;
  681. }
  682. }
  683. if(ret2>0 && !s->drop_output)
  684. s->outpts += ret2 * (int64_t)s->in_sample_rate;
  685. av_assert2(max_output < 0 || ret2 < 0 || ret2 <= max_output);
  686. return ret2;
  687. }
  688. }
  689. int swr_drop_output(struct SwrContext *s, int count){
  690. const uint8_t *tmp_arg[SWR_CH_MAX];
  691. s->drop_output += count;
  692. if(s->drop_output <= 0)
  693. return 0;
  694. av_log(s, AV_LOG_VERBOSE, "discarding %d audio samples\n", count);
  695. return swr_convert(s, NULL, s->drop_output, tmp_arg, 0);
  696. }
  697. int swr_inject_silence(struct SwrContext *s, int count){
  698. int ret, i;
  699. uint8_t *tmp_arg[SWR_CH_MAX];
  700. if(count <= 0)
  701. return 0;
  702. #define MAX_SILENCE_STEP 16384
  703. while (count > MAX_SILENCE_STEP) {
  704. if ((ret = swr_inject_silence(s, MAX_SILENCE_STEP)) < 0)
  705. return ret;
  706. count -= MAX_SILENCE_STEP;
  707. }
  708. if((ret=swri_realloc_audio(&s->silence, count))<0)
  709. return ret;
  710. if(s->silence.planar) for(i=0; i<s->silence.ch_count; i++) {
  711. memset(s->silence.ch[i], s->silence.bps==1 ? 0x80 : 0, count*s->silence.bps);
  712. } else
  713. memset(s->silence.ch[0], s->silence.bps==1 ? 0x80 : 0, count*s->silence.bps*s->silence.ch_count);
  714. reversefill_audiodata(&s->silence, tmp_arg);
  715. av_log(s, AV_LOG_VERBOSE, "adding %d audio samples of silence\n", count);
  716. ret = swr_convert(s, NULL, 0, (const uint8_t**)tmp_arg, count);
  717. return ret;
  718. }
  719. int64_t swr_get_delay(struct SwrContext *s, int64_t base){
  720. if (s->resampler && s->resample){
  721. return s->resampler->get_delay(s, base);
  722. }else{
  723. return (s->in_buffer_count*base + (s->in_sample_rate>>1))/ s->in_sample_rate;
  724. }
  725. }
  726. int swr_get_out_samples(struct SwrContext *s, int in_samples)
  727. {
  728. int64_t out_samples;
  729. if (in_samples < 0)
  730. return AVERROR(EINVAL);
  731. if (s->resampler && s->resample) {
  732. if (!s->resampler->get_out_samples)
  733. return AVERROR(ENOSYS);
  734. out_samples = s->resampler->get_out_samples(s, in_samples);
  735. } else {
  736. out_samples = s->in_buffer_count + in_samples;
  737. av_assert0(s->out_sample_rate == s->in_sample_rate);
  738. }
  739. if (out_samples > INT_MAX)
  740. return AVERROR(EINVAL);
  741. return out_samples;
  742. }
  743. int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensation_distance){
  744. int ret;
  745. if (!s || compensation_distance < 0)
  746. return AVERROR(EINVAL);
  747. if (!compensation_distance && sample_delta)
  748. return AVERROR(EINVAL);
  749. if (!s->resample) {
  750. s->flags |= SWR_FLAG_RESAMPLE;
  751. ret = swr_init(s);
  752. if (ret < 0)
  753. return ret;
  754. }
  755. if (!s->resampler->set_compensation){
  756. return AVERROR(EINVAL);
  757. }else{
  758. return s->resampler->set_compensation(s->resample, sample_delta, compensation_distance);
  759. }
  760. }
  761. int64_t swr_next_pts(struct SwrContext *s, int64_t pts){
  762. if(pts == INT64_MIN)
  763. return s->outpts;
  764. if (s->firstpts == AV_NOPTS_VALUE)
  765. s->outpts = s->firstpts = pts;
  766. if(s->min_compensation >= FLT_MAX) {
  767. return (s->outpts = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate));
  768. } else {
  769. int64_t delta = pts - swr_get_delay(s, s->in_sample_rate * (int64_t)s->out_sample_rate) - s->outpts + s->drop_output*(int64_t)s->in_sample_rate;
  770. double fdelta = delta /(double)(s->in_sample_rate * (int64_t)s->out_sample_rate);
  771. if(fabs(fdelta) > s->min_compensation) {
  772. if(s->outpts == s->firstpts || fabs(fdelta) > s->min_hard_compensation){
  773. int ret;
  774. if(delta > 0) ret = swr_inject_silence(s, delta / s->out_sample_rate);
  775. else ret = swr_drop_output (s, -delta / s-> in_sample_rate);
  776. if(ret<0){
  777. av_log(s, AV_LOG_ERROR, "Failed to compensate for timestamp delta of %f\n", fdelta);
  778. }
  779. } else if(s->soft_compensation_duration && s->max_soft_compensation) {
  780. int duration = s->out_sample_rate * s->soft_compensation_duration;
  781. double max_soft_compensation = s->max_soft_compensation / (s->max_soft_compensation < 0 ? -s->in_sample_rate : 1);
  782. int comp = av_clipf(fdelta, -max_soft_compensation, max_soft_compensation) * duration ;
  783. av_log(s, AV_LOG_VERBOSE, "compensating audio timestamp drift:%f compensation:%d in:%d\n", fdelta, comp, duration);
  784. swr_set_compensation(s, comp, duration);
  785. }
  786. }
  787. return s->outpts;
  788. }
  789. }