~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to adm_lavcodec/resample2.c

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2005-05-25 13:02:29 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050525130229-jw94cav0yhmg7vjw
Tags: 1:2.0.40-0.0
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "common.h"
29
29
#include "dsputil.h"
30
30
 
31
 
#define PHASE_SHIFT 10
32
 
#define PHASE_COUNT (1<<PHASE_SHIFT)
33
 
#define PHASE_MASK (PHASE_COUNT-1)
 
31
#if 1
34
32
#define FILTER_SHIFT 15
35
33
 
 
34
#define FELEM int16_t
 
35
#define FELEM2 int32_t
 
36
#define FELEM_MAX INT16_MAX
 
37
#define FELEM_MIN INT16_MIN
 
38
#else
 
39
#define FILTER_SHIFT 22
 
40
 
 
41
#define FELEM int32_t
 
42
#define FELEM2 int64_t
 
43
#define FELEM_MAX INT32_MAX
 
44
#define FELEM_MIN INT32_MIN
 
45
#endif
 
46
 
 
47
 
36
48
typedef struct AVResampleContext{
37
 
    short *filter_bank;
 
49
    FELEM *filter_bank;
38
50
    int filter_length;
39
51
    int ideal_dst_incr;
40
52
    int dst_incr;
42
54
    int frac;
43
55
    int src_incr;
44
56
    int compensation_distance;
 
57
    int phase_shift;
 
58
    int phase_mask;
 
59
    int linear;
45
60
}AVResampleContext;
46
61
 
47
62
/**
65
80
 * @param scale wanted sum of coefficients for each filter
66
81
 * @param type 0->cubic, 1->blackman nuttall windowed sinc, 2->kaiser windowed sinc beta=16
67
82
 */
68
 
void av_build_filter(int16_t *filter, double factor, int tap_count, int phase_count, int scale, int type){
 
83
void av_build_filter(FELEM *filter, double factor, int tap_count, int phase_count, int scale, int type){
69
84
    int ph, i, v;
70
85
    double x, y, w, tab[tap_count];
71
86
    const int center= (tap_count-1)/2;
104
119
 
105
120
        /* normalize so that an uniform color remains the same */
106
121
        for(i=0;i<tap_count;i++) {
107
 
            v = clip(lrintf(tab[i] * scale / norm + e), -32768, 32767);
 
122
            v = clip(lrintf(tab[i] * scale / norm + e), FELEM_MIN, FELEM_MAX);
108
123
            filter[ph * tap_count + i] = v;
109
124
            e += tab[i] * scale / norm - v;
110
125
        }
115
130
 * initalizes a audio resampler.
116
131
 * note, if either rate is not a integer then simply scale both rates up so they are
117
132
 */
118
 
AVResampleContext *av_resample_init(int out_rate, int in_rate){
 
133
AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_size, int phase_shift, int linear, double cutoff){
119
134
    AVResampleContext *c= av_mallocz(sizeof(AVResampleContext));
120
 
    double factor= FFMIN(out_rate / (double)in_rate, 1.0);
121
 
 
122
 
    memset(c, 0, sizeof(AVResampleContext));
123
 
 
124
 
    c->filter_length= ceil(16.0/factor);
125
 
    c->filter_bank= av_mallocz(c->filter_length*(PHASE_COUNT+1)*sizeof(short));
126
 
    av_build_filter(c->filter_bank, factor, c->filter_length, PHASE_COUNT, 1<<FILTER_SHIFT, 1);
127
 
    c->filter_bank[c->filter_length*PHASE_COUNT + (c->filter_length-1)/2 + 1]= (1<<FILTER_SHIFT)-1;
128
 
    c->filter_bank[c->filter_length*PHASE_COUNT + (c->filter_length-1)/2 + 2]= 1;
 
135
    double factor= FFMIN(out_rate * cutoff / in_rate, 1.0);
 
136
    int phase_count= 1<<phase_shift;
 
137
    
 
138
    c->phase_shift= phase_shift;
 
139
    c->phase_mask= phase_count-1;
 
140
    c->linear= linear;
 
141
 
 
142
    c->filter_length= FFMAX(ceil(filter_size/factor), 1);
 
143
    c->filter_bank= av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
 
144
    av_build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, 1);
 
145
    memcpy(&c->filter_bank[c->filter_length*phase_count+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
 
146
    c->filter_bank[c->filter_length*phase_count]= c->filter_bank[c->filter_length - 1];
129
147
 
130
148
    c->src_incr= out_rate;
131
 
    c->ideal_dst_incr= c->dst_incr= in_rate * PHASE_COUNT;
132
 
    c->index= -PHASE_COUNT*((c->filter_length-1)/2);
 
149
    c->ideal_dst_incr= c->dst_incr= in_rate * phase_count;
 
150
    c->index= -phase_count*((c->filter_length-1)/2);
133
151
 
134
152
    return c;
135
153
}
139
157
    av_freep(&c);
140
158
}
141
159
 
 
160
/**
 
161
 * Compensates samplerate/timestamp drift. The compensation is done by changing
 
162
 * the resampler parameters, so no audible clicks or similar distortions ocur
 
163
 * @param compensation_distance distance in output samples over which the compensation should be performed
 
164
 * @param sample_delta number of output samples which should be output less
 
165
 *
 
166
 * example: av_resample_compensate(c, 10, 500)
 
167
 * here instead of 510 samples only 500 samples would be output
 
168
 *
 
169
 * note, due to rounding the actual compensation might be slightly different, 
 
170
 * especially if the compensation_distance is large and the in_rate used during init is small
 
171
 */
142
172
void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensation_distance){
143
173
//    sample_delta += (c->ideal_dst_incr - c->dst_incr)*(int64_t)c->compensation_distance / c->ideal_dst_incr;
144
174
    c->compensation_distance= compensation_distance;
160
190
    int frac= c->frac;
161
191
    int dst_incr_frac= c->dst_incr % c->src_incr;
162
192
    int dst_incr=      c->dst_incr / c->src_incr;
163
 
    
164
 
    if(c->compensation_distance && c->compensation_distance < dst_size)
165
 
        dst_size= c->compensation_distance;
166
 
    
 
193
    int compensation_distance= c->compensation_distance;
 
194
 
 
195
  if(compensation_distance == 0 && c->filter_length == 1 && c->phase_shift==0){
 
196
        int64_t index2= ((int64_t)index)<<32;
 
197
        int64_t incr= (1LL<<32) * c->dst_incr / c->src_incr;
 
198
        dst_size= FFMIN(dst_size, (src_size-1-index) * (int64_t)c->src_incr / c->dst_incr);
 
199
        
 
200
        for(dst_index=0; dst_index < dst_size; dst_index++){
 
201
            dst[dst_index] = src[index2>>32];
 
202
            index2 += incr;
 
203
        }
 
204
        frac += dst_index * dst_incr_frac;
 
205
        index += dst_index * dst_incr;
 
206
        index += frac / c->src_incr;
 
207
        frac %= c->src_incr;
 
208
  }else{
167
209
    for(dst_index=0; dst_index < dst_size; dst_index++){
168
 
        short *filter= c->filter_bank + c->filter_length*(index & PHASE_MASK);
169
 
        int sample_index= index >> PHASE_SHIFT;
170
 
        int val=0;
171
 
        
 
210
        FELEM *filter= c->filter_bank + c->filter_length*(index & c->phase_mask);
 
211
        int sample_index= index >> c->phase_shift;
 
212
        FELEM2 val=0;
 
213
                
172
214
        if(sample_index < 0){
173
215
            for(i=0; i<c->filter_length; i++)
174
216
                val += src[ABS(sample_index + i) % src_size] * filter[i];
175
217
        }else if(sample_index + c->filter_length > src_size){
176
218
            break;
177
 
        }else{
178
 
#if 0
 
219
        }else if(c->linear){
179
220
            int64_t v=0;
180
 
            int sub_phase= (frac<<12) / c->src_incr;
 
221
            int sub_phase= (frac<<8) / c->src_incr;
181
222
            for(i=0; i<c->filter_length; i++){
182
 
                int64_t coeff= filter[i]*(4096 - sub_phase) + filter[i + c->filter_length]*sub_phase;
 
223
                int64_t coeff= filter[i]*(256 - sub_phase) + filter[i + c->filter_length]*sub_phase;
183
224
                v += src[sample_index + i] * coeff;
184
225
            }
185
 
            val= v>>12;
186
 
#else
 
226
            val= v>>8;
 
227
        }else{
187
228
            for(i=0; i<c->filter_length; i++){
188
 
                val += src[sample_index + i] * filter[i];
 
229
                val += src[sample_index + i] * (FELEM2)filter[i];
189
230
            }
190
 
#endif
191
231
        }
192
232
 
193
233
        val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT;
199
239
            frac -= c->src_incr;
200
240
            index++;
201
241
        }
202
 
    }
203
 
    *consumed= FFMAX(index, 0) >> PHASE_SHIFT;
204
 
    index= FFMIN(index, 0);
205
 
 
 
242
 
 
243
        if(dst_index + 1 == compensation_distance){
 
244
            compensation_distance= 0;
 
245
            dst_incr_frac= c->ideal_dst_incr % c->src_incr;
 
246
            dst_incr=      c->ideal_dst_incr / c->src_incr;
 
247
        }
 
248
    }
 
249
  }
 
250
    *consumed= FFMAX(index, 0) >> c->phase_shift;
 
251
    if(index>=0) index &= c->phase_mask;
 
252
 
 
253
    if(compensation_distance){
 
254
        compensation_distance -= dst_index;
 
255
        assert(compensation_distance > 0);
 
256
    }
206
257
    if(update_ctx){
207
 
        if(c->compensation_distance){
208
 
            c->compensation_distance -= dst_index;
209
 
            if(!c->compensation_distance)
210
 
                c->dst_incr= c->ideal_dst_incr;
211
 
        }
212
258
        c->frac= frac;
213
259
        c->index= index;
 
260
        c->dst_incr= dst_incr_frac + c->src_incr*dst_incr;
 
261
        c->compensation_distance= compensation_distance;
214
262
    }
215
263
#if 0    
216
264
    if(update_ctx && !c->compensation_distance){