dither_template.c 2.81 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * This file is part of libswresample
 *
 * libswresample is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * libswresample is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with libswresample; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */
18 19 20 21

#if defined(TEMPLATE_DITHER_DBL)
#    define RENAME(N) N ## _double
#    define DELEM  double
22
#    define CLIP(v) while(0)
23 24 25 26

#elif defined(TEMPLATE_DITHER_FLT)
#    define RENAME(N) N ## _float
#    define DELEM  float
27
#    define CLIP(v) while(0)
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

#elif defined(TEMPLATE_DITHER_S32)
#    define RENAME(N) N ## _int32
#    define DELEM  int32_t
#    define CLIP(v) v = FFMAX(FFMIN(v, INT32_MAX), INT32_MIN)

#elif defined(TEMPLATE_DITHER_S16)
#    define RENAME(N) N ## _int16
#    define DELEM  int16_t
#    define CLIP(v) v = FFMAX(FFMIN(v, INT16_MAX), INT16_MIN)

#else
ERROR
#endif

43
void RENAME(swri_noise_shaping)(SwrContext *s, AudioData *dsts, const AudioData *srcs, const AudioData *noises, int count){
44 45
    int pos = s->dither.ns_pos;
    int i, j, ch;
46 47 48
    int taps  = s->dither.ns_taps;
    float S   = s->dither.ns_scale;
    float S_1 = s->dither.ns_scale_1;
49

50 51 52
    av_assert2((taps&3) != 2);
    av_assert2((taps&3) != 3 || s->dither.ns_coeffs[taps] == 0);

53
    for (ch=0; ch<srcs->ch_count; ch++) {
54
        const float *noise = ((const float *)noises->ch[ch]) + s->dither.noise_pos;
55 56
        const DELEM *src = (const DELEM*)srcs->ch[ch];
        DELEM *dst = (DELEM*)dsts->ch[ch];
57
        float *ns_errors = s->dither.ns_errors[ch];
58
        const float *ns_coeffs = s->dither.ns_coeffs;
59
        pos  = s->dither.ns_pos;
60
        for (i=0; i<count; i++) {
61
            double d1, d = src[i]*S_1;
62 63 64 65 66 67 68
            for(j=0; j<taps-2; j+=4) {
                d -= ns_coeffs[j    ] * ns_errors[pos + j    ]
                    +ns_coeffs[j + 1] * ns_errors[pos + j + 1]
                    +ns_coeffs[j + 2] * ns_errors[pos + j + 2]
                    +ns_coeffs[j + 3] * ns_errors[pos + j + 3];
            }
            if(j < taps)
69
                d -= ns_coeffs[j] * ns_errors[pos + j];
70
            pos = pos ? pos - 1 : taps - 1;
71
            d1 = rint(d + noise[i]);
72
            ns_errors[pos + taps] = ns_errors[pos] = d1 - d;
73
            d1 *= S;
74
            CLIP(d1);
75
            dst[i] = d1;
76 77 78
        }
    }

79
    s->dither.ns_pos = pos;
80 81 82 83 84
}

#undef RENAME
#undef DELEM
#undef CLIP