2 * Copyright (C) 2012-2013 Michael Niedermayer (michaelni@gmx.at)
4 * This file is part of libswresample
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.
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.
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
21 #include "libavutil/avassert.h"
22 #include "swresample_internal.h"
24 #include "noise_shaping_data.c"
26 int swri_get_dither(SwrContext *s, void *dst, int len, unsigned seed, enum AVSampleFormat noise_fmt) {
27 double scale = s->dither.noise_scale;
29 double *tmp = av_malloc_array(len + TMP_EXTRA, sizeof(double));
33 return AVERROR(ENOMEM);
35 for(i=0; i<len + TMP_EXTRA; i++){
37 seed = seed* 1664525 + 1013904223;
39 switch(s->dither.method){
40 case SWR_DITHER_RECTANGULAR: v= ((double)seed) / UINT_MAX - 0.5; break;
42 av_assert0(s->dither.method < SWR_DITHER_NB);
43 v = ((double)seed) / UINT_MAX;
44 seed = seed*1664525 + 1013904223;
45 v-= ((double)seed) / UINT_MAX;
54 switch(s->dither.method){
56 av_assert0(s->dither.method < SWR_DITHER_NB);
59 case SWR_DITHER_TRIANGULAR_HIGHPASS :
60 v = (- tmp[i] + 2*tmp[i+1] - tmp[i+2]) / sqrt(6);
67 case AV_SAMPLE_FMT_S16P: ((int16_t*)dst)[i] = v; break;
68 case AV_SAMPLE_FMT_S32P: ((int32_t*)dst)[i] = v; break;
69 case AV_SAMPLE_FMT_FLTP: ((float *)dst)[i] = v; break;
70 case AV_SAMPLE_FMT_DBLP: ((double *)dst)[i] = v; break;
71 default: av_assert0(0);
79 av_cold int swri_dither_init(SwrContext *s, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt)
84 if (s->dither.method > SWR_DITHER_TRIANGULAR_HIGHPASS && s->dither.method <= SWR_DITHER_NS)
85 return AVERROR(EINVAL);
87 out_fmt = av_get_packed_sample_fmt(out_fmt);
88 in_fmt = av_get_packed_sample_fmt( in_fmt);
90 if(in_fmt == AV_SAMPLE_FMT_FLT || in_fmt == AV_SAMPLE_FMT_DBL){
91 if(out_fmt == AV_SAMPLE_FMT_S32) scale = 1.0/(1LL<<31);
92 if(out_fmt == AV_SAMPLE_FMT_S16) scale = 1.0/(1LL<<15);
93 if(out_fmt == AV_SAMPLE_FMT_U8 ) scale = 1.0/(1LL<< 7);
95 if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_S32 && (s->dither.output_sample_bits&31)) scale = 1;
96 if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_S16) scale = 1<<16;
97 if(in_fmt == AV_SAMPLE_FMT_S32 && out_fmt == AV_SAMPLE_FMT_U8 ) scale = 1<<24;
98 if(in_fmt == AV_SAMPLE_FMT_S16 && out_fmt == AV_SAMPLE_FMT_U8 ) scale = 1<<8;
100 scale *= s->dither.scale;
102 if (out_fmt == AV_SAMPLE_FMT_S32 && s->dither.output_sample_bits)
103 scale *= 1<<(32-s->dither.output_sample_bits);
105 s->dither.ns_pos = 0;
106 s->dither.noise_scale= scale;
107 s->dither.ns_scale = scale;
108 s->dither.ns_scale_1 = scale ? 1/scale : 0;
109 memset(s->dither.ns_errors, 0, sizeof(s->dither.ns_errors));
110 for (i=0; filters[i].coefs; i++) {
111 const filter_t *f = &filters[i];
112 if (llabs(s->out_sample_rate - f->rate)*20 <= f->rate && f->name == s->dither.method) {
114 s->dither.ns_taps = f->len;
115 for (j=0; j<f->len; j++)
116 s->dither.ns_coeffs[j] = f->coefs[j];
117 s->dither.ns_scale_1 *= 1 - exp(f->gain_cB * M_LN10 * 0.005) * 2 / (1<<(8*av_get_bytes_per_sample(out_fmt)));
121 if (!filters[i].coefs && s->dither.method > SWR_DITHER_NS) {
122 av_log(s, AV_LOG_WARNING, "Requested noise shaping dither not available at this sampling rate, using triangular hp dither\n");
123 s->dither.method = SWR_DITHER_TRIANGULAR_HIGHPASS;
126 av_assert0(!s->preout.count);
127 s->dither.noise = s->preout;
128 s->dither.temp = s->preout;
129 if (s->dither.method > SWR_DITHER_NS) {
130 s->dither.noise.bps = 4;
131 s->dither.noise.fmt = AV_SAMPLE_FMT_FLTP;
132 s->dither.noise_scale = 1;
138 #define TEMPLATE_DITHER_S16
139 #include "dither_template.c"
140 #undef TEMPLATE_DITHER_S16
142 #define TEMPLATE_DITHER_S32
143 #include "dither_template.c"
144 #undef TEMPLATE_DITHER_S32
146 #define TEMPLATE_DITHER_FLT
147 #include "dither_template.c"
148 #undef TEMPLATE_DITHER_FLT
150 #define TEMPLATE_DITHER_DBL
151 #include "dither_template.c"
152 #undef TEMPLATE_DITHER_DBL