1 /*
2 * audio resampling with soxr
3 * Copyright (c) 2012 Rob Sykes <robs@users.sourceforge.net>
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 /**
23 * @file
24 * audio resampling with soxr
25 */
26
29
30 #include <soxr.h>
31
34 soxr_error_t error;
35
36 soxr_datatype_t
type =
45
46 soxr_io_spec_t io_spec = soxr_io_spec(type, type);
47
48 soxr_quality_spec_t q_spec = soxr_quality_spec((int)((precision-2)/4), (SOXR_HI_PREC_CLOCK|SOXR_ROLLOFF_NONE)*!!cheby);
49 q_spec.precision = linear? 0 : precision;
50 #if !defined SOXR_VERSION /* Deprecated @ March 2013: */
51 q_spec.bw_pc = cutoff?
FFMAX(
FFMIN(cutoff,.995),.8)*100 : q_spec.bw_pc;
52 #else
53 q_spec.passband_end = cutoff?
FFMAX(
FFMIN(cutoff,.995),.8) : q_spec.passband_end;
54 #endif
55
56 soxr_delete((soxr_t)c);
58 soxr_create(in_rate, out_rate, 0, &error, &io_spec, &q_spec, 0);
59 if (!c)
62 }
63
65 soxr_delete((soxr_t)*c);
66 *c = NULL;
67 }
68
70 soxr_process((soxr_t)s->
resample, NULL, 0, NULL, NULL, 0, NULL);
71 return 0;
72 }
73
77 size_t idone, odone;
78 soxr_error_t error = soxr_set_error((soxr_t)c, soxr_set_num_channels((soxr_t)c, src->
ch_count));
79 error = soxr_process((soxr_t)c, src->
ch, (
size_t)src_size,
80 &idone, dst->
ch, (
size_t)dst_size, &odone);
81 *consumed = (int)idone;
82 return error? -1 : odone;
83 }
84
87 return (int64_t)(delay_s * base + .5);
88 }
89
92 };
93