From news.kth.se!sunic!sunic.sunet.se!seunet!news2.swip.net!doc.news.pipex.net!pipex!peernews.demon.co.uk!mgnelect.co.uk!GUSH Thu Apr 27 11:57:23 1995 Newsgroups: comp.dsp From: GUSH@mgnelect.co.uk (Gush Bhumbra) Path: news.kth.se!sunic!sunic.sunet.se!seunet!news2.swip.net!doc.news.pipex.net!pipex!peernews.demon.co.uk!mgnelect.co.uk!GUSH Subject: Re: Sampling rate conversion References: <3n5kuv$kip@clark.net> <3ng4li$3h3@acorn.acorn.co.uk> Organization: MGN Electronics Reply-To: gush@mgnelect.co.uk X-Newsreader: Demon Internet Simple News v1.29 Lines: 116 X-Posting-Host: mgnelect.demon.co.uk Date: Tue, 25 Apr 1995 09:53:54 +0000 Message-ID: <798803634snz@mgnelect.co.uk> Sender: usenet@demon.co.uk In article <3n5kuv$kip@clark.net> marshall@clark.net (Chris and Mina Marshall) wrote: >I am trying to convert a sampled signal from one sampling rate to another >using discrete time signal processing (in a real time system) and have >run into a problem; I think it must be a common one and rather than >re-inventing the wheel, I thought I'd ask around. I need >pointers either to the literature or to ideas on how to solve it. > >The problem is that the ratio of the in and out sampling rates is nasty >(the numerator of the fraction in lowest terms is large) so I can't >do the text-book up sampling/low pass filtering/down sampling because >the up sampling factor would be too large. The system has very tight >requirements on the output sampling rate and could not tolerate an >approximate ratio with a smaller numerator. > >What sort of efficient approaches are generally used in this case? The best method I know is to use polyphase filter banks as per Analag Devices AD1890/1891 etc chips. It can be done better than these single chip devices for example, I have a very high quality assembler routine for a 56000 to do this in realtime(for audio), accurate to 21 bits. This is proprietary (of course)! but here are the principles : Say that the ratio of the outgoing rate to the incoming rate is OUT_RATE / IN_RATE with all common factors cancelled. The basic principles in sample rate conversion are that conceptually 1) You multiply up the incoming sample rate by OUT_RATE by inserting OUT_RATE-1 zeroes between each input sample 2) You low pass filter this sequence to remove all frequencies above the Nyquist for the _output_ sample rate 3) You divide down this sequence of samples by now skipping IN_RATE-1 samples between each sample that you send to the output Obviously, you dont bother calculating the samples you are going to skip saving a lot of computations. If you must have OUT_RATE large dont despair because what you do is a little more complicated (to code) but runs faster than the obvious method outlined above. When you are calculating a FIR sequence of macs with OUT_RATE-1 zeroes between each input sample, what you are equivalently doing is choosing between one filter out of a total of OUT_RATE filters. The one you choose depends on the sample position of the required output sample relative to the input sample points. A quick example should help. say OUT_RATE is 5 and you are using an FIR of 30*5+1 coefficients say IN_RATE is 3 INPUT SEQUENCE I1 I2 I3 I4 I5.... Upsampled sequence I1 0 0 0 0 I2 0 0 0 0 I3 0 0 0 0 I4 0 0 0 0 I5.... Filter coefficients F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14.... F149 F150 F151 First output sample is formed as summation of I30*F1 +0*F2 +0*F3 +0*F4 +0*F5 +I29*F6 +0*F7 +... +I1*F151 Second output sample is formed as summation of 0*F1 +0*F2 +0*F3 +I30*F4 +0*F5 +0*F6 +0*F7 +0*F8 +... +I2*F149 Third output sample is formed as summation of I31*F1 +0*F2 +0*F3 +0*F4 +0*F5 +I30*F6 +0*F7 +... +I3*F147 etc etc The above is the obvious method of calculation where we consider the whole operation as a single FIR filter of length 151 and we do 151 mac instructions. Alternatively we can consider the length 151 filter as 5 banks of subfilters of length 31 viz F1 F6 F11 F16 F21 ... F146 F151 call filter 1a F2 F7 F12 F17 F22 ... F147 0 call filter 2a . . . . . . 0 call filter 3a . . . . . . 0 call filter 4a F5 F10 F15 F20 F25 ... F150 0 call filter 5a Now we can do the same operation using filter banks First output sample using filter 1a I30*F1 +I29*F6 +I28*F11 +.. I1*F151 Second output sample using filter 4a I30*F4 +I29*F9 +I28*F14 +.. I2*F149 Third output sample using filter 7a = 2a I31*F2 +I30*F7 +I29*F12 +.. I3*F147 etc etc Now each output sample you are only performing a length 31 FIR (easy on 5600x)!! the only overhead is that each time you need to choose which of the OUT_RATE subfilters 1a, 2a .. OUT_RATEa. Obviously there is some work to be done by you in choosing a method of calculating the length 30*OUT_RATE low pass filter. There are many complications which can be added to make the whole thing work better (as we do) but that is all there is to sample rate conversion! Let me know how you get on. -- /-----------------------------------------------------------------------\ | Gush Bhumbra | Gush@mgnelect.co.uk | | MGN Electronics, 23 Garendon Way, | Tel: +44 116 232 2472 | | Groby, Leicestershire, LE6 0YR, UK. | Fax: +44 116 232 2535 | |***********************************************************************| | When I was young I wanted to be a farmer ..... | | .. so I could be outstanding in my own field. | \-----------------------------------------------------------------------/