Re-sampling with an arbitrary scaling ratio

Information

  • Patent Application
  • 20050078020
  • Publication Number
    20050078020
  • Date Filed
    August 27, 2004
    19 years ago
  • Date Published
    April 14, 2005
    19 years ago
Abstract
A simple to implement sample rate conversion system consisting of an input/output data flow controller, interpolation coefficient generation, and output data flow control to generate the converted data stream. Sample rate conversion may be done at real time video rates, without restrictions on the conversion ratios.
Description
TECHNICAL FIELD OF THE INVENTION

This invention relates to the field of digital sample rate conversion. More particularly, the invention relates to a novel and improved way of sample rate converting digitally sampled audio or video signals without restrictions on the conversion ratios.


BACKGROUND OF THE INVENTION

With the recent diversification in digital motion picture formats, such as DVD-video or digital TV broadcasting, the need for high-speed sampling-rate-change algorithm is growing. For example, video with 16:9 aspect ratio must be vertically squeezed to fit into conventional 4:3 display. Also, high-resolution signals such as DV (Digital Video), digital broadcast, or others often need to be scaled down before stored in storage such as HDD (Hard Disk Drive) or various rewritable DVD (Digital Versatile Disk). In addition, recent progresses in human-interfaces of players or displays have provoked the need for scaling down and up of motion pictures in many applications. Since, those applications are directly related to consumers, the method which realizes the scaling must be simple and relatively low cost to implement. These applications also require real time processing at video (or audio) rates, therefore the algorithm must be as fast as possible.


Some of the major methods used for sampling rate conversion are simple down-sampling, 0-th holding, interpolation, and oversampling. However, simple down sampling (removing of some portion of the input signals) can only be used for scaling down and 0-th holding (replicating parts of the input signals) only for scaling up. When the scaling ratio is not integral, 0-th holding and decimation must be sequentially applied. In both of these cases, the resulting signal must be filtered with a high quality low-pass filter to remove aliasing. The resultant quality is, to a large extent, dependent on the quality of the low pass filters.


Linear interpolation is an alternate method with a relatively high quality output, and fairly simple implementation. Although linear interpolation is much simpler than other interpolation methods, the conventional algorithms still lack either computational speed or flexibility.


In the linear interpolation method, the output pixel is produced using the intensities of the nearest two input pixels. FIG. 1 shows a case where a row of pixels is scaled to m/n size. Here, the first output pixel is assumed to be at the same point as the first input pixel. The spacing between two adjacent output-pixels is m/n of that of input pixels.


The conventional algorithm for linear interpolation consists of the following steps:

    • 1. Determine the coordinates of an output pixel;
    • 2. Find the two nearest input pixels 101 and 102;
    • 3. Determine the distance 104 and 105 between the output pixel and the input pixels found in step 2; and
    • 4. Determine the intensity of the output pixel by interpolation.


A division is required in step 2 and 3, resulting in an implementation that tends to be large and slow.


Another way to accomplish sample rate conversion with arbitrary ratios is the interpolation/decimation method shown in FIG. 2. While this will result in very good output quality, it is complex to implement, and is very computationally intensive.


In the high speed interpolation/decimation model, illustrated in FIG. 2, the sampled data input signal 201 is interpolated at some ratio (IRATIO) by inserting IRATIO-1 zero valued samples between each of the original input signal samples as shown by 202. The frequency domain characteristics of the input signal are unaltered by this operation, except that the zero-padded sequence is considered to be sampled at a frequency which is the product of original sampling frequency multiplied by IRATIO.


The zero-padded values are fed into a digital FIR low-pass filter to smooth or integrate the sequence, and limit the bandwidth of the filter output. The interpolated output signal shown by 203 has been quantized to a much finer time scale than the original sequence. The interpolated sequence is then passed to a zero-order hold functional block (physically implemented as a register) resulting in the output shown by 204 and then asynchronously resampled at the output sample frequency, resulting in the converted output shown by 205. This resampling can be thought of as a decimation operation since only a very few samples out of the great many interpolated samples are retained. The output values represent the “nearest” values, in a temporal sense, produced by the inter-polation operation. There is always some error in the output sample amplitude. However, this error can be made arbitrarily small by using a very large interpolation ratio. While this approach gives excellent results, the computational requirements tend to limit it to audio applications with today's technology.


SUMMARY OF THE INVENTION

The invention described herein describes a novel and much simpler algorithm for digital sample rate conversion with arbitrary ratios. The conversion is performed using addition and subtraction only, with a single division that may be precomputed. This enables a simple implementation that is capable of real time sample rate conversion at video rates.




BRIEF DESCRIPTION OF THE DRAWINGS

These and other aspects of this invention are illustrated in the drawings, in which:



FIG. 1 illustrates linear interpolation (prior art);



FIG. 2 illustrates the steps required in Interpolation/Decimation (prior art);



FIG. 3 demonstrates linear interpolation;



FIG. 4 illustrates the operation of the input/output data flow controller;



FIG. 5 is a flow chart for calculating interpolation coefficient fn;



FIG. 6 is a flow chart for calculating interpolation coefficient fp; and



FIG. 7 is a flow chart showing the output calculations.




DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS

Assume the spacing between two adjacent input signals 301 and 302 is m, and the spacing between two adjacent output signals 303 and 304 is n as shown in FIG. 3. The number of output pixels produced between two adjacent input pixel x and pixel x+1 is ((x+1)m mod n)−(xm mod n).


Let a counter for input pixels be i, and count it up by m for each input pixel. If i is larger than or equal to n, there is one output pixel between the input pixel and the previous pixel. (Here, the two nearest input signals are determined.) Then, subtract m from i. If i is still larger than or equal to n, there is another output pixel. Continue this until i becomes smaller than n. Then move to the next input pixel.


The distance between the output pixel and the nearest two input pixels can be expressed by simple numerical array. Since the first output pixel is at the same location as the first input pixel, fp(0) (the distance between the 0th output pixel and the previous input pixel) is 0. Also, fn(0) , (the distance between the 0th output pixel and the current input pixel) is n. Since the spacing between two adjacent output pixels is n, fp(1) is larger than fp(0) by n. Since fp(x) is smaller than m:
fp(1){fp(0)+n}modm={fp(0)+(nmodm)(fp(0)+(nmodm)m)fp(0)+(nmodm)-m(fp(0)+(nmodm)>m).Similarly,fn(1)={fn(0)-n}modm={fn(0)-(nmodm)(fn(0)-(nmodm)0)fn(0)-(nmodm)+m(fn(0)-(nmodm)<0).For   any  integerx,fp(x+1)={fp(x)+n}modm={fp(x)+(nmodm)(fp(x)+(nmodm)m)fp(x)+(nmodm)-m(fp(x)+(nmodm)>m)fn(x+1)={fn(x)-n}modm={fn(x)-(nmodm)(fn(x)-(nmodm)0)fn(x)-(nmodm)+m(fn(x)-(nmodm)<0).


Using this method, factors used in interpolation can be easily calculated. Also, in this calculation, no division is used except (n mod m) which only need be calculated once at the beginning. This value can be precalculated or may be calculated when needed without time constrain or penalty. Implementation of this algorithm is straightforward, as shown in the following flow charts.



FIG. 4 describes the Input/Output data flow control algorithm. Block 401 initializes the counters next_counter and counter to the value of n. Decision block 402 tests whether counter is less than 2n. If it is, control passes to block 404, where the data input is enabled. Next block 405 next_counter is set to counter+m, thus counting up by m for each input pixel.


If the test in block 402 fails, thus indicating that there will be more than one output pixel for each input pixel, control passes to block 403 where the data input is disabled.


Control from blocks 405 and 403 pass to decision block 406, where the value of counter is tested whether it is equal to or greater than n. If it is, data output is enabled in block 407, and then next_counter is decremented by n in block 409. If the test in block 406 fails, data output is disabled in block 408.


Control from blocks 408 and 409 then pass to block 410 where counter is set to next_counter. Proceeding to block 411, the system enters a wait state. Upon receiving the next clock pulse, control is returned to decision block 402.



FIGS. 5 and 6 show the algorithm used in calculating the interpolation coefficients fp and fn where fn is the coefficient for the preceding input data point, and fp is to the succeeding one. In the kth cycle:

fn=(m−(kn mod m))

and

fp=(kn mod m)

where fn is calculated by first initializing fn to 0 in block 501. Block 502 then tests whether data output is enabled as previously shown in block 407 of FIG. 4. If output is enabled, block 503 calculates fn. Within block 503, decision block 504 tests if fn+n′ is greater than or equal to m, where n′ is equal to n mod m. If it is, fn is calculated by the equation:

fn=fn+n′−m

If the test fails, the equation:

fn=fn+n′

is used. After either case, control passes to block 507 where the system waits until the next clock cycle is detected.


Next, interpolation coefficient fp is calculated, as shown on FIG. 6. Block 601 initializes fp to the value of m. Block 602 then tests whether data output is enabled as previously shown in block 407 of FIG. 4. If output is enabled, block 603 calculates fp. Within block 603, block 604 tests if fp is equal to or greater than n′, where n′ is equal to n mod m. If it is, fp is calculated in block 606 using the equation:

fp=fp−n′

If the test fails, the equation:

fp=fp−n+m

is used. In either case, control passes to block 607 where the system waits for the next clock cycle.


Once the interpolation coefficients are calculated, the actual data flow is shown in FIG. 7. The algorithm consists of three major sections. Block 702 implements up sampling by 0th hold, decimation is done in block 705, and the output signal is calculated by linear interpolation in block 707 using the coefficients previously calculated.


Block 701 initializes the system by setting both dz and d equal to the first data value.


Decision block 703 tests whether data input is enabled by the data flow controller shown in block 404 of FIG. 4. If it is, block 704 sets dz equal to d and sets d equal to the new input data, and continues to block 706. If the test fails, this step is bypassed, and control passes directly to block 706.


Block 706 tests if data output is enabled by the data flow controller in block 407 of FIG. 4. If it is, block 708 calculates the output value using the previously calculated coefficients and the following equation:

Output=d*fp+dz*fn

Control then passes to block 709, where the system waits for the next clock cycle. If the test fails, control from block 706 continues directly to block 709.


Although the invention has been described in detail with reference to its preferred embodiments, it is to be understood that this description is by way of example only and is not to be construed in a limiting sense.


Moreover, numerous changes in the details of the embodiments of the invention will be apparent to persons of ordinary skill in the art having reference to this description. It will also be apparent that the algorithms and methods described may be equally well implemented in hardware or software. It is contemplated that such changes and additional embodiments are within the spirit and true scope of the invention as claimed below.

Claims
  • 1. A sample rate converter capable of rate conversion by any ratio expressed as m/n, where m is the input rate and n is the output rate, comprising the steps of: up sampling by a 0th hold function; selectively decimating input data; and selectively interpolating input data.
  • 2. The sample rate converter of claim 1, further including the step of: controlling input and output operation of the converter via an input/output data flow controller.
  • 3. The sample rate converter of claim 2, wherein: said input/output data flow controller increments a counter by m at the receipt of each input sample.
  • 4. The sample rate converter of claim 3, wherein: said the input/output data flow controller decrements a counter by n, and determines whether there are none, one or more output samples for a current input sample.
  • 5. The sample rate converter of claim 4, wherein: said input/output data flow controller selectively enables or disables the sample inputs and/or outputs as determined by the state of said counter.
  • 6. The sample rate converter of claim 1, further comprising the step of: determining the coefficients required to generate output samples via an interpolation coefficient control block.
  • 7. The sample rate converter of claim 6, wherein: said interpolation coefficient control block calculates the interpolation coefficients between the current output sample and two nearest input samples.
  • 8. The sample rate converter of claim 1, further comprising: determining whether the next output sample is derived by up sampling or decimation via an input/output control block.
  • 9. The sample rate converter of claim 8, further comprising the step of: controlling input and output operation of the converter via an input/output data flow controller; and wherein said input/output control block selects up sampling when sample input is disabled by the input/output data flow controller.
  • 10. The sample rate converter of claim 8, further comprising the step of: controlling input and output operation of the converter via an input/output data flow controller; and wherein the input/output control block selects decimation when the sample input is enabled by the input/output data flow controller.
  • 11. The sample rate controller of claim 8, further comprising the steps of: determining the coefficients required to generate output samples via an interpolation coefficient control block; and wherein the input/output control block generates a next output sample by adjusting the input sample amplitude by the interpolation coefficients generated by the interpolation coefficient control block.
CLAIM TO PRIORITY OF PROVISIONAL APPLICATION

This application claims priority under 35 U.S.C. §119(e)(1) of provisional application No. 60/498,555, filed Aug. 28, 2003.

Provisional Applications (1)
Number Date Country
60498555 Aug 2003 US