Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to resample a signal (sound sample) from one sampling rate, to a higher sampling rate. Unfortunately it needs some kind of filter, as some 'aliasing' appears to occur, and I'm not familiar with filters. Here is what I came up with:

int i, j, a, b, z;

a = 44100;
b = 8363;

// upsample by a
for(i = z = 0; i < samplen; i++)
    for(j = 0; j < a; j++)
        cbuf[z++] = sampdata[i];

// some filter goes here???

// downsample by b
for(j = i = 0; i < z; i += b)
    buf[j++] = cbuf[i];

The new sample is very similar to the original, but it has some kind of noise. Can you please tell me what filter I need to add, and preferably some code related to that filter?

Original sound: http://www.mediafire.com/?9gnga1in52d6t4x Resampled sound: http://www.mediafire.com/?x34h7ggk8n9k8z1

share|improve this question
Start with a simple linear interpolation: instead of setting cbuf[z] to sampdata[i], set it to sampdata[i] + (j/(double)a)(sampdata[i+1] - sampdata[i]). I don't know enough about sound processing to know if that's even near sufficient, but it'll keep you busy until someone comes along who knows their stuff :-) You may also need to anti-alias the downsample. – Steve Jessop Dec 9 '10 at 0:06

5 Answers

up vote 7 down vote accepted

Don't use linear interpolation unless both sample rates (source and destination) are well above the highest frequency in your data. It's a very poor low-pass filter.

What you want is an interpolating low pass filter with a stop-band starting below half the lower of the two sample rates you are dealing with. Common methods of implementing this are upsampling/downsampling using IIR filters, and using poly-phase FIR filters. A windowed Sinc interpolator also works well for this if you don't need real-time performance, and don't want to upsample/downsample. Here's a Windowed Sinc interpolating low-pass filter in Basic, that should be trivial to convert into C.

If you want to use IIR filtering, here's the canonical Cookbook for biquad IIR filters.

If you want the best explanation of audio resampling theory, here's Stanford CCRMA's Resampling page.

share|improve this answer
Thank you. I don't know anything about filters, but I do need runtime performance, as I'm making a kind of music player. I honestly didn't think it would be this complicated to convert from one sampling rate to a higher one. – X-N2O Dec 9 '10 at 20:34
2  
@X-N2O : It's only complicated if you want the results to sound good. :) – hotpaw2 Dec 12 '10 at 23:00

Have you considered using a specialised library for this, such as libsamplerate?

It is quite portable and it is developed by people who know how to do things like this correctly. Even if you do not use it directly, you might find the algorithms it implements quite interesting.

share|improve this answer
3  
If a standalone program suffices, SoX (sox.sourceforge.net) is another option. It has sample rate conversion built in. Easy as sox file1 -r [newsamplerate] file2 – mtrw Dec 9 '10 at 8:02

A few comments, although I'm only guessing at your actual intent:

  • You are up-sampling at a rate 44100 times the original sample rate. For example, if your input was at 10kHz your intermediate cbuf[] would be at 441MHz which is a tad high for most audio analysis. Assuming you want cbuf[] to be at 44100Hz then you only need to create 44100/OrigSampleRate of samples in cbuf[] per sample in sampdata[].
  • You are incrementing z twice in the up-sampling loop. This results in all odd elements of cbuf[] to have their original values. I believe this ultimately results in the final buf[] having invalid odd elements which may be the source of your noise. There is also a potential buffer overflow in cbuf if you didn't create it with at least twice the required number of elements.
  • As mentioned by Steve a linear interpolation is generally the simplest that creates a good result when up-sampling. More complicated up-sampling can be done if desired (polynomials, splines, etc...). Similarly, when down-sampling you may wish to average samples instead of just truncating.
share|improve this answer
Oh, I didn't notice I was incrementing z++ twice. Thank you for pointing that out. – X-N2O Dec 9 '10 at 0:21

Use FFMpeg and avcodec directly. Here's a good example showing how to do this:

http://tdistler.com/projects/audio-resampling-with-ffmpeg

share|improve this answer

Best resampling code I ever come across: http://shibatch.sourceforge.net/

Take the source, and try to learn something from it. It is in nasty condition, but results of that resampler are far above everything else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.