The invention relates generally to the encoding and decoding of image and video signals, and more particularly to an improved block transform and inverse transform, along with quantization and de-quantization methods, for encoding and decoding image video signals.
The Discrete Cosine Transform (DCT) is commonly used in block transform image and video (sequences of images) coding, e.g., JPEG and MPEG. Among other reasons, this is because the DCT separates random signals (such as corresponding to image data) into low frequency parts of greater importance and high frequency parts of lesser importance with respect to the image's visual quality, thus facilitating compression.
By way of example, H.26L is an image and/or video codec technology that constructs frames using four-by-four blocks of pixels. Unlike MPEG and JPEG, which uses eight-by-eight blocks, H.26L obtains relatively high-quality compression with four-by-four blocks of pixels by using prediction information of existing other blocks in the same frame, (i.e., intra-frame coding), in addition to estimation and motion compensation between frames, (i.e., inter-frame coding). In general, to accomplish intra-frame prediction, an H.26L encoder tells the corresponding H.26L decoder what other, previous block of pixels in the frame being built is being used as a basis for the prediction, along with identifying which one of six possible predictors (formulas) to use in determining the pixels for the new block (from those of the previous intra-frame block). This leads to a prediction error, which is also provided to the decoder to correct the new block. The prediction error information is encoded with the block transform (DCT) and sent encoded to the decoder, for re-computing the error information, including via an inverse transform, to correct the predicted block.
Image and video encoding or decoding takes a significant amount of processing power. As is known, an encoder typically has far more processing power than do many of the decoders that convert the data to images, as decoders are typically implemented in consumer devices. For example, image and video decoding may take place in television set-top boxes, personal digital assistants (PDAs), pocket-sized personal computers, and more advanced cellular telephones.
Thus, when considering image and video encoding and decoding methods, keeping the decoding simple is important, even if it means that encoding has to be made more computationally complex. Anything that can simplify decoding is desirable, provided that in doing so, the encoding and decoding processes do not adversely impact existing levels of compression, final image quality and the amount of other resources needed at the decoder in any substantial way relative to existing technology.
Briefly, the present invention provides an improved method, system and block transform that significantly simplifies computational complexity for images and video at both the encoder and decoder. At the same time, compression, image/video quality, and other resources are only negligibly affected.
More particularly, an orthogonal block transform and corresponding inverse transform with new integer approximations to the Discrete Cosine Transform (DCT) are provided, along with other computing changes that significantly reduce computational complexity at both the encoder and decoder. Indeed, in one implementation, at the encoder and decoder, the number of transform operations, per coefficient, has been reduced to four additions and one shift in 16-bit arithmetic, (from four additions and three multiplications in 32-bit arithmetic required with the H.26L-specified transform). The present invention correctly transforms the pixel information (e.g., error correction data) because quantization (scaling and rounding to an integer) during encoding, and de-quantization during decoding, via the use of one of three tables selected based on each coefficient's position, have parameter values that already compensate for factors of other transformation multiplications, except for the one performed by the shift operation during the transformation and inverse transformation processes.
Further, during decoding, on each quantized coefficient, the decoder can perform a sixteen-bit multiplication to de-quantize that quantized coefficient into a transform coefficient, instead of a thirty-two bit multiplication (as required in H.26L). On many devices, with typical images and video, the processing benefits of the present invention are thus significant relative to H.26L, especially at the decoder, with only negligible if any loss in quality and/or compression.
Other benefits and advantages will become apparent from the following detailed description when taken in conjunction with the drawings, in which:
Exemplary Operating Environment
The invention may be described in the general context of computer-executable instructions, such as program modules, executed by one or more computers or other devices. Generally, program modules include routines, programs, objects, components, data structures and so forth that perform particular tasks or implement particular abstract data types. Typically the functionality of the program modules may be combined or distributed as desired in various embodiments. Computing device 120 typically includes at least some form of computer readable media. Computer-readable media can be any available media that can be accessed by the computing device 120. By way of example, and not limitation, computer readable media may comprise computer storage media and communication media. Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data. Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can accessed by the computing device 120. Communication media typically embodies computer readable instructions, data structures, program modules or other data in a modulated data signal such as a carrier wave or other transport mechanism and includes any information delivery media. The term “modulated data signal” means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal. By way of example, and not limitation, communication media includes wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media. Combinations of the any of the above should also be included within the scope of computer readable media.
One or more application programs 132 are loaded into memory 124 and run on the operating system 130. Examples of applications include email programs, scheduling programs, PIM (personal information management) programs, word processing programs, spreadsheet programs, Internet browser programs, and so forth. The handheld personal computer 120 may also include a notification manager 134 loaded in the memory 124, which executes on the processor 122. The notification manager 134 handles notification requests, e.g., from the application programs 132.
The handheld personal computer 120 has a power supply 136, which is implemented as one or more batteries. The power supply 136 may further include an external power source that overrides or recharges the built-in batteries, such as an AC adapter or a powered docking cradle.
The exemplary handheld personal computer 120 represented in
Encoding and Decoding
By way of background, the Discrete Cosine Transform (DCT) maps a length-N vector x into a new vector X of transform coefficients by a linear transformation X=H x, where the element in the kth row and nth column of H is defined by
for k=0, 1, . . . ,N−1,and n=0, 1, . . . ,N−1, with c0=√{square root over (2)} and ck=1 for k>1. The DCT matrix is orthogonal, so its inverse equals its transpose, that is x=H−1 X=HT X.
One disadvantage of the DCT is that the entries H(k, n) are irrational numbers, and so integer input data x(n) will map to irrational transform coefficients X(k). As a result, with digital computers, when the direct and inverse transforms are computed in cascade, the output data does not exactly equal the input data. In other words, if computed as X=H x, and u=round(HT X), then it is not true that u(n)=x(n) for all n. However, by introducing appropriate scale factors α, γ, e.g., X=γ H x and u=round(α HT X), then u(n)=G x(n), where G is an integer, for almost all n, when α and γ are chosen to be large enough, but this does not guarantee an exact result.
In a motion-compensated video encoder, for example, the data of past decoded frames are used as reference information for prediction information that will be used to generate the current frame. Therefore, as part of encoding, the encoder generates its own decoded frames, whereby the encoder needs to compute inverse transforms. If the formula u=round(α HT X) is used, then different floating-point formats and rounding strategies in different processors lead to different results. As a result, there will be a drift between the decoded data at the encoder versus that decoded by decoders (which have different processors), whereby the image worsens more and more per each new frame, since the encoder is basing prediction/motion information on frames of blocks that are increasingly less and less like the frames of blocks that the decoder is producing.
One solution to the data drift problem approximates the matrix H by a matrix containing only integers, whereby rounding errors are eliminated. If the rows of H are orthogonal and have the same norm (sum of the squares), then it follows that u can be computed exactly in integer arithmetic for all integer x. In other words, when the direct transform is computed by X=H x and the inverse transform by u=HT X, then u=G x results, where G is an integer equal to the squared norm of any of the rows in H.
One way to generate integer approximations to the DCT is by using the general formula:
Q(k, n)=round (α H(k, n))
where α is a scaling parameter.
In the H.26L video compression standard, the image is made up of blocks of four pixels by four pixels, whereby N=4 in the DCT formula in H.26L. This results in the DCT matrix equaling:
where c√{square root over (2)} cos(π/8) and s√{square root over (2)} sin(π/8).
The transform matrix in the current version of H.26L is obtained by setting α=26,whereby the values compute to:
With a scaling parameter value of 26, the rows and columns of Q0 are orthogonal to each other (i.e., the inner product of any two columns is zero), and all rows and columns have a norm equal to 676. In fact, for values wherein α<50, only α=2 or α=26 provide orthogonal matrices with equal norm rows. However, the solution for α=2 does not lead to good compression, and larger values for α are not attractive because of the increase in the computational complexity (e.g., word length) required to compute the results of the direct transform X=Q0 x. Hence, α=26 has been heretofore chosen in H.26L.
The inverse transform is defined by x′=Q0 X, so that it can also be computed with integer arithmetic. From the definition above, x′=676 x, i.e. the reconstructed data x′ is equal to the original data x amplified by an integer gain of 676 (which is the norm of any of the rows in Q0).
In accordance with one aspect of the present invention, a block transform matrix is provided that uses integer approximations that are orthogonal, yet have different values that significantly reduce computational complexity when encoding and decoding. More particularly, using α=2.5, the following matrix is generated:
Note that the rows of QD are orthogonal to each other, and, while their norms are different (rows zero and two have norms equal to four, while rows one and three have norms equal to ten), as described below this is handled in quantization and de-quantization in a manner that does not significantly increase computational complexity.
Turning to
In general, the encoder 200 operates by transforming each block of N×N input pixel data 202 (e.g., representing error correction information) via a separable two-dimensional transforms 204. More particularly, first the rows of pixel data within the block are transformed by a row transformation process 206, and then the results of the row transformation (not specifically represented in
In H.26L, the specified transform matrix results in the following formulas for computing the transform coefficients:
A=13a+13b+13c+13d
B=17a+7b−7c−17d
C=13a−13b−13c+13d
D=7a−17b+17c−7d
where [abcd] first represents a row of pixel values, and then, after row transformation, represents a column of those row-transformed data values, in a four-by-four block. However, in practice, these formulas can be simplified, and the DCT matrix has a recursive structure that reduces the number of required multiplication and addition operations. Nevertheless, the above matrix requires at least four additions and three multiplications to compute the transform coefficients for each pixel. Moreover, because each pixel may be a signed nine-bit value, when multiplied by the row and column factors (the gain equals the norm of 676) the computation requires 32-bit arithmetic, in which a single computation takes as much time as many 16-bit computations. While these considerations are not normally as significant during encoding, with these H.26L specified matrix values, the extra operations and 32-b Type equation here, it arithmetic also occur during decoding, wherein the expense is significant.
In contrast to the H.26L-specified matrix, using the same general formula representation, as described above the present invention's block transform matrix is:
which provides the following formulas for computing the transform coefficients:
A=a+b+c+d
B=2a+b−c−2d
C=a−b−c+d
D=a−2b+2c−d
Part of the reason that this formula/matrix works more optimally is that instead of performing individual multiplications in the transformation stage, the multiplication factors are essentially handled in the quantization phase, by simply changing the values used in scaling. As a result, the only multiplication with these formulas is by a power of two, which in processors is accomplished via a simple shift left operation, not an actual multiplication. With u, v, y and z used as auxiliary variables, and wherein “<<1” means shift left one bit (equivalent to multiplying by two but computationally faster), the above formulas simplify to the following formulas:
u=a+d;
v=b+c;
y=b−c;
z=a−d;
A=u+v;
C=u−v;
B=y+(z<<1);
D=z−(y<<1);
Via the butterfly structure represented in
Once the transform coefficients 210 are computed, the block of coefficients 210 is quantized by scaling the values and rounding them to their nearest integers. This is represented in
The quantization formula for scaling and rounding is as follows, which should be computed with 32-bit precision:
L=[K×A(QP, r)+fX]>>20
where L is the quantized coefficient, K is the transformed coefficient, A(QP, r) is the scale factor indexed by the quantization parameter QP and r, wherein r identifies which table (Q0, Q1 or Q2 to use), fX is in the range [0-0.5]×220 (fX has the same sign as K), and >>20 means shift right twenty places (divide by 1,048,576), to scale the number down. The quantization process thus introduces errors. Note that although 32-bit arithmetic is used for quantization, this is only required when encoding, which is not as significant as when decoding (wherein de-quantization needs only 16-bit precision, as described below).
The index r thus selects which of the three quantization tables Q0, Q1 or Q2 to use to adjust for the three different norms, based on the position of the coefficient K in the block:
In an exemplary implementation, the scaling factor A(QP, r) depends on the quantization parameter QP and coefficient position group r according to the following tables:
Returning to
Turning to a consideration of decoding in the block transform decoder 222, at some time, regardless of how delivered, the entropy encoded output bits are fed as input bits to an entropy decoder 224. In general, such entropy decoders are known, and thus among other possible operations, it suffices to state that the entropy encoder 224 reproduces the quantized coefficients 226 for a given block. Note that typically the encoding and decoding are not lossy, i.e., the quantized coefficients 216 fed into the entropy encoder 218 will be identical to the quantized coefficients 226 produced by entropy decoder 224.
In general, the block transform decoder 222 mirrors the operation of the block transform encoder 200, although as described below and in keeping with the present invention, a modified inverse transform matrix is provided that enables 16-bit arithmetic to be used throughout the decoding process, thus greatly simplifying the decoder's computational complexity.
Once the quantized coefficients 226 are retrieved from the entropy decoder 224, each quantized coefficient L is converted to a reconstructed (de-quantized) value K′ by a de-quantization process 228 implementing the formula:
K′=L×B(QP, r)
where the scaling factor B depends on the QP index used when encoding, and r determines the de-quantization parameters 230 by selecting a parameter from one of the tables D0, D1, or D2 (to adjust for the three norms). Note that r can be deduced from the position of the coefficient being de-quantized in the block, as described above with respect to quantization, although it is feasible to send the r value from the encoder, which would possibly reduce computational complexity on the decoder but would require at least two more bits be sent per coefficient to identify r.
In this manner, the scaling factor B(QP, r) depends on the quantization parameter index for QP used when encoding, and the coefficient position group r. In an exemplary implementation, that dependency is specified according to the following tables:
As can be appreciated, the de-quantization formula scales the coefficients back up to larger values, although each of these scaling values is low enough to ensure that only 16-bit arithmetic is needed at the decoder. It should be noted that since each entry in a table is mathematically related (based on the norm) to corresponding QP-indexed table entries in the other two tables, it is alternatively possible have only one table of QP values, with an appropriate mathematical adjustment based on the r value, rather than have three tables. However, lookups in small tables are relatively efficient, and the number of bytes required to store three tables of thirty-two entries at two bytes per entry instead of one table of thirty-two entries at four bits per entry (required with the specified H.26L transform) is sixty-four extra bytes, which is negligible in contemporary computing devices, especially considering that the transform coefficients generated by de-quantization fit into sixteen bit words instead of 32-bit DWords, thereby reducing the total amount of memory needed.
As also represented in
In keeping with the present invention, instead of using the inverse transform QI=QDT, as would normally be done, to allow for 16-bit de-quantization and inverse transform computation, the present invention defines the following inverse transform matrix for use:
Note that the columns of QI are orthogonal to each other, but their norms are different. However, this was handled via the “r” value used in selecting the de-quantization parameter, as described above. Further, note that in generating QI from QD, QD was transposed, with columns one and three multiplied by one-half. Again, however, the QP values already present in the tables D0, D1 and D2 have been adjusted for this in advance, eliminating the need for any additional computational complexity to compensate. Moreover, the only “multiplication” that will need to be done when computing the inverse transforms with such a matrix is by one-half, which is actually performed by a highly-efficient shift right operation. Note that the small amount of noise introduced by such imprecise division has essentially no impact in the rate-distortion performance.
With QI defined as above, its maximum gain equals four. Therefore, the two-dimensional inverse transformation process only expands the dynamic range by four bits, allowing for computation in 16-bit arithmetic.
The column inverse transform process 236 and row inverse transform process 238 (that operates on the result of the column inverse transform process) represented in
u=A+C;
v=A−C;
y=(B>>1)−D;
z=(D>>1)+B;
a′=u+z;
b′=v+y;
c′=v−y;
d′=u−z;
where u, v, y and z are auxiliary variables and >>1 means shift one bit to the right (equivalent to multiplying by one-half). Similar to encoding, via the butterfly structure represented in
The reconstructed pixel values after the 7-bit shift have a 9-bit range, so the inverse transform can be computed in 16-bit arithmetic. The de-quantization tables D0, D1 and D2 set forth above are such that the de-quantization equations will not overflow when computed in 16-bit arithmetic. The following tables summarizes some of the computational advantages when using the transform and inverse transform of the present invention relative to those specified in H.26L:
As can be readily appreciated, such savings are significant, particularly on 16-bit capable processors. For example, in practice, a typical 16-bit PDA processor may see an improvement in decoding of roughly double the speed with the present invention.
Moreover, the transform/inverse transform have been tested with respect to its impact on quality and compression. Results for coding gain (usually defined as an increase in signal-to-noise ratio) show that the use of the transforms of the present invention with test data results in a loss of only about 0.01 dB relative to the H26L transforms, which is negligible, and in fact is likely far smaller than that with actual video signal information, such as pixel prediction errors. Further, overall performance was tested relative to the H.26L specified transforms across each of the thirty-two quantization parameters, resulting in only a plus or minus half percent range of differences, with an average very close to zero, thereby indicating that the transform of the present invention performed as well as the transform specified in H.26L.
As can be seen from the foregoing detailed description, there is provided an improved transform and inverse transform matrices for image or video encoding and decoding, respectively, that significantly reduce computational complexity with respect to other known transforms without adversely impacting compression or quality. Transformation multiplications are eliminated yet correct results are obtained because quantization and de-quantization parameter values compensate for those multiplication factors, except for one performed by a shift operation during the transformation and inverse transformation processes. Because of the values used, transformation operations during encoding, and de-quantization and transformation operations during decoding can be performed in 16-bit arithmetic (for pixel data represented by nine bits or less).
While the invention is susceptible to various modifications and alternative constructions, certain illustrated embodiments thereof are shown in the drawings and have been described above in detail. It should be understood, however, that there is no intention to limit the invention to the specific forms disclosed, but on the contrary, the intention is to cover all modifications, alternative constructions, and equivalents falling within the spirit and scope of the invention.
This application is a continuation of U.S. patent application Ser. No. 11/067,101,filed Feb. 25, 2005, which is a continuation of U.S. patent application Ser. No. 09/955,577,filed Sep. 18, 2001,both of which are incorporated herein by reference.
Number | Name | Date | Kind |
---|---|---|---|
4922537 | Frederiksen | May 1990 | A |
5168375 | Reisch et al. | Dec 1992 | A |
5325215 | Shibata et al. | Jun 1994 | A |
5357594 | Fielder | Oct 1994 | A |
5379351 | Fandrianto et al. | Jan 1995 | A |
5394349 | Eddy | Feb 1995 | A |
5416604 | Park | May 1995 | A |
5430556 | Ito et al. | Jul 1995 | A |
5559557 | Kato | Sep 1996 | A |
5587708 | Chiu | Dec 1996 | A |
5590066 | Ohki | Dec 1996 | A |
5768167 | Kuroda | Jun 1998 | A |
5790441 | Oami et al. | Aug 1998 | A |
5844609 | Filor et al. | Dec 1998 | A |
5864637 | Liu et al. | Jan 1999 | A |
5970173 | Lee et al. | Oct 1999 | A |
5974184 | Eifrig et al. | Oct 1999 | A |
5995539 | Miller | Nov 1999 | A |
5999657 | Yasuhiko | Dec 1999 | A |
6002801 | Strongin et al. | Dec 1999 | A |
6006179 | Wu et al. | Dec 1999 | A |
6029126 | Malvar | Feb 2000 | A |
6057855 | Barkans | May 2000 | A |
6058215 | Schwartz et al. | May 2000 | A |
6073153 | Malvar | Jun 2000 | A |
6085221 | Graf | Jul 2000 | A |
6115689 | Malvar | Sep 2000 | A |
6124995 | Kim | Sep 2000 | A |
6137916 | Chang et al. | Oct 2000 | A |
6154762 | Malvar | Nov 2000 | A |
6301304 | Jing et al. | Oct 2001 | B1 |
6324560 | Malvar | Nov 2001 | B1 |
6356870 | Hui et al. | Mar 2002 | B1 |
6363117 | Kok | Mar 2002 | B1 |
6370502 | Wu et al. | Apr 2002 | B1 |
6389071 | Wilson | May 2002 | B1 |
6421464 | Tran et al. | Jul 2002 | B1 |
6473534 | Merhav et al. | Oct 2002 | B1 |
6487574 | Malvar | Nov 2002 | B1 |
6496795 | Malvar | Dec 2002 | B1 |
6507614 | Li | Jan 2003 | B1 |
6574651 | Cui et al. | Jun 2003 | B1 |
6600785 | Nishigori et al. | Jul 2003 | B1 |
6606725 | Wang et al. | Aug 2003 | B1 |
6643408 | Kobayashi | Nov 2003 | B2 |
6687726 | Schneider | Feb 2004 | B1 |
6694342 | Mou | Feb 2004 | B1 |
6701019 | Wu et al. | Mar 2004 | B1 |
6728317 | Demos | Apr 2004 | B1 |
6831951 | Yamada | Dec 2004 | B2 |
6882685 | Malvar | Apr 2005 | B2 |
6944224 | Zhao et al. | Sep 2005 | B2 |
6970479 | Abrahamsson et al. | Nov 2005 | B2 |
7028063 | Sarmaru et al. | Apr 2006 | B1 |
7075530 | D'Amora | Jul 2006 | B2 |
7106797 | Malvar | Sep 2006 | B2 |
7117053 | Absar et al. | Oct 2006 | B1 |
7123655 | Kerofsky | Oct 2006 | B2 |
7194138 | Bright et al. | Mar 2007 | B1 |
7197525 | Stein et al. | Mar 2007 | B2 |
RE40081 | Tran et al. | Feb 2008 | E |
7379498 | Fue et al. | May 2008 | B2 |
7492950 | Suzuki et al. | Feb 2009 | B2 |
7499495 | Srinivasan | Mar 2009 | B2 |
7502415 | Lin et al. | Mar 2009 | B2 |
7555167 | Srinivasan et al. | Jun 2009 | B2 |
7688895 | Winger et al. | Mar 2010 | B2 |
20020013703 | Matsumoto et al. | Jan 2002 | A1 |
20020044602 | Ohki | Apr 2002 | A1 |
20020154693 | Demos et al. | Oct 2002 | A1 |
20030006916 | Yakamizawa | Jan 2003 | A1 |
20030058940 | Gunnewiek et al. | Mar 2003 | A1 |
20030093452 | Zhou | May 2003 | A1 |
20030147463 | Sato et al. | Aug 2003 | A1 |
20050004964 | Luo | Jan 2005 | A1 |
20050013365 | Mukerjee et al. | Jan 2005 | A1 |
20050018774 | Winger et al. | Jan 2005 | A1 |
20050063471 | Regunathan et al. | Mar 2005 | A1 |
20050094726 | Park | May 2005 | A1 |
20050213659 | Malvar | Sep 2005 | A1 |
20050213835 | Guangxi et al. | Sep 2005 | A1 |
20050238096 | Holcomb et al. | Oct 2005 | A1 |
20050259729 | Sun | Nov 2005 | A1 |
20060133481 | Chujoh | Jun 2006 | A1 |
20070027677 | Ouyang et al. | Feb 2007 | A1 |
20070196025 | Tran et al. | Aug 2007 | A1 |
20070271321 | Reznik et al. | Nov 2007 | A1 |
20080198935 | Srinivasan et al. | Aug 2008 | A1 |
20090034856 | Moriya et al. | Feb 2009 | A1 |
20100150394 | Bloom et al. | Jun 2010 | A1 |
20100169349 | Zou et al. | Jul 2010 | A1 |
20120014431 | Zhao et al. | Jan 2012 | A1 |
20120082218 | Misra et al. | Apr 2012 | A1 |
Number | Date | Country |
---|---|---|
2452343 | Jan 2003 | CA |
1452396 | Oct 2003 | CN |
4133460 | Apr 1993 | DE |
854653 | Jul 1998 | EP |
1359546 | Nov 2003 | EP |
63-219066 | Sep 1988 | JP |
04-282988 | Oct 1992 | JP |
06-045948 | Feb 1994 | JP |
06-045949 | Feb 1994 | JP |
06-054307 | Feb 1994 | JP |
06-105296 | Apr 1994 | JP |
06-165155 | Jun 1994 | JP |
09-008665 | Jan 1997 | JP |
10-091614 | Apr 1998 | JP |
11-284861 | Oct 1999 | JP |
2001-292450 | Oct 2001 | JP |
2003-333598 | Nov 2003 | JP |
03-348598 | Dec 2003 | JP |
2006-005478 | Jan 2006 | JP |
3964765 | Aug 2007 | JP |
3964925 | Aug 2007 | JP |
10-2003-0019787 | Mar 2003 | KR |
10-2005-0034889 | Apr 2005 | KR |
2201654 | Mar 2003 | RU |
2005107478 | Jul 2006 | RU |
WO 0140985 | Jun 2001 | WO |
WO 2005076614 | Aug 2005 | WO |
WO 2006113019 | Oct 2006 | WO |
WO 2007010690 | Jan 2007 | WO |
Entry |
---|
“B.H.A. Corporation Introduces the XVD™ Media Platform,” Press Release, 2 pp. (Apr. 24, 2003). |
Communication pursuant to Article 94(3) EPC dated Jan. 26, 2011, from European Patent Application No. 06020298.3, 6 pp. |
Communication pursuant to Article 94(3) EPC dated Jan. 27, 2011, from European Patent Application No. 06020297.5, 6 pp. |
Communication pursuant to Article 94(3) EPC dated Jan. 27, 2011, from European Patent Application No. 06020296.7, 6 pp. |
European Search Report dated Jan. 7, 2011, from European Patent Application No. 06020296.7, 8 pp. |
European Search Report dated Jan. 7, 2011, from European Patent Application No. 06020297.5, 8 pp. |
European Search Report dated Jan. 7, 2011, from European Patent Application No. 06020298.3, 8 pp. |
Gao et al., “Bit Depth Scalability,” Joint Video Team (JVT) of ISO/IEC MPEG & ITU-T VCEG, JVT-V061, 11 pp. (Jan. 2007). |
Notice on the First Office Action dated Dec. 6, 2010, from Chinese Patent Application No. 200880005630.0, 6 pp. |
Notice of Allowance dated Jul. 16, 2010, from Japanese Patent Application No. 2006-279187, 6 pp. |
Notice of Allowance dated Jul. 16, 2010, from Japanese Patent Application No. 2006-279189, 6 pp. |
Notice of Allowance dated Jul. 16, 2010, from Japanese Patent Application No. 2006-322322, 6 pp. |
Winken et al., “SVC bit depth scalability,” Joint Video Team (JVT) of ISO/IEC MPEG & ITU-T VCEG, JVT-V078, 17 pp. (Jan. 2007). |
U.S. Appl. No. 60/341,674, filed Dec. 17, 2001, Lee et al. |
U.S. Appl. No. 60/488,710, filed Jul. 18, 2003, Srinivasan et al. |
U.S. Appl. No. 60/501,081, filed Sep. 7, 2003, Srinivasan et al. |
U.S. Appl. No. 60/501,133, filed Sep. 7, 2003, Holcomb et al. |
Adams et al., “Design of Reversible Subband Transforms Using Lifting,” IEEE, pp. 489-492 (Aug. 1997). |
Arai, et al., “A Fast DCT-SQ Scheme for Images,” The Transactions of the IEICE, vol. E 71, No. 11, Nov. 1988, pp. 1095-1097. |
Bjontegaard, “H.26L Test Model Long Term No. 8 (TML-8) Draft 0,” Video Coding Experts Group (VCEG), pp. 1-46. |
Bruekers et al., “New Networks for Perfect Inversion and Perfect Reconstruction,” IEEE Journal on Selected Areas in Communications, vol. 10, No. 1, pp. 130-137 (Jan. 1992). |
C. Loeffler et al., “Practical fast 1-D DCT algorithms with 11 multiplications,” Proc. IEEE ICASSP, vol. 2, pp. 988-991, Feb. 1989. |
Calderbank et al., “Lossless Image Compression Using Integer to Integer Wavelet Transforms,” IEEE, 4 pp. (Oct. 1997). |
Calderbank et al., “Wavelet Transforms that Map Integers to Integers,” pp. 1-39 (Aug. 1996). |
Certificate of Patent dated Jun. 11, 2008, from Korean Patent Application No. 10-2002-54526, 2 pp. |
Certificate of Patent dated Jun. 11, 2008, from Korean Patent Application No. 10-2006-94696, 2 pp. |
Certificate of Patent dated Jun. 11, 2008, from Korean Patent Application No. 10-2006-94699, 2 pp. |
Certificate of Patent dated Jun. 11, 2008, from Korean Patent Application No. 10-2006-94777, 2 pp. |
Cham, “Development of Integer Cosine Transforms by the Principle of Dyadic Symmetry,” IEEE Proceedings, vol. 136, Pt. 1, No. 4, pp. 276-282 (Aug. 1989). |
Chan, “The Generalized Lapped Transform (GLT) for Subband Coding Applications,” IEEE, pp. 1508-1511 (May 1995). |
Decision to Grant a Patent dated Apr. 24, 2007, from Japanese Patent Application No. 2002-272,011, 1 p. |
Decision to Grant a Patent dated Apr. 24, 2007, from Japanese Patent Application No. 2006-279188, 1 p. |
European Search Report dated Feb. 23, 2006, from European Patent Application No. 02019057.5, 8 pp. |
Fujiwara, “The Latest MPEG Textbook,” pp. 146-147 (1994). |
Golston, “Comparing Media Codecs for Video Content,” Embedded Systems Conference, 18 pp. (Sep. 2004). |
Hohl, “An 8x8 Discrete Cosine Transform Implementation on the TMS320C25 or the TMS320C30,” Texas Instruments Application Report SPRA115, pp. 1-25 (1990) http://focus.ti.com/lit/an/spra115/spra115.pdf [Downloaded from the World Wide Web on Dec. 28, 2005]. |
Ikehara et al., “Generalized Lapped Biorthogonal Transforms with Integer Coefficients,” IEEE, pp. 886-890 (Oct. 1998). |
Ishii et al., “Parallel Variable Length Decoding with Inverse Quantization for Software MPEG-2 Decoders,” Signal Processing Systems 1997, IEEE, pp. 500-509 (1997). |
ISO/IEC, “ISO/IEC 11172-2, Information technology—Coding of moving pictures and associated audio for digital storage media at up to about 1,5 Mbit/s—Part 2: Video,” 112 pp. (1993). |
ISO/IEC, “JTC1/SC29/WG11 N2202, Information Technology—Coding of Audio-Visual Objects: Visual, ISO/IEC 14496-2,” 329 pp. (1998). |
ITU-T, “ITU-T Recommendation H.261, Video Codec for Audiovisual Services at p x 64 kbits,” 25 pp. (1993). |
ITU-T, “ITU-T Recommendation H.262, Information Technology—Generic Coding of Moving Pictures and Associated Audio Information: Video,” 205 pp. (1995). |
ITU-T, “ITU-T Recommendation 11.262, Information Technology—Generic Coding of Moving Pictures and Associated Audio Information: Video,” pp. 55-57, 71-73, (1995). |
ITU-T, “ITU-T Recommendation H.263, Video coding for low bit rate communication,” 162 pp. (1998). |
J. W. Cooley and J. W. Tukey, “An algorithm for the machine calculation of complex Fourier series,” Math. Computation, vol. 19, pp. 297-301, 1965. |
Jeong et al., “A Fast Algorithm Suitable for DCT Implementation with Integer Multiplication,” TENCON '96, vol. 2, IEEE, pp. 784-787 (1996). |
Johanson, “SIRAM—Scalable Internet Real-time Media Project Report,” 11 pp. (undated). |
Joint Video Team of ISO/IEC MPEG and ITU-T VCEG, “Final Joint Committee Draft of Joint Video Specification (ITU-T Recommendation H.264, ISO/IEC 14496-10 AVC,” 206 pp. (Aug. 2002). |
Karp et al., “Biorthogonal Cosine-Modulated Filter Banks Without DC Leakage,” IEEE, pp. 1457-1460 (May 1998). |
Karp et al., “Efficient Prototype Filter Realizations for Cosine-Modulated Filter Banks,” Seizieme Colloque Gretsi, pp. 551-554 (Sep. 1997). |
Karp et al., “Lifting Schemes for Biorthogonal Modulated Filter Banks,” IEEE, pp. 443-446 (Jul. 1997). |
Li et al., “On Implementing Transforms from Integers to Integers,” Department of Electrical Engineering, Princeton University, pp. 881-885, Jun. 1998. |
Liang et al., “A 16-bit Architecture for H.26L, Treating DCT Transforms and Quantization,” Thirteenth Meeting: Austin, Texas, USA, pp. 1-17 (Apr. 2001). |
Liang et al., “Approximating the DCT with the Lifting Scheme: Systematic Design and Applications,” Conference Record of the 34th Asilomar Conference, vol. 1, IEEE, pp. 192-196 (Oct. 2000). |
Liang et al., “Fast Multiplierless Approximation of the DCT with the Lifting Scheme,” Proc. SPIE Apps. of Digital Image Processing XXIII, 12 pp. (Aug. 2000). |
Loomis et al., “VC-1 Technical Overview,” 5 pp. (Apr. 2006). |
Malvar et al., “The LOT: Transform Coding Without Blocking Effects,” IEEE Transactions on Acoustics, Speech, and Signal Processing, vol. 37, No. 4, pp. 553-559 (Apr. 1989). |
Malvar, “Biorthogonal and Nonuniform Lapped Transforms for Transform Coding with Reduced Blocking and Ringing Artifacts,” IEEE, 29 pp. (Oct. 20, 1997). |
Malvar, “Lapped Biorthogonal Transforms for Transform Coding with Reduced Blocking and Ringing Artifacts,” IEEE, 4 pp. (Apr. 1997). |
Malvar, “Fast computation of the discrete cosine transform and the discrete Hartley transform,” IEEE Trans. Acoust., Speech, Signal Processing, vol. ASSP-35, pp. 1484-1485, Oct. 1987. |
Malvar, “Low-complexity Length-4 Transform and Quantization with 16-bit Arithmetic,” Proposal, ITU Study Group 16 Question 6, Video Coding Experts Group, 14th meeting held Sep. 24-27, 2001 in Santa Barbara, CA, 24 pp. |
Malvar, Signal Processing with Lapped Transforms, Chapter 5, “Modulated Lapped Transforms,” pp. 175-218 (Jan. 1992). |
Microsoft Corporation, “Microsoft Debuts New Windows Media Player 9 Series, Redefining Digital Media on the PC,” 4 pp. (Sep. 4, 2002) [Downloaded from the World Wide Web on Jul. 16, 2004]. |
Mook, “Next-Gen Windows Media Player Leaks to the Web,” BetaNews, 18 pp. (Jul. 19, 2002) [Downloaded from the World Wide Web on Mar. 16, 2004]. |
Nguyen et al., “Structures for M-Channel Perfect-Reconstruction FIR QMF Banks Which Yield Linear-Phase Analysis Filters,” IEEE Transactions on Acoustics, Speech, and Signal Processing, vol. 38, No. 3, pp. 433-446 (Mar. 1990). |
Non-final Office action mailed Dec. 1, 2009, from related U.S. Appl. No. 11/105,216. |
Non-final Office action mailed Jun. 8, 2009, from related U.S. Appl. No. 11/105,216. |
Non-final Office action mailed Mar. 3, 2009, from related U.S. Appl. No. 11/104,956. |
Non-final Office action mailed Nov. 12, 2009, from related U.S. Appl. No. 11/104,956. |
Notice of Preliminary Rejection dated Oct. 18, 2007, from Korean Patent Application No. 10-2002-54526, 5 pp. |
Notice of Preliminary Rejection dated Oct. 18, 2007, from Korean Patent Application No. 10-2006-94696, 4 pp. |
Notice of Preliminary Rejection dated Oct. 18, 2007, from Korean Patent Application No. 10-2006-94699, 4 pp. |
Notice of Preliminary Rejection dated Oct. 18, 2007, from Korean Patent Application No. 10-2006-94777, 4 pp. |
Notice on First Office Action dated Feb. 1, 2008, from Chinese Patent Application No. 200510119219.4, 8 pp. |
Notice on First Office Action dated Feb. 1, 2008, from Chinese Patent Application No. 200510119220.7, 7 pp. |
Notice on First Office Action dated Feb. 1, 2008, from Chinese Patent Application No. 200510119221.1, 7 pp. |
Notice on Grant of Patent dated Aug. 26, 2005, from Chinese Patent Application No. 02143205.8, 4 pp. |
Notice on Grant of Patent dated Dec. 5, 2008, from Chinese Patent Application No. 200510119220.7, 4 pp. |
Notice on Grant of Patent dated Oct. 10, 2008, from Chinese Patent Application No. 200510119221.1, 4 pp. |
Notice on Office Action dated Jan. 7, 2005, from Chinese Patent Application No. 02143205.8, 9 pp. |
Official Notice of Final Rejection dated Apr. 21, 2009, from Japanese Patent Application No. 2006-279187, 5 pp. |
Official Notice of Final Rejection dated Apr. 21, 2009, from Japanese Patent Application No. 2006-279189, 5 pp. |
Official Notice of Final Rejection dated Apr. 21, 2009, from Japanese Patent Application No. 2006-322322, 6 pp. |
Official Notice of Rejection dated Dec. 15, 2006, from Japanese Patent Application No. 2002-272,011, 9 pp. |
Official Notice of Rejection dated Dec. 15, 2006, from Japanese Patent Application No. 2006-279188, 9 pp. |
Official Notice of Rejection dated Jun. 24, 2008, from Japanese Patent Application No. 2006-279187, 9 pp. |
Official Notice of Rejection dated Jun. 24, 2008, from Japanese Patent Application No. 2006-279189, 11 pp. |
Official Notice of Rejection dated Jun. 24, 2008, from Japanese Patent Application No. 2006-322322, 9 pp. |
Oraintara et al., “Integer Fast Fourier Transform,” IEEE Trans. on Signal Processing, vol. 50, No. 3, pp. 607-618 (Mar. 2002). |
Partial European Search Report dated Oct. 18, 2005, from European Patent Application No. 02019057.5, 6 pp. |
Pei et al., “The Integer Transforms Analogous to Discrete Trigonometric Transforms,” IEEE Transactions on Signal Processing, vol. 48, No. 12, pp. 3345-3364 (Dec. 2000). |
Printouts of FTP directories from http://ftp3.itu.ch , 8 pp. (downloaded from the World Wide Web on Sep. 20, 2005.) |
Reader, “History of MPEG Video Compression—Ver. 4.0,” 99 pp., document marked Dec. 16, 2003. |
Rubino et al., “Improved Chen-Smith Image Coder,” Electrical Engineering Department, University of Texas at Arlington, pp. 267-270, 1993. |
Second Office Action dated Aug. 15, 2008, from Chinese Patent Application No. 200510119219.4, 8 pp. |
Shao, “Implementing JPEG with TMS320C2xx Assembly Language Software,” Texas Instruments Application Report SPRA615, pp. 1-48 (Jan. 2000) http://focus.ti.com/lit/an/spra615/spra615.pdf [Downloaded from the World Wide Web on Dec. 28, 2005]. |
Sriram et al., “MPEG-2 Video decoding on the TMS320C6X DSP Architecture,” Conference Record of the 32nd Asilomar Conference, vol. 2, IEEE, pp. 1735-1739 (1998). |
Sullivan et al., “The H.264/AVC Advanced Video Coding Standard: Overview and Introduction to the Fidelity Range Extensions,” 21 pp. (Aug. 2004). |
Sweldens, “The Lifting Scheme: A Custom-Design Construction of Biorthogonal Wavelets,” 29 pp. (Nov. 1994). |
Tian et al., “Dyadic Rational Biorthogonal Coifman Wavelet Systems,” Technical Report CML TR 96-07, 50 pp. (Feb. 27, 1996). |
Topiwala, “FastVDO Unified 16-Bit Framework,” FastVDO LLC Powerpoint Presentation, 26 pp. (Jan. 2002). |
Trac D. Tran, “The BinDCT: Fast Multiplierless Approximation of the DCT,” IEEE Signal Processing Letters, vol. 7, No. 6, pp. 141-144 (Jun. 2000). |
Tran et al., “The Generalized Lapped Biorthogonal Transform,” IEEE, pp. 1441-1444 (May 1998). |
Tran, “The LIFTLT: Fast Lapped Transforms via Lifting Steps,” IEEE Transactions on Signal Processing Letters, vol. 7, Issue 6, pp. 145-148 (Jun. 2000). |
Tran, “The LIFTLT: Fast Lapped Transforms Via Lifting Steps,” IEEE, vol. 2, pp. 745-748 (Oct. 1999). |
W. Chen, C. H. Smith, and S. C. Fralick, “A fast computational algorithm for the discrete cosine transform,” IEEE Trans. Commun., vol. 25, pp. 1004-1009, Sep. 1977. |
Wien, “Variable Block-Size Transforms for Hybrid Video Coding,” Dissertation, 182 pp. (Feb. 2004). |
Hallapuro et al., “Low complexity (I) DCT,” VCEG-N43r3, 11 pp. (Sep. 2001). |
Hallapuro et al., “Low complexity (I) DCT,” VCEG-O25, 11 pp. (Dec. 2001). |
Hallapuro et al., “Low Complexity Transform and Quantization—Part I: Basic Implementation,” JVT-B038, 18 pp. (Jan. 2002). |
Hallapuro et al., “Low Complexity Transform and Quantization—Part II: Extensions,” JVT-B039, 15 pp. (Jan. 2002). |
Kadono et al., “Proposal of Improved 2D-VLC coding for High-Bitrate,” JVT-B056, 11 pp. (Jan. 2002). |
Kerofsky, “AHG Report: Transform and Quantization,” JVT-B008, 4 pp. (Jan. 2002). |
Kerofsky, “Core experiment on reduced complexity transform and quantization,” VCEG-N78r1, 3 pp. (Sep. 2001). |
Kerofsky, H.26L Transform/quantization complexity reduction Ad Hoc Report, VCEG-O09, 4 pp. (Dec. 2001). |
Kerofsky et al., “Reduced bit-depth quantization,” VCEG-N020, 14 pp. (Sep. 2001). |
Kerofsky, “Requirements for reduced complexity inverse transform and dequantization,” VCEG-N69, 3 pp. (Sep. 2001). |
Liang et al., “Fast Integer Transform and 16-bit architecture for H.26L,” VCEG-N24r1, 18 pp. (Sep. 2001). |
Liang et al., “FastVDO's Unified 16-Bit Transform/Quantization Approach,” JVT-B103d1, 7 pp. (Jan. 2002). |
Malvar, “Low-Complexity Length-4 Transform and Quantization with 16-Bit Arithmetic,” VCEG-N44, 25 pp. (Sep. 2001). |
Sullivan et al., “JVT (of ISO/IEC MPEG and ITU-T Q.6/16 VCEG) 2nd Meeting Report,” JVT-B001, 51 pp. (Jan. 2002). |
Suzuki et al., “Quantization Tools for High Quality Video,” JVT-B067, 10 pp. (Jan. 2002). |
Yamada et al., “Improved transform coding for inter-frame,” JVT-B051, 8 pp. (Jan. 2002). |
Zhou, “16-Bit Based Transform and Quantization,” JVT-B031, 10 pp. (Jan. 2002). |
Zhou, “16 bit integer transform and quantization,” VCEG-N022, 13 pp. (Sep. 2001). |
Diefendorff et al., “AltiVec Extension to PowerPC Accelerates Media Processing,” IEEE, pp. 85-96 (Mar.-Apr. 2000). |
Fan et al., “Efficient Fast 1-D 8 x 8 Inverse Integer Transform for VC-1 Application,” IEEE Trans. on Circuits and Systems for Video Technology, vol. 19, No. 4, 8 pp. (Apr. 2009). |
Liang et al., “Fast Multiplierless Approximations of the DCT With the Lifting Scheme,” IEEE Trans on Signal Processing, vol. 49, No. 12, pp. 3032-3044 (Dec. 2001). |
Malvar et al., “Low-Complexity Transform and Quantization in H.264/AVC,” IEEE Trans. on Circuits and Systems for Video Technology, vol. 13, No. 7, pp. 598-603 (Jul. 2003). |
Malvar et al., “Transform, Scaling & Color Space Impact of Professional Extension,” JVT-H031, 7 pp. (May 2003). |
Srinivasan et al., “Computationally Efficient Transforms for Video Coding,” IEEE Int'l Conf. on Image Processing, pp. II-325-II-328 (Sep. 2005). |
Srinivasan et al., “Windows Media Video 9: overview and applications,” Signal Processing: Image Communication, vol. 19, pp. 851-875 (Jul. 2004). |
Suzuki et al., “New Quantization Tools,” ISO/IEC MPEG2001/7737, 12 pp. (Dec. 2001). |
Number | Date | Country | |
---|---|---|---|
20110116543 A1 | May 2011 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 11067101 | Feb 2005 | US |
Child | 13009755 | US | |
Parent | 09955577 | Sep 2001 | US |
Child | 11067101 | US |