changeset 2306:072fc321fbe6 libavcodec

make most resample filter parameters selectable at runtime
author michael
date Thu, 21 Oct 2004 03:11:34 +0000
parents 9568c8880d96
children df3e4a8e6aac
files avcodec.h resample.c resample2.c
diffstat 3 files changed, 25 insertions(+), 25 deletions(-) [+]
line wrap: on
line diff
--- a/avcodec.h	Wed Oct 20 19:06:29 2004 +0000
+++ b/avcodec.h	Thu Oct 21 03:11:34 2004 +0000
@@ -17,7 +17,7 @@
 
 #define FFMPEG_VERSION_INT     0x000409
 #define FFMPEG_VERSION         "0.4.9-pre1"
-#define LIBAVCODEC_BUILD       4725
+#define LIBAVCODEC_BUILD       4726
 
 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
 #define LIBAVCODEC_VERSION     FFMPEG_VERSION
@@ -1942,7 +1942,7 @@
 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);
 void audio_resample_close(ReSampleContext *s);
 
-struct AVResampleContext *av_resample_init(int out_rate, int in_rate);
+struct AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_length, int log2_phase_count, int linear);
 int av_resample(struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx);
 void av_resample_compensate(struct AVResampleContext *c, int sample_delta, int compensation_distance);
 void av_resample_close(struct AVResampleContext *c);
--- a/resample.c	Wed Oct 20 19:06:29 2004 +0000
+++ b/resample.c	Thu Oct 21 03:11:34 2004 +0000
@@ -160,7 +160,7 @@
     if(s->filter_channels>2)
       s->filter_channels = 2;
 
-    s->resample_context= av_resample_init(output_rate, input_rate);
+    s->resample_context= av_resample_init(output_rate, input_rate, 16, 10, 0);
     
     return s;
 }
--- a/resample2.c	Wed Oct 20 19:06:29 2004 +0000
+++ b/resample2.c	Thu Oct 21 03:11:34 2004 +0000
@@ -28,12 +28,6 @@
 #include "common.h"
 #include "dsputil.h"
 
-#define PHASE_SHIFT 10
-#define PHASE_COUNT (1<<PHASE_SHIFT)
-#define PHASE_MASK (PHASE_COUNT-1)
-#define FILTER_SIZE 16
-//#define LINEAR 1
-
 #if 1
 #define FILTER_SHIFT 15
 
@@ -60,6 +54,9 @@
     int frac;
     int src_incr;
     int compensation_distance;
+    int phase_shift;
+    int phase_mask;
+    int linear;
 }AVResampleContext;
 
 /**
@@ -133,21 +130,26 @@
  * initalizes a audio resampler.
  * note, if either rate is not a integer then simply scale both rates up so they are
  */
-AVResampleContext *av_resample_init(int out_rate, int in_rate){
+AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_size, int phase_shift, int linear){
     AVResampleContext *c= av_mallocz(sizeof(AVResampleContext));
     double factor= FFMIN(out_rate / (double)in_rate, 1.0);
-
+    int phase_count= 1<<phase_shift;
+    
     memset(c, 0, sizeof(AVResampleContext));
+    
+    c->phase_shift= phase_shift;
+    c->phase_mask= phase_count-1;
+    c->linear= linear;
 
-    c->filter_length= ceil(FILTER_SIZE/factor);
-    c->filter_bank= av_mallocz(c->filter_length*(PHASE_COUNT+1)*sizeof(FELEM));
-    av_build_filter(c->filter_bank, factor, c->filter_length, PHASE_COUNT, 1<<FILTER_SHIFT, 1);
-    memcpy(&c->filter_bank[c->filter_length*PHASE_COUNT+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
-    c->filter_bank[c->filter_length*PHASE_COUNT]= c->filter_bank[c->filter_length - 1];
+    c->filter_length= ceil(filter_size/factor);
+    c->filter_bank= av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
+    av_build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, 1);
+    memcpy(&c->filter_bank[c->filter_length*phase_count+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
+    c->filter_bank[c->filter_length*phase_count]= c->filter_bank[c->filter_length - 1];
 
     c->src_incr= out_rate;
-    c->ideal_dst_incr= c->dst_incr= in_rate * PHASE_COUNT;
-    c->index= -PHASE_COUNT*((c->filter_length-1)/2);
+    c->ideal_dst_incr= c->dst_incr= in_rate * phase_count;
+    c->index= -phase_count*((c->filter_length-1)/2);
 
     return c;
 }
@@ -181,8 +183,8 @@
     int compensation_distance= c->compensation_distance;
     
     for(dst_index=0; dst_index < dst_size; dst_index++){
-        FELEM *filter= c->filter_bank + c->filter_length*(index & PHASE_MASK);
-        int sample_index= index >> PHASE_SHIFT;
+        FELEM *filter= c->filter_bank + c->filter_length*(index & c->phase_mask);
+        int sample_index= index >> c->phase_shift;
         FELEM2 val=0;
                 
         if(sample_index < 0){
@@ -190,8 +192,7 @@
                 val += src[ABS(sample_index + i) % src_size] * filter[i];
         }else if(sample_index + c->filter_length > src_size){
             break;
-        }else{
-#ifdef LINEAR
+        }else if(c->linear){
             int64_t v=0;
             int sub_phase= (frac<<8) / c->src_incr;
             for(i=0; i<c->filter_length; i++){
@@ -199,11 +200,10 @@
                 v += src[sample_index + i] * coeff;
             }
             val= v>>8;
-#else
+        }else{
             for(i=0; i<c->filter_length; i++){
                 val += src[sample_index + i] * (FELEM2)filter[i];
             }
-#endif
         }
 
         val = (val + (1<<(FILTER_SHIFT-1)))>>FILTER_SHIFT;
@@ -222,7 +222,7 @@
             dst_incr=      c->ideal_dst_incr / c->src_incr;
         }
     }
-    *consumed= FFMAX(index, 0) >> PHASE_SHIFT;
+    *consumed= FFMAX(index, 0) >> c->phase_shift;
     index= FFMIN(index, 0);
 
     if(compensation_distance){