From news.kth.se!sunic!sunic.sunet.se!seunet!news2.swip.net!doc.news.pipex.net!pipex!uknet!acorn!not-for-mail Tue Apr 25 17:35:59 1995 Path: news.kth.se!sunic!sunic.sunet.se!seunet!news2.swip.net!doc.news.pipex.net!pipex!uknet!acorn!not-for-mail From: mark@acorn.co.uk (Mark Taunton) Newsgroups: comp.dsp Subject: Re: Sampling rate conversion Date: 24 Apr 1995 13:13:38 +0100 Organization: Online Media, Cambridge, UK Lines: 91 Sender: mark@omi.co.uk Message-ID: <3ng4li$3h3@acorn.acorn.co.uk> References: <3n5kuv$kip@clark.net> NNTP-Posting-Host: acorn.acorn.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? What you need to do is to factor (individually) the two numbers in your problematic frequency ratio, so that each number is expressed as a product of smaller terms. Then arrange pairs of these terms (one from the top number, one from the bottom) to produce a product of simpler ratios whose overall product is the same, but where the individual up/down factors are more manageable. Then implement the conversion as a series of conversions using these simpler ratios. You have to be more careful with the individual filter designs, since e.g. the overall pass-band ripple of the conversion chain is (to a first approximation) the sum of the individual sections' ripple values. But it does mean that the computational requirements are (overall) lower than for the all-in-one-big-step approach. For example, I recently had to convert some audio data (not in real-time) from 48kHz to 31.25 kHz. Viewed in the forward direction, this is a frequency ratio of 3125/4800 = 125/192 (i.e. starting with 48kHz, multiply by 125 then divide by 192 to get to a frequency of 31.25kHz) To produce an all-in-one multi-rate (poly-phase) converter, i.e. one which upsamples by 125 merged with downsampling by 192, with the required performance for my particular needs, would have required a huge filter (order 10000 taps). Although the computational cost is not so immense as one might first think, because of course 124 out of every 125 input samples are 0, it is still very expensive. However, by splitting the frequency ratio into a product of smaller ratios, it becomes far simpler: 125 5 5 5 --- = - x - x - 192 6 4 8 Thus, the same frequency conversion is done in three stages: first from 48kHz to 48kHz*5/6 = 40 kHz, then to 50kHz, then to 31.25kHz. You have to be careful in the order that you pair the numbers up, so that the lowest intervening sample frequency does not go below the starting or finishing frequency (otherwise you must lose information or else introduce aliasing), and you have to decide where to set the pass-band edge for each filter for best results, but it's basically pretty straightforward. Of course the filters in each case must be designed as operating at the multi-rate-filter internal frequencies which are 240kHz, 200kHz and 250kHz respectively. The point here however is that the stop-band edge (at 15-16kHz) is a much more reasonable fraction of the filter operating frequency (order 1/16 or so) than in the all-in-one converter where the intermediate frequency is huge (6Mhz) and the fraction is around 1/380. The ratio of pass-band width to sample frequency is one of the main determining factors in filter cost (the other being transition-band width relative to sample frequency) and operating with enormous intermediate frequencies is a sure-fire way to hit the problem. This of course is the poster's original problem! Of course, in the worst case, either or both of the two numbers in your initial frequency ratio may be prime, in which case this scheme collapses totally and you have to do things a different way. I guess in that case, one answer would be to design a polyphase filter to the nearest convenient ratio, but slip the phasing by one step every now and again so as to keep the long-term frequency ratio correct. I believe that there is an Analog Devices sample-rate conversion chip which does this sort of thing dynamically for arbitrary - and time-varying - input and output frequencies (pretty neat stuff it is too). Hoping this helps. Mark. ----- Mark Taunton -- mark@omi.co.uk -- Phone: +44 1223 518561 Online Media, Cambridge, UK -- Fax: +44 1223 518520