2 * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
6 * FFmpeg 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.
11 * FFmpeg 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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #if defined(CONFIG_RESAMPLE_DBL)
22 #define SET_TYPE(func) func ## _dbl
26 #define OUT(d, v) d = v
27 #define DBL_TO_FELEM(d, v) d = v
28 #elif defined(CONFIG_RESAMPLE_FLT)
29 #define SET_TYPE(func) func ## _flt
33 #define OUT(d, v) d = v
34 #define DBL_TO_FELEM(d, v) d = v
35 #elif defined(CONFIG_RESAMPLE_S32)
36 #define SET_TYPE(func) func ## _s32
38 #define FELEM2 int64_t
39 #define FELEML int64_t
40 #define OUT(d, v) d = av_clipl_int32((v + (1 << 29)) >> 30)
41 #define DBL_TO_FELEM(d, v) d = av_clipl_int32(llrint(v * (1 << 30)));
43 #define SET_TYPE(func) func ## _s16
45 #define FELEM2 int32_t
46 #define FELEML int64_t
47 #define OUT(d, v) d = av_clip_int16((v + (1 << 14)) >> 15)
48 #define DBL_TO_FELEM(d, v) d = av_clip_int16(lrint(v * (1 << 15)))
51 static void SET_TYPE(resample_one)(ResampleContext *c, int no_filter,
52 void *dst0, int dst_index, const void *src0,
53 int src_size, int index, int frac)
56 const FELEM *src = src0;
59 dst[dst_index] = src[index];
62 int sample_index = index >> c->phase_shift;
64 FELEM *filter = ((FELEM *)c->filter_bank) +
65 c->filter_length * (index & c->phase_mask);
67 if (sample_index < 0) {
68 for (i = 0; i < c->filter_length; i++)
69 val += src[FFABS(sample_index + i) % src_size] *
71 } else if (c->linear) {
73 for (i = 0; i < c->filter_length; i++) {
74 val += src[abs(sample_index + i)] * (FELEM2)filter[i];
75 v2 += src[abs(sample_index + i)] * (FELEM2)filter[i + c->filter_length];
77 val += (v2 - val) * (FELEML)frac / c->src_incr;
79 for (i = 0; i < c->filter_length; i++)
80 val += src[sample_index + i] * (FELEM2)filter[i];
83 OUT(dst[dst_index], val);
87 static void SET_TYPE(set_filter)(void *filter0, double *tab, int phase,
91 FELEM *filter = ((FELEM *)filter0) + phase * tap_count;
92 for (i = 0; i < tap_count; i++) {
93 DBL_TO_FELEM(filter[i], tab[i]);