Method and apparatus for implementing digital filters

Information

  • Patent Application
  • 20060212502
  • Publication Number
    20060212502
  • Date Filed
    December 30, 2004
    20 years ago
  • Date Published
    September 21, 2006
    18 years ago
Abstract
In one embodiment, the present invention discloses an apparatus and method for providing efficient implementations of Finite Impulse Response (FIR) digital filters. Specifically, a result from a FIR digital filter can be efficiently computed by using an AVG operation or instruction in conjunction with one or more other operations. The unique use of the AVG operation will allow FIR filters of various types, e.g., Types 1-4, to significantly reduce computational cycles.
Description
BACKGROUND OF THE INVENTION

1. Field of the Invention


Embodiments of the present invention generally relate to implementations of Finite Impulse Response (FIR) digital filters.


2. Description of the Related Art


A digital filter is a basic building block in any Digital Signal Processing (DSP) system. The frequency of the filter depends on the value of its coefficients, or taps. A Finite Impulse Response (FIR) digital filter is one whose impulse response is of finite duration. In general, when a digital filter is implemented in hardware, a designer may want to represent the coefficients and also the data with the smallest number of bits that sill gives acceptable resolution for the numbers. Excess bits will increase the size of the registers, buses, adders, multipliers and other hardware used to process the signal. The bigger sizes result in a chip with a larger die size, which translates into increased power consumption, a higher chip price, and so on. Thus, inefficient implementations of Finite Impulse Response (FIR) digital filters will significantly impact cost and performance of a digital signal processing (DSP) system.


Thus, there is a need in the art for a method and apparatus for providing efficient implementations of Finite Impulse Response (FIR) digital filters.


SUMMARY OF THE INVENTION

In one embodiment, the present invention discloses an apparatus and method for providing efficient implementations of Finite Impulse Response (FIR) digital filters. Specifically, a result from a FIR digital filter can be efficiently computed by using an AVG operation or instruction in conjunction with one or more other operations. The unique use of the AVG operation will allow FIR filters of various types, e.g., Types 1-4, to significantly reduce computational cycles.




BRIEF DESCRIPTION OF THE DRAWINGS

So that the manner in which the above recited features of the present invention can be understood in detail, a more particular description of the invention, briefly summarized above, may be had by reference to embodiments, some of which are illustrated in the appended drawings. It is to be noted, however, that the appended drawings illustrate only typical embodiments of this invention and are therefore not to be considered limiting of its scope, for the invention may admit to other equally effective embodiments.



FIG. 1 illustrates a subpixel p that is obtained as the average of four pixels a1, b1, c1, and d1 in accordance with one embodiment of the present invention;



FIG. 2 illustrates eight average operations on eight columns of a frame in accordance with one embodiment of the present invention;



FIG. 3 illustrates a SIMD execution model in accordance with one embodiment the present invention;



FIG. 4 illustrates a block diagram of a conventional method for the packed operation;



FIG. 5 illustrates a block diagram of an efficient method for a packed operation in accordance with one embodiment of the present invention; and



FIG. 6 illustrates the present invention implemented using a general purpose computer.




To facilitate understanding, identical reference numerals have been used, wherever possible, to designate identical elements that are common to the figures.


DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT

The present invention presents several new implementations of Finite Impulse Response (FIR) digital filters with positive coefficients, e.g., by using the Single Instruction Multiple Data (SIMD) architecture on Analog Devices (ADI) TigerSharc digital signal processor (DSP). The filters discussed herein can be used in pre-processing, post-processing, motion compensation, and motion estimation for video compression, and a variety of filtering applications. For example, these implementations are useful in H.264 and MPEG-4 video compression standards and the like. The present invention demonstrates novel methods to speedup the computations of these filters when compared to traditional SIMD methods.


The present invention presents a number of methods to efficiently implement a variety of Finite Impulse Response (FIR) digital filters for video/signal processing. These filters, also known as transversal or tapped delay filters, multiply a set of coefficients to pixel values of a video frame to generate a new pixel value. In one embodiment, the present invention considers positive coefficients only for the FIR filters. Let us consider 4 pixels a1, b1, c1, d1, 101-104 in FIG. 1, and a sub-pixel p 105 obtained as the average of these 4 pixels as:

p=(a1+b1+c1+d1+2)>>2   (1)

where >>is bitwise logical right shift operator.


The example in FIG. 1 and various other filtering functions are used in several aspects of digital video compression such as pre-processing, post-processing, motion estimation, and motion compensation. Since most video frames contain 255 levels of intensity or color values, the pixels a1, b1, c1, d1 are represented in bytes (8-bits).


In practical implementations of video compression technologies, such as MPEG, the present invention needs to perform numerous operations of the type (1) over the entire frame. For example, a1, b1, c1, d1 can be four pixels on four consecutive rows along the same column of a video frame (see FIG. 2 below). The present invention may need to repeat (1) for each column of the frame. If the frame has 240 columns, then the present invention needs 240 such computations for each set of 4 rows of the frame.


In order to gain computational efficiency, the present invention uses the parallel computation capability of many processors available today. This capability, also known as Single Instruction Multiple Data (SIMD) architecture, is available in many processors including Analog Devices' TigerSharc ADSP-TS201S DSP. In SIMD architecture, there are N identical processors, which work under the control of a single instruction stream issued by a central control unit. There are N data streams, one per processor. The processors operate synchronously: at each step, all processors execute the same instruction on a different data element. This architecture allows the present invention to achieve N computations such as (1) on N separate columns simultaneously in one instruction. Thus, if N=8, we need 240/8=40 instructions instead of 240 instructions for all 240 columns of data for each 4 consecutive rows of pixel data. This achieves a computational speedup by a factor of 8.


Here instruction refers to a single SIMD operation by the processor such as add, subtract, bitwise AND, bitwise OR, bitwise logical right shift, bitwise logical left shift, and bitwise exclusive OR. Some processors may combine multiple such operations into one instruction. For the sake of simplicity, the present invention will consider each SIMD operation as an instruction.


The present invention uses the following notations and functions in the discussions:

TABLE 1OperatorDescription+additionsubtraction&bitwise AND|bitwise OR{circumflex over ( )}bitwise exclusive OR>>bitwise logical right shift<<bitwise logical left shift˜Bitwise NOTCLIP(x)Clips x to range [0, 255]ODD(x)Returns 1 when x is odd, 0 otherwiseEVEN(x)Returns 1 when x is even, 0 otherwiseTRUNC(x)x & 0xFF


The SIMD architecture is available in several processors. Examples include Intel Multi-Media Extensions (MMX)™ and Streaming SIMD Extension (SSE)™, NEC VR5432, Equator MAP-CA™, Philips TM-1300, Texas Instruments C64x, Analog Devices Blackfin and TigerSharc DSPs. The present invention demonstrated various algorithms with assembly instructions available in the ADI TigerSharc DSP.



FIG. 2 demonstrates a SIMD operation on two sets of data. Let A=[a1, . . . ,a8] be a vector of 8 data values, each of which is an unsigned byte integer, i.e., aiε[0,255]. Let B=[b1, . . . ,b8] be another vector of unsigned byte integers in the range [0,255]. The final result C=[c1, . . . ,c8] is achieved by simultaneously operating on all 8 values of ai and bi as ci=ai OP bi, for i=1, . . . ,8, where OP is the desired operation. In this example, A, B and C are 64-bit vectors in which all 8 values of ai, bi, and ci are packed as contiguous bytes as shown in FIG. 3, i.e., N=8. Such operations are also known as packed operations, since 8 values of data are packed in a single vector A, B or C.


One of the packed operations/instructions that the present invention uses frequently in this study is the AVG instruction that does the following computation:

AVG(A,B)=[(ai+bi)>>1 for i=1, . . . ,8].   (2)


This operation takes eight 8-bit values of ai, bi, and stores the intermediate sum (ai+bi) in 9 bits before doing bitwise logical right shift operation to get the final result. It is available in many processors, including the ones mentioned above, and uses only one instruction.


In TigerSharc, this instruction is realized by the (Rm±Rn)/2(U) assembly operation. It has a throughput of 1 clock cycle. T his throughput is same for packed addition, subtraction, bitwise AND, bitwise OR, bitwise exclusive OR, bitwise right shift, and bitwise left shift operations.


Two other SIMD instructions that the present invention uses frequently, are ADDSAT, and SUBSAT, which denote saturated add and subtract respectively.

ADDSAT(A,B)=[CLIP(ai+bi) for i=1, . . . ,8],
SUBSAT(A,B)=[CLIP(ai−bi) for i=1, . . . ,8].


In TigerSharc, these instructions are realized by (Rm+Rn)(U), and (Rm−Rn)(U) respectively. They both have throughput of 1 clock cycle.


The present invention considers a simple computation (ai+bi+1)>>1 to demonstrate the application of SIMD architecture and the benefit of the present methods over traditional SIMD methods. Similar to FIG. 3, let us consider ai, bi as unsigned byte integers. The present invention also considers N=8, i.e., the present invention simultaneously performs the operation (ai+bi+1)>>1 on 8 values of ai and bi for i=1, . . . ,8. The present invention packs all 8 values of ai (usually contiguous pixels) in a 64-bit vector A, and 8 values of bi in a 64-bit vector B. Since ai+bi can exceed 8 bits, the present invention needs to first unpack the 8-bit (byte) values of ai, bi into 16-bits as shown in FIG. 4 below, then add the vectors A and B, followed by bitwise logical right shift by 1, followed by packing back into 8-bit values of ci. Note that in most processors, data can be packed into a 64-bit vector as 8-(byte), 16-(word), 32-(dword), or 64-(qword) bit values only. FIG. 4 shows the conventional method of doing the packed operation ci=(ai+bi+1)>>1 for i=1, . . . ,8. It is clear from FIG. 4, that given sufficient memory, it will need 11 instructions to achieve the result ci=(ai+bi+1)>>1 for all 8 values of ai and bi. Each instruction in FIG. 4 is represented by an ellipse.


The present invention now demonstrates the same packed operation (ci=(ai+bi+1)>>1) in much fewer instructions by using the AVG instruction and logical operations on 64-bit vectors A and B. The efficient solution is:

C=AVG(A, B)+(AˆB) & ONE,   (3)

where ONE is a 64-bit vector defined in (4). The flowchart for the implementation of (3) in SIMD architecture is given in FIG. 5.



FIG. 5 illustrates a block diagram of an efficient method for packed operation C=(A+B+ONE)>>1. Specifically, assuming sufficient memory, the present invention needs only 4 instructions instead of previous 11 instructions to achieve the packed operation C=(A+B+ONE)>>1. This is an approximate speedup of 11/4 or 175%.


As shown above, the present invention can achieve the same computational result with fewer instructions by appropriately using the AVG instruction in combination with simple logical operations. The present invention discusses several FIR filtering operations that can be modified to obtain the result in fewer instructions when compared to conventional SIMD implementations.


Without loss of generality, let A1, A2, . . . ,A16 be 16 vectors, each of which contain 8 packed data elements. For example, A5 contains 8 data elements A5=[a(5,1), . . . , a(5,8)]. Each data element a(1,i), . . . , a(16,i) for i=1, . . . 8, is within the range [0,255]. We define packed 64-bit vectors ONE and ONE4 as follows:

ONE=[0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01],   (4)
ONE4=[0x0001, 0x0001, 0x0001, 0x0001],   (5)

where 0x01 is a byte containing 1 in its least significant bit and 0's elsewhere. The packed 64-bit vectors ONE contains 8 packed bytes, each containing 0x01. On the other hand, the packed 64-bit vectors ONE4 contains 4 packed words (16 bits), each containing 0x0001.


The FIR functions that are considered here are:

Type 1: (A1+A2+c*ONE)>>1, where cε{−2,−1,0,1,2},   (6)
Type 2: (A1+A2+A3+A4+c*ONE)>>2, where cε{0,1,2},   (7)
Type 3: (A1+A2+A3+A4+A5+A6+A7+A8+c*ONE)>>3, where cε{0,1,2,3,4},   (8)
Type 4: (A1+A2+A3+A4+ . . . +A13+A14+A15+A16+c*ONE)>>4, where cε{0,1,2, . . . , 8},   (9)


All 4 types of FIR filters are useful for video compression applications such as H.264. It should be noted that although the present invention is described within the context of these four filter functions, other filter functions may also exploit the method of the present invention. There are numerous FIR filters that can be constructed from these 4 basic types. For example, the filter (2A1+A2+A3+2*ONE)>>2 is a Type 2 filter with A1=A4. Similarly, the filter (A1+2A2+2A3+2A4+A5+4*ONE)>>3 is a Type 3 filter with A2=A6, A3=A7, and A4=A8. Further note that in all following discussions, vectors ONE and ONE4 are stored in advance for use in the present methods. Moreover, the vector c*ONE for any integer c≠0 is also stored in advance.


There are 5 variations of the Type 1 FIR filters (A1+A2+c*ONE), where cε{−2,−1,0,1,2}, based on the 5 choices of constant c. The present invention states the SIMD implementation for each of these filters:

(A1+A2−2*ONE)>>1=SUBSAT(AVG(A1,A2)−ONE),   (10)
(A1+A2−ONE)>>1=ADDSAT(SUBSAT(AVG(A1,A2)−ONE)+(A1{circumflex over (0)}A2) & ONE)),   (11)
(A1+A2+ONE)>>1=ADDSAT(AVG(A1,A2)+(A1{circumflex over (0)}A2) & ONE),   (12)
(A1+A2)>>1=AVG(A1,A2),   (13)
(A1+A2+2*ONE)>>1=ADDSAT(AVG(A1,A2)+ONE).   (14)


The present invention shows the conventional method for only one function (A1+A2−ONE)>>1. The remaining functions can be obtained as extensions of this filter. The steps for the conventional method are:

    • 1. (2 Instructions) A1L and A2L=Unpack Low 4 Bytes of A1 and A2 respectively.
    • 2. (2 Instructions) A1L and A2L=Unpack High 4 Bytes of A1 and A2 respectively.
    • 3. (3 Instructions) Add and Shift lower 4 words of A1 and A2 to obtain lower 4 words of RL as: RL=(A1L+A2L−ONE4)>>1.
    • 4. (3 Instructions) Add and Shift higher 4 words of A1 and A2 to obtain higher 4 words of RH as: RH=(A1H+A2H−ONE4)>>2.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional SIMD method requires 11 instructions. The steps of the efficient method are:

    • (1 Instruction) R1=AVG(A1,A2).
    • (1 Instruction) R2=(A1{circumflex over (0)}A2).
    • (1 Instruction) R3=R2 & ONE.
    • (1 Instruction) R4=SUBSAT(R1−ONE).
    • (1 Instruction) R5=ADDSAT(R4+R3).


The efficient method requires a total of 5 instructions with a speedup of 120%.

TABLE 2ConventionalEfficientType 1 FiltersMethodMethodSpeedup(A1 + A2 − 2*ONE) >> 1112450%(A1 + A2 − ONE) >> 1115120%(A1 + A2 + ONE) >> 1114175%(A1 + A2 + 2*ONE) >> 1112450%


There are 3 variations of Type 2 filters (7) based on the 3 choices of constant c. The present invention defines the following 64-bit packed vectors, each containing 8 data elements of one byte each:

B1=AVG(A1,A2), B2=AVG(A3,A4).   (16)
Type 2—Filter 1: R=(A1+A2+A3+A4+2*ONE)>>2


This filter can be implemented in SIMD architecture (assuming sufficient memory) by conventional method in the following steps:

    • 1. (4 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1,2,3,4.
    • 2. (4 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1,2,3,4.
    • 3. (5 Instructions) Add and Shift lower 4 words of A1, . . . ,A4 to obtain lower 4 words of RL as: RL=(A1L+A2L+A3L+A4L+2*ONE4)>>2.
    • 4. (5 Instructions) Add and Shift higher 4 words of A1, . . . ,A4 to obtain higher 4 words of RH as: RH=(A1H+A2H+A3H+A4H+2*ONE4)>>2.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


Thus, it requires 19 instructions to perform this filter by conventional SIMD methods.


In order to implement this filter efficiently, the present invention simplifies it as follows:

R=(((A1+A2)>>1)+((A3+A4)>>1)+ONE+E)>>1=(B1+B2+ONE+E)>>1,   (17)

where E is the correction term that is necessary when both (A1+A2) and (A3+A4) are odd integers. We have:

E=ODD(A1+A2) & ODD(A3+A4)=(A1{circumflex over (0)}A2) & (A3{circumflex over (0)}A4) & ONE.   (18)


From (18) and (14), we have:
R={AVG(B1,B2)+(B1B2)&ONEwhenE=0AVG(B1,B2)+ONEwhenE=1.(19)


The present invention simplifies (19) as:

R=AVG(B1,B2)−((B1{circumflex over (0)}B2)|E) & ONE,   (20)

which is same as:

R=AVG(B1,B2)−(B1{circumflex over (0)}B2)|((A1{circumflex over (0)}A2) & (A3{circumflex over (0)}A4)) & ONE.   (21)


Thus, the present solution in (21) requires 10 instructions. The present invention has an approximate 19:10 speedup (or 90%) by using (21).

Type 2—Filter 2: R=(1+A2+A3+A4+ONE)>>2


As seen above, this filter can be implemented by conventional SIMD methods in 19 instructions. For efficient implementation, the present invention simplifies it as follows:

R=(((A1+A2)>>1)+((A3+A4+ONE)>>1)+E1)>>1=(B1+B2+E2+E1))>>1.   (22)


Here error E2=(A3{circumflex over (0)}A4)& ONE is due to the correction term in (12), and E1 is the correction term as:
E1=ODD(A1+A2)&ODD(A3+A4+ONE)=ODD(A1+A2)&EVEN(A3+A4)=(A1A2)&(A3A4)&ONE=(A1A2)&E2.(23)


Note the truth table for E1, E2, and ET=E2+E1 below:

E2E1ET = E2 + E100001110111N/A


Note that E2=1, E1=1 is not possible outcome due to (23), and ET=E1|E2. From (22), (12), and the table above, the present invention obtains:
R={AVG(B1,B2)+(B1B2)&ONEwhenET=1AVG(B1,B2)whenET=0.(24)

The present invention simplifies (24) as:

R=AVG(B1,B2)+((B1{circumflex over (0)}B2) & (E1|E2)) & ONE.   (25)


Note that:

E1|E2=((A1{circumflex over (0)}A2) & ˜E2)|E2=(A1{circumflex over (0)}A2)|E2−((A1{circumflex over (0)}A2)|(A3{circumflex over (0)}A4)) & ONE.   (26)


Combining (25) and (26), the solution is:

R=AVG(B1,B2)+(B1{circumflex over (0)}B2) & ((A1{circumflex over (0)}A2)|(A3{circumflex over (0)}A4)) & ONE.   (27)


The solution in (26) requires 10 instructions, an approximate 19:10 speedup or 90%.

Type 2—Filter 3: R=(A1+A2+A3+A4)>>2


This filter can be implemented by conventional SIMD methods in 17 instructions. For efficient implementation, the present invention simplifies it as follows:

R=(((a1+A2)>>1)+((A3+A4)>>1)+E)>>1.   (28)


Here E is the correction term as:

E=ODD(A1+A2) & ODD(A3+A4)=(A1{circumflex over (0)}A2) & (A3{circumflex over (0)}A4) & ONE.   (29)


The solution is:
R={AVG(B1,B2)+(B1B2)&ONEwhenE=1AVG(B1,B2)whenE=0.(30)


The present invention simplify (30) as:

R=AVG(B1,B2)+(B1{circumflex over (0)}B2) & (A1{circumflex over (0)}A2) & (A3{circumflex over (0)}A4) & ONE.   (31)


The solution in (30) requires 10 instructions. Thus, the present invention has an approximate 17:10 (or 70%) speedup by using (30).

Type 2—Special Filter 1: R=(2A1+A3+A4+2*ONE)>>2


This filter is same as Filter 1 with A1=A2, i.e., B1=A1. The steps of the conventional method are:

    • 1. (3 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1,3,4.
    • 2. (3 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1,3,4.
    • 3. (5 Instructions) Add and Shift lower 4 words of A1,A3,A4 to obtain lower 4 words of RL as: RL=(2A1L+A3L+A4L+2*ONE4)>>2.
    • 4. (5 Instructions) Add and Shift higher 4 words of A1,A3,A4 to obtain higher 4 words of RH as: RH=(2A1H+A3H+A4H+2*ONE4)>>2.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional SIMD method requires 17 instructions. It is used extensively in JVT video coding scheme. In contrast, the present invention can simplify (21) as:

R=AVG(A1,B2)+(A1{circumflex over (0)}B2) & ONE.   (32)

This solution requires 5 instructions, a computational gain of 240%.


Table 3 below summarizes the instructions required to compute each filter (given sufficient memory) by the efficient and conventional SIMD methods.

TABLE 3ConventionalEfficientType 2 FIR FiltersMethodMethodSpeedup(A1 + A2 + A3 + A4 +191090%c*ONE) >> 2, c = 1, 2(A1 + A2 + A3 + A4) >> 2171070%(2A1 + A3 + A4 + 2*ONE) >> 2175240% 


There are 5 different Type 3 FIR filters depending on the 5 choices of c in (8). The present invention defines the following packed 64-bit vectors, each containing 8 data elements of one byte each:

B1=AVG(A1,A2), B2=AVG(A3,A4), B3=AVG(A5,A6), B4=AVG(A7, A8), C1=AVG(B1,B2), C2=AVG(B3,B4).   (33)
Type 3 FIR Filter: R=(A1+A2+A3+A4+A5+A6+A7+A8c*ONE)>>3.


The Type 3 FIR filters can be implemented in SIMD architecture (assuming sufficient memory) by conventional method in the following steps:

    • 1. (8 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1, . . . ,8.
    • 2. (8 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1, . . . ,8.
    • 3. (8 or 9 Instructions) Add and Shift lower 4 words of A1, . . . ,A8 to obtain lower 4 words of RL as: RL=(A1L+A2L+A3L+A4L+A5L+A6L+A7L+A8L+c*ONE4)>>3. It will have 8 instructions for c=0, and 9 instructions otherwise.
    • 4. (8 or 9 Instruction) Add and Shift higher 4 words of A1, . . . ,A8 to obtain higher 4 words of RH as: RH=(A1H+A2H+A3H+A4H+A5H+A6H+A7H+A8H+c*ONE4)>>3.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


      Thus it will require 33-35 instructions to compute this filter by conventional SIMD methods.


The present invention first computes D as:

D=AVG(C1,C2),   (34)

where C1 and C2 are given in (33). The present invention next needs to know how far D is from the correct solution R. This is summarized in the following lemma.

Lemma 1: R−2*ONE≦D≦R+2*ONE.

Proof: For any two packed vectors X and Y, we have:
X+Y2-ONE2AVG(X,Y)X+Y2+ONE2.

It follows that
C1+C22-ONE2DC1+C22+ONE2,

which is the same as (from (34)):
AVG(B1,B2)+AVG(B3B4)2-ONE2DAVG(B1,B2)+AVG(B3,B4)2+ONE2.


By further substituting for AVG(B1,B2) and AVG(B3,B4), we see that
(B1+B2)/2-ONE/2+(B3+B4)/2-ONE/22-ONE2D(B1+B2)/2+ONE/2+(B3+B4)/2+ONE/22+ONE2,

which simplifies to
B1+B2+B3+B4-4*ONE4DB1+B2+B3+B4+4*ONE4.


Substituting for the B1, . . . , B4 and simplifying,
A1+A2+A3++A6+A7+A8-12*ONE8DA1+A2+A3++A6+A7+A8+12*ONE8.


The upper-bound is at most 12/8ths more than D before truncation to an integer. We get D−R≦(12−c)*ONE/8≦2*ONE. Likewise, we see that R−D≦(12+c)*ONE/8≦2*ONE. The final result of the lemma follows from these two inequalities.


Following Lemma 1, after D is computed, we do a saturated add by 2*ONE as U=ADDSAT(D+2*ONE). Thus, after 8 instructions, we have

R≦U=ADDSAT(D+2*ONE)≦R+4*ONE.   (35)


The next step is to determine the correct least significant bits of U. This is done by computing L as:

L=(A1+A2+A3+A4+A5+A6+A7+A8+c*ONE)>>3.   (36)


The value c*ONE is a stored constant similar to ONE, so there is no need to perform the multiply. In (36), all adds and shifts are on packed 8-bit data, i.e., if the result of each packed add exceeds 8-bits, the result is truncated to 8-bits. Thus, in total, (36) has eight (8) 8-bit adds and one (1) 8-bit shift to compute L, which holds 5 correct least significant bits of R for each packed byte.


The last step uses the least significant bits of L to correct the least significant bit errors in U (see (35)). Since we know that U is at most 4 more than R, we only need to figure out the error E of U so that it agrees with L in the three least significant bits. This is accomplished by:

E=SUBSAT(U−L) & 7*ONE.   (37)


As before, 7*ONE is a stored constant similar to ONE. In 2 instructions (subtraction, bitwise and), the error term E can be determined. The final step is to subtract this error E from U to get the final result. This is 1 additional instruction:

R=SUBSAT(U−E).   (38)


In total this method requires 20 instructions, and 19 instructions when c=0 since an addition in (36) can be saved. The steps for the new efficient method are:


1 . (7 Instructions) Compute D=AVG(AVG(AVG(A1,A2), AVG(A3,A4)), AVG(AVG(A5,A6), AVG(A7,A8))).

    • 2. (1 Instruction) Compute U=ADDSAT(D+2*ONE), where 2*ONE is a stored constant.
    • 3. (8 or 9 Instructions) Compute L=(A1+A2+A3+A4+A5+A6+A7+A8+c*ONE)>>3. This is a truncated packed 8-bit addition. The present invention needs 8 instructions for c=0, and 9 instructions otherwise. Here c*ONE is a stored constant.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE, where 7*ONE is a stored constant.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The new algorithm requires 19-20 instructions compared to 33-35 instructions by the conventional method.

Type 3—Special Filter 1: R=(A1+A2+2A3+2A5+2A7+4*ONE)>>3.


The steps of the conventional method are:

    • 1. (5 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1,2,3,5,7.
    • 2. (5 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1,2,3,5,7.
    • 3. (7 Instructions) Add and Shift lower 4 words of A1, . . . ,A7 to obtain lower 4 words of RL as: RL=(A1L+A2L+((A3L+A5L+A7L)<<1)+4*ONE4)>>3.
    • 4. (7 Instructions) Add and Shift higher 4 words of A1, . . . , A7 to obtain higher 4 words of RH as: RH=(A1H+A2H+((A3H+A5H+A7H)<<1)+4*ONE4)>>3.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional SIMD method requires 25 instructions. For the present new method, there is no need to compute AVG(A3,A3), AVG(A5,A5), and AVG(A7,A7). This saves 3 instructions. Furthermore, the computation of L can be shortened by first doing (A3+A5+A7)<<1 and then adding on the remaining parts. Hence there are 5 adds and 2 shift instructions. The net savings on L is 2 instructions, and the total net savings is 5 instructions. The steps for the new efficient method are:

    • 1. (4 Instructions) Compute D=AVG(AVG(AVG(A1,A2), A3), AVG(A5, A7)).
    • 2. (1 Instruction) Compute U=ADDSAT(D+2*ONE).
    • 3. (7 Instructions) Compute L=(A1+A2+((A3+A5+A7)<<1)+4*ONE)>>3. This is truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The new method requires 15 instructions compared to 25 instructions by the conventional method.

Type 3—Special Filter 2: R=(A1+A2+A3+3A4+2A7+4*ONE)>>3.


The steps of the conventional method are:

    • 1. (5 instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1,2,3,4,7.
    • 2. (5 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1,2,3,4,7.
    • 3. (8 Instructions) Add and Shift lower 4 words of A1, . . . ,A7 to obtain lower 4 words of RL as: L=(A1L+A2L+A3L+3A4L+2A7L+4*ONE4)>>3.
    • 4. (8 Instructions) Add and Shift higher 4 words of A1, . . . ,A7 to obtain higher 4 words of RH as: H=(A1H+A2H+A3H+3A4H+2A7H+4*ONE4)>>3.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional method requires 27 instructions. For the present new method, there is no need to compute AVG(A4,A4), and AVG(A7,A7). This saves 2 instructions. Furthermore, the computation of L can be shortened by first doing (A3+A5+A7)<<1 and then adding on the remaining parts. Hence there are 6 adds and 2 shift instructions. The net savings on L is 1 instruction, and the total net savings is 3 instructions. The steps for the new efficient method are:

    • 1. (5 Instructions) Compute D=AVG(AVG(AVG(A1,A2), AVG(A3,A4)), AVG(A4, A7)).
    • 2. (1 Instruction) Compute U=ADDSAT(D+2*ONE).
    • 3. (8 Instructions) Compute L=(A1+A2+A3+A4+((A4+A7)<<1)+4*ONE)>>3. This is truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The new method requires 17 instructions compared to 27 instructions by the conventional method.

Type 3- Special Filter 3: R=(A1+A2+A3+2A4+A6+A7+A8+4*ONE)>>3.


The steps of the conventional method are:

    • 1. (7 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1,2,3,4,6,7,8.
    • 2. (7 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1,2,3,4,6,7,8.
    • 3. (9 Instructions) Add and Shift lower 4 words of A1, . . . ,A4 to obtain lower 4 words of RL as: RL=(A1L+A2L+A3L+2A4L+A6L+A7L+A8L+4*ONE4)>>3.
    • 4. (9 Instructions) Add and Shift higher 4 words of A1, . . . ,A7 to obtain higher 4 words of RH as: RH=(A1H+A2H+A3H+2A4H+A6H+A7H+A8H+4*ONE4)>>3.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional method requires 33 instructions. For the new method, there is no need to compute AVG(A4,A4). This saves 1 instruction. The steps for the new efficient method are:

    • 1. (6 Instructions) Compute D=AVG(AVG(AVG(A1,A2), A4),AVG(AVG(A3,A6),AVG(A7,A8))).
    • 2. (1 Instruction) Compute U=ADDSAT(D+2*ONE).
    • 3. (9 Instructions) Compute L=(A1+A2+A3+(A4<<1)+A6+A7+A8+4*ONE)>>3. This is truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The present new method requires 19 instructions compared to 33 by the conventional method.


Table 4 below summarizes the instructions required to compute each filter (given sufficient memory) by the efficient and conventional SIMD methods.

TABLE 4Conven-tionalEfficientType 3 FIR FiltersMethodMethodSpeedup(A1 + A2 + . . . + A8 + c*ONE) >>352075%3, c = 1, 2, 3, 4(A1 + A2 + . . . + A8) >> 3331974%(A1 + A2 + 2A3 + 2A5 +251567%2A7 + 4*ONE) >> 3(A1 + A2 + A3 + 3A4 +271759%2A7 + 4*ONE) >> 3(A1 + A2 + A3 + 2A4 +331974%A6 + A7 + A8 + 4*ONE) >> 3


The present invention also defines the following packed 64-bit vectors, each containing 8 data elements of one byte each:

B1=AVG(A1,A2), B2=AVG(A3,A4), B3=AVG(A5,A6), B4=AVG(A7,A8),
B5=AVG(A9,A10), B6=AVG(A11,A12), B7=AVG(A13,A14), B8=AVG(A15, A16),
Ci=AVG(B1,B2), C2=AVG(B3,B4), C3=AVG(B5,B6), C4=AVG(B7,B8),
D1=AVG(C1,C2), D2=AVG(C3,C4), D=AVG(D1,D2).   (39)
Type 4 FIR Filter: R=(A1+A2+A3+A4+ . . . +A13+A14+A15+A16'0c*ONE)>>4.


The Type 4 FIR filters can be implemented in SIMD architecture (assuming sufficient memory) by conventional method in the following steps:

    • 1 . (16 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1, . . . ,16.
    • 2. (16 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1, . . . ,16.
    • 3. (16 or 17 Instructions) Add and Shift lower 4 words of A1, . . . ,A16 to obtain lower 4 words of RL: RL=(A1L+A2L+ . . . +A15L+A16L+c*ONE4)>>4. 16 instructions needed for c=0, and 17 instructions otherwise.
    • 4. (16 or 17 Instructions)Add and Shift higher 4 words of A1, . . . ,A16 to obtain higher 4 words of RH: RH=(A1H+A2H+ . . . +A15H+A16H+c*ONE4)>>4. 16 instructions needed for c=0, and 17 instructions otherwise.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


Thus, it would require 65-67 instructions to compute this filter by conventional SIMD methods.


In contrast, the present invention first compute D as AVG(D1,D2) (see (39)), which requires 15 AVG instructions. Here D is an approximate solution for R, where:

R=(A1+A2+A3+A4+ . . . +A13+A14+A15+A16+c*ONE)>>4.

where cε{0,1,2, . . . ,8}. The following result is analogous to Lemma 1:

Lemma 2: R−3*ONE≦D≦R+2*ONE.

Proof: We know that
D1+D22-ONE2DD1+D22+ONE2.


Following the analyses in Lemma 1, we get
A1+A2++A7+A8-12*ONE8D1A1+A2++A7+A8+12*ONE8.andA9+A10++A15+A16-12*ONE8D2A9+A10++A15+A16+12*ONE8.


Substituting these ranges, we see that
A1+A2++A15+A16-32*ONE16DA1+A2++A15+A16+32*ONE16.


Thus, D−R≦(32−c)*ONE/16=2*ONE and R−D≦(32+c)*ONE/16)≦3*ONE.


The remaining steps are similar to the Type 3 filters, and all steps are outlined below:

    • 1. (15 Instructions) Compute D=AVG(D1,D2)—see (39).
    • 2. (1 Instruction) Compute U=ADDSAT(D+3*ONE), where 3*ONE is a stored constant.
    • 3. (16 or 17 Instructions) Compute L=(A1+A2+A3+ . . . +A14+A15+A16+c*ONE)>>4. This is a truncated packed 8-bit add. We need 16 instructions for c=0, and 17 instructions otherwise. Here c*ONE is a stored constant.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE, where 7*ONE is a stored constant.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The present new method requires 35-36 instructions compared to 65-67 instructions by the conventional method.

Type 4—Special Filter 1: R=(A1+4A2+6A3+4A4+A5+8*ONE)>>4.


The conventional method can be implemented in SIMD architecture as follows:

    • 1. (5 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1, . . . ,5.
    • 2. (5 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1, . . . ,5.
    • 3. (9 Instructions) Add and Shift lower 4 words of A1, . . . ,A5 to obtain lower 4 words of RL: RL=(A1L+4A2L+6A3L+4A4L+A5L+8*ONE4)>>4.
    • 4. (9 Instructions)Add and Shift higher 4 words of A1, . . . ,A5 to obtain higher 4 words of RH: RH=(A1H+4A2H+6A3H+4A4H+A5H+8*ONE4)>>4.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional method requires 29 instructions. For the present efficient method, the present invention has the following simplifications:

B1=AVG(A1,A5), B2=A2, B3=A2, B4=A3,
B5=A3, B6=A3, B7=A4, B8=A4,
C1=A2, C2=A3, C3=A4, C4=AVG(zB1,A3),
D1=AVG(A2,A3), D2=AVG(A4,C4).
Thus,
D=AVG(D1,D2)=AVG(AVG(A2,A3),AVG(A4,AVG(AVG(A1,A5),A3))).   (40)


The present efficient method is:

    • 1 . (5 Instructions) Compute D as (40).
    • 2. (1 Instruction) Compute U=ADDSAT(D+3*ONE).
    • 3. (9 Instructions) Compute L=(A1+((A2+A3+A4)<<2)+(A3<<1)+A5+8*ONE)>>4. This is a truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The new method requires 18 instructions as compared to 29 instructions for the conventional method.

Type 4—Special Filter 2: R=(A1+A2+2A3+2A4+4A5+2A6+2A7+A8+A9+8*ONE)>>4.


The conventional method can be implemented in SIMD architecture as follows:

    • 1. (9 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1, . . . ,9.
    • 2. (9 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1, . . . ,9.
    • 3. (12 Instructions) Add and Shift lower 4 words of A1, . . . ,A9 to obtain lower 4 words of RL: RL=(A1L+A2L+((A3L+A4L+A6L+A7L)<<1)+(A5L<<2)+A8L+A9L+8*ONE)>>4.
    • 4. (12 Instructions)Add and Shift higher 4 words of A1, . . . ,A9 to obtain higher 4 words of RH: RH=(A1H+A2H+((A3H+A4H+A6H+A7H)<<1)+(A5H<<2)+A8H+A9H+8*ONE)>>4.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional method requires 43 instructions. For the present efficient method, the present invention has the following simplifications:

B1=AVG(A1,A2), B2=A3, B3=A4, B4=A5,
B5=A5, B6=A6, B7=A7, B8=AVG(A8,A9),
C1=AVG(B1,A3), C2=AVG(A4,A6), C3=A5, C4=AVG(A7,B8),
D1=AVG(C1,C2), D2=AVG(C3,C4), and D=AVG(D1,D2).   (41)


The efficient algorithm is:

    • 1. (8 Instructions) Compute from (41) as: D=AVG(AVG(AVG(AVG(A1,A2),A3),AVG(A4,A6)),AVG(A5,AVG(A7,AVG(A8,A9)))).
    • 2. (1 Instruction) Compute U=ADDSAT(D+3*ONE).
    • 3. (12 Instructions) Compute L=(A1+A2+((A3+A4+A6+A7)<<1)+(A5<<2)+A8+A9+8*ONE)>>4. This is a truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The present new method requires 24 instructions as compared to 43 instructions for the conventional method.

Type 4—Special Filter 3: R=(A1+2A2+2A3+2A4+2A5+2A6+2A7+2A8+A9+8*ONE)>>4.


The conventional method can be implemented in SIMD architecture as follows:

    • 1. (9 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1, . . . ,9.
    • 2. (9 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1, . . . ,9.
    • 3. (11 Instructions) Add and Shift lower 4 words of A1, . . . ,A9 to obtain lower 4 words of RL: RL=(A1L+((A2L+A3L+A4L+A5L+A6L+A7L+A8L)<<1)+A9L+8*ONE)>>4.
    • 4. (11 Instructions) Add and Shift higher 4 words of A1, . . . ,A9 to obtain higher 4 words of RH: RH=(A1H+((A2H+A3H+A4H+A5H+A6H+A7H+A8H)<<1)+A9H8*ONE)>>4.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional method requires 41 instructions. For the efficient method, we have the following simplifications:

B1=AVG(A1,A9), B2=A2, B3=A3, B4=A4,
B5=A5, B6=A6, B7=A7, B8=A8,
C1=AVG(B1,A2), C2=AVG(A3,A4), C3=AVG(A5,A6), C4=AVG(A7,A8),
D1=AVG(C1,C2), D2=AVG(C3,C4), and D=AVG(D1,D2).   (42)


The efficient method is:

    • 1. (8 Instructions) Compute D from (42) as: D=AVG(AVG(AVG(AVG(A1,A9),A2),AVG(A3,A4)),AVG(AVG(A5,A6),AVG (A7,A8))).
    • 2. (1 Instruction) Compute U=ADDSAT(D+3*ONE).
    • 3. (11 Instructions) Compute L=(A1+((A2+A3+A4+A5+A6+A7+A8)<<1)+A9+8*ONE)>>4. This is a truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The new algorithm requires 23 instructions as compared to 41 instructions for the conventional method.

Type 4—Special Filter 4: R=(A1+2A2+3A3+4A4+3A5+2A6+A7+8*ONE)>>4.


The conventional method can be implemented in SIMD architecture as follows:

    • 1. (7 Instructions) AiL=Unpack Low 4 Bytes of Ai, for i=1, . . . ,7.
    • 2. (7 Instructions) AiH=Unpack High 4 Bytes of Ai, for i=1, . . . ,7.
    • 3. (12 Instructions) Add and Shift lower 4 words of A1, . . . ,A7 to obtain lower 4 words of RL: RL=(A1L+A3L+A5L+((A2L+A3L+A5L+A6L)<<1)+(A4L<<2)+A7L+8*ONE)>>4.
    • 4. (12 Instructions) Add and Shift higher 4 words of A1, . . . ,A9 to obtain higher 4 words of RH: RH=(A1H+A3H+A5H+((A2H+A3H+A5H+A6H)<<1)+(A4H<<2)+A7H+8*ONE)>>4.
    • 5. (1 Instruction) Pack RH and RL into final vector R.


The conventional method requires 39 instructions. For the present efficient method, the present invention has the following simplifications:

B1=AVG(A1,A7), B2=A2, B3=A3, B4=A4,
B5=A4, B6=A5, B7=A6, B8=AVG(A3,A5),
C1=AVG(B1,A2), C2=AVG(A3,A5), C3=A4, C4=AVG(A6,B8),
D1=AVG(C1,C2), D2=AVG(A4,C4), and D=AVG(D1,D2).   (43)


The present efficient method is:

    • 1. (8 Instructions) Compute D from (43) as: D=AVG(AVG(AVG(AVG(A1,A7),A2),AVG(A3,A5)),AVG(A4,AVG(A6,AVG(A3,A5)))).
    • 2. (1 Instruction) Compute U=ADDSAT(D+3*ONE).
    • 3. (12 Instructions) Compute L=(A1+A3+A5+((A2+A3+A5+A6)<<1)+(A4<<2)+A7+8*ONE)>>4. This is a truncated packed 8-bit addition.
    • 4. (2 Instruction) Compute error E=SUBSAT(U−L) & 7*ONE.
    • 5. (1 Instruction) Subtract this error E from U to obtain R=SUBSAT(U−E).


The new method requires 24 instructions as compared to 39 instructions for the conventional method.


Table 5 below summarizes the instructions required to compute each filter (given sufficient memory) by the efficient and conventional SIMD methods.

TABLE 5Conven-tionalEfficientType 4 FIR FiltersMethodMethodSpeedup(A1 + A2 + . . . + A16 + c*ONE) >>673686%4, c = 1, 2, . . . , 7, 8(A1 + A2 + . . . + A16) >> 4663589%(A1 + 4A2 + 6A3 + 4A4 +291861%A5 + 8*ONE) >> 4(A1 + A2 + 2A3 + 2A4 +432479%4A5 + 2A6 + 2A7 + A8 +A9 + 8*ONE) >> 4(A1 + 2A2 + 2A3 + 2A4 +412378%2A5 + 2A6 + 2A7 + 2A8 +A9 + 8*ONE) >> 4(A1 + 2A2 + 3A3 + 4A4 +392463%3A5 + 2A6 + A7 + 8*ONE) >> 4


The present invention discloses efficient SIMD implementations for 4 types of causal FIR filters. In each case, the present invention offered an efficient implementation with SIMD architecture and compared that with conventional SIMD implementations. The present invention also discussed several FIR filters that can be used in MPEG and AVC video coding standards. The present implementations of the invention are considerably more efficient than conventional SIMD implementations.



FIG. 6 is a block diagram of the present signal system being implemented with a general purpose computer or computing device. In one embodiment, the content distribution system is implemented using a general purpose computer or any other hardware equivalents. More specifically, the signal system 600 comprises a processor (CPU) 602, a memory 604, e.g., random access memory (RAM) and/or read only memory (ROM), FIR digital filters 605 for implementing the methods as described above, and various input/output devices 606 (e.g., storage devices, including but not limited to, a tape drive, a floppy drive, a hard disk drive or a compact disk drive, a receiver, a decoder, a decryptor, a transmitter, a clock, a speaker, a display, an output port, a user input device (such as a keyboard, a keypad, a mouse, and the like), or a microphone for capturing speech commands).


It should be understood that the FIR digital filters 605 can be implemented as a physical device or subsystem that is coupled to the CPU 602 through a communication channel. Alternatively, the FIR digital filters 605 can be represented by one or more software applications (or even a combination of software and hardware, e.g., using application specific integrated circuits (ASIC)), where the software is loaded from a storage medium (e.g., a magnetic or optical drive or diskette) and operated by the CPU in the memory 604 of the computer. As such, the FIR digital filters 605 (including associated data structures and methods employed within the encoder) of the present invention can be stored on a computer readable medium or carrier, e.g., RAM memory, magnetic or optical drive or diskette and the like.


While the foregoing is directed to embodiments of the present invention, other and further embodiments of the invention may be devised without departing from the basic scope thereof, and the scope thereof is determined by the claims that follow.

Claims
  • 1. A method for processing an image signal, comprising: providing at least one Finite Impulse Response (FIR) filter, wherein said at least one FIR filter comprises at least one of said functions: (A1+A2+c*ONE)>>1, where cε{−2,−1,0,1,2}, (A1+A2+A3+A4+c*ONE)>>2, where cε{0,1,2}, (A1+A2+A3+A4+A5+A6+A7+A8+c*ONE)>>3, where cε{0,1,2,3,4}. (A1+A2+A3+A4+ . . . +A15+A16+c*ONE)>>4, where cε{0,1,2, . . . , 8}, where each of said A1-A16 represents a vector, where ONE represents a packed vector; where >> represents a bitwise logical right shift; and applying said at least one FIR filter to process the image signal, where a result of said at least one FIR filter is computed using at least an AVG operation.
  • 2. The method of claim 1, wherein said AVG operation is expressed as: AVG(A,B)=[(ai+bi)>>1 for i=1, . . . ,8], where ai and bi represent data values, where A represents a vector and where B represents a vector.
  • 3. The method of claim 1, wherein said ONE is expressed as:
  • 4. The method of claim 1, wherein said result, R, of said at least one FIR filter is computed as:
  • 5. The method of claim 1, wherein said result, R, of said at least one FIR filter is computed as:
  • 6. The method of claim 1, wherein said result, R, of said at least one FIR filter is computed as:
  • 7. The method of claim 1, wherein said result, R, of said at least one FIR filter is computed as:
  • 8. The method of claim 1, wherein said result, R, of said at least one FIR filter is computed as:
  • 9. A computer-readable carrier having stored thereon a plurality of instructions, the plurality of instructions including instructions which, when executed by a processor, cause the processor to perform the steps of a method for processing an image signal, comprising of: providing at least one Finite Impulse Response (FIR) filter, wherein said at least one FIR filter comprises at least one of said functions: (A1+A2+c*ONE)>>1, where cε{−2,−1,0,1,2}, (A1+A2+A3+A4+c*ONE)>>2, where cε{0,1,2}, (A1+A2+A3+A4+A5+A6+A7+A8+c*ONE)>>3, where cε{0,1,2,3,4}, (A1+A2+A3+A4+ . . . +A15+A16+C*ONE)>>4, where cε{0,1,2, . . . , 8}, where each of said A1-A16 represents a vector, where ONE represents a packed vector; where >>represents a bitwise logical right shift; and applying said at least one FIR filter to process the image signal, where a result of said at least one FIR filter is computed using at least an AVG operation.
  • 10. The computer-readable carrier of claim 9, wherein said AVG operation is expressed as: AVG(A,B)=[(ai+bi)>>1 for i=1, . . . ,8], where ai and bi represent data values, where A represents a vector and where B represents a vector.
  • 11. The computer-readable carrier of claim 9, wherein said ONE is expressed as:
  • 12. The computer-readable carrier of claim 9, wherein said result, R, of said at least one FIR filter is computed as:
  • 13. The computer-readable carrier of claim 9, wherein said result, R, of said at least one FIR filter is computed as:
  • 14. The computer-readable carrier of claim 9, wherein said result, R, of said at least one FIR filter is computed as:
  • 15. The computer-readable carrier of claim 9, wherein said result, R, of said at least one FIR filter is computed as:
  • 16. The computer-readable carrier of claim 9, wherein said result, R, of said at least one FIR filter is computed as:
  • 17. An apparatus for processing an image signal, comprising: means for providing at least one Finite Impulse Response (FIR) filter, wherein said at least one FIR filter comprises at least one of said functions: (A1+A2+c*ONE)>>1, where cε{−2,−1,0,1,2}, (A1+A2+A3+A4+c*ONE)>>2, where cε{0,1,2}, (A1+A2+A3+A4+A5+A6+A7+A8+c*ONE)>>3, where cε{0,1,2,3,4}, (A1+A2+A3+A4+ . . . +A15+A16+c*ONE)>>4, where cε{0,1,2, . . . , 8}, where each of said A1-A16 represents a vector, where ONE represents a packed vector; where >> represents a bitwise logical right shift; and means for applying said at least one FIR filter to process the image signal, where a result of said at least one FIR filter is computed using at least an AVG operation.
  • 18. The apparatus of claim 17, wherein said AVG operation is expressed as: AVG(A,B)=[(ai+bi)>>1 for i=1, . . . ,8], where ai and bi represent data values, where A represents a vector and where B represents a vector.
  • 19. The apparatus of claim 17, wherein said ONE is expressed as:
  • 20. The apparatus of claim 17, wherein said result, R, of said at least one FIR filter is computed as at least one of: