swresample.c 31 KB

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