System and method for compressing a stream of integer-valued data
7 claims: 2 independent, 5 dependent
- 1A method for entropy coding run/data value pair data corresponding to a stream of integer-valued data, wherein each run is encoded in one of three ways, said method comprising:classifying each of said runs based on its length as either 1, short or long;if the run is 1, selecting a first code with a length of 1;if the run is classified as short, selecting a first code with a first predetermined length, each first code of first predetermined length having a preamble to distinguish the other run classifications, and having a value based on the run's length;if the run is classified as long, selecting a first code with a second predetermined length, each first code of second predetermined length having a preamble to distinguish the other run classifications, and having a value based on the run's length;and outputting the selected first code to a channel, wherein the first predetermined length is n+1 bits, the first code with the first predetermined length is selected from a first codebook, the first code with the first predetermined length having the preamble for the first bit and whose value for the remaining n bits is based on the run's length, the second predetermined length is n+1+M bits, the first code with the second predetermined length is selected from a second codebook, the first code with the second predetermined length having the preamble for the first n+1 bits and whose value for the remaining M bits is based on the run's length.
Independent claims3
35 paragraphs, as filed
<u>BACKGROUND</u>
0001Various encoding schemes are known for encoding integer-valued bitstreams, which bitstreams may represent, for example, videos, images, etc. The known encoding schemes generally involve run-length coding, variable-length coding, differential coding, and various combinations thereof.
0002It is known that run-length coding, while useful for compressing data exhibiting significant uniformity, is generally inefficient where data values are likely to differ from one to the next. In the latter situation, it is common among known compression schemes to adaptively switch between run-length coding and some other type of coding, which switching generally is handled in the decoder by side-information associated with the bitstream, or by calculation; this either reduces compression efficiency or increases the computational burden, respectively.
0003Document <patcit id="pcit0001" dnum="EP1004975A2"><text>EP 1 004 975 A2</text></patcit> discloses a set of eight-bit compression code words that are used at the beginning of a data run comprising a pixel count and one or more color values, the first four bits of the first word being used to specify the format of the bytes in the following data stream and whether the following pixels are to be printed as the overlay or as the background, and the last four bits being used to specify printing hints.
0004It is common among compression schemes that use both run-length and differential coding, to do the differential coding before the run-length coding, which ordering requires the encoder to calculate a difference, and the decoder to calculate a sum (i.e., to reconstruct the data value) for every data value in the bitstream.
0005Thus, it is desirable to use a coding scheme that can eliminate or at the very least mitigate these known limitations.
<u>BRIEF DESCRIPTION OF THE DRAWINGS</u>
0006<ul id="ul0001" list-style="none"><li><figref idref="f0001">FIG. 1</figref> illustrates a method of encoding a stream of integer-valued data according to an embodiment of the present invention.</li><li><figref idref="f0002">FIG. 2</figref> illustrates a method of encoding a list of run/data value pairs according to an embodiment of the present invention.</li><li><figref idref="f0003">FIG. 3</figref> illustrates an exemplary stream of integer-valued data, and its associated runs.</li><li><figref idref="f0003">FIG. 4</figref> illustrates a coder-decoder system according to an embodiment of the present invention.</li></ul>
<u>DETAILED DESCRIPTION</u>
0007Embodiments of the present invention reduce the size and complexity of bitstreams associated with encoded data by using a new compression scheme. An entropy encoder receives a list of run/data value pairs and entropy encodes separately the runs and data values, selecting their codewords according to length and magnitude, respectively, and catenates the resulting codeword pairs - data value codeword first - in an encoded bitstream. The coding scheme reduces the size and complexity of an encoded bitstream, which bitstream may represent images, videos, etc. Thus, the bitstream may be transmitted with less bandwidth, and the computational burden on both the encoder and decoder may be lessened.
0008<figref idref="f0001">FIG. 1</figref> illustrates a method of encoding a bitstream according to an embodiment of the present invention. According to the embodiment, the method may scan an array of data values according to a predetermined scan direction (box 100). The method may convert data values from the array into a sequence of run/data value pairs (box 110). At box 120, the method may select a codeword based on a value of a run. Similarly, at box 130, the method may select a codeword based on a value of a data value. The method may perform either step 120 or step 130 or both. The method may catenate the coded run/data value data into coded data pairs (box 140). Thereafter, the data may by processed further for transmission.
0009More specifically, at block 100, the method may scan an array of source data according to a scan direction, which source data represents, for example, an image, a video, etc. The method may accommodate data arrays of a variety of sizes and configurations. It will be appreciated that multi-dimensional arrays of integers may be regarded as a linear array when considered according to a scan direction and, therefore, the present discussion is addressed to a linear array case.
0010At block 110, the one-dimensional array of data values may be converted, using run-length encoding, into a list of run/data value pairs, where one integer (commonly, the first integer) in the pair is the length of the run, and another integer (commonly, the second integer) is the value of the data comprising the corresponding run. For example, and as shown in <figref idref="f0003">FIG. 3</figref>, if the one-dimensional array consists of 10 elements - {0, 0, 0, 3, 3, 2, 2, 2, 2, 2} - those 10 elements would be converted into the following pairs: {(3, 0), (2, 3), (5,2)}. The resulting pairs indicate that the original array consisted of three values equal to 0, two values equal to 3, and five values equal to 2, and in that order.
0011In an embodiment, the resulting list of run/data value pairs may be difference encoded, at block 110, into a list of run/data value difference pairs. Going back to the example 10-element array used above, the resulting list of run/data value difference pairs consists of {(3, +1), (2, +3), (5, -1)}, where [0 - (-1) = +1], [3 - 0 = +3], and [2 - 3 = -1]. Under ordinary circumstances the data value difference will not be zero, as that would imply a continuation of the previous run; by treating the initial run's previous run value as -1 (as shown in the example above), a non-zero data value difference may be guaranteed (unless a run is broken into sub-runs, as detailed herein).
0012By doing run-length coding <i>before</i> difference coding, a difference (encoder) or sum (decoder) needs to be calculated only once per <i>run,</i> instead of once per <i>every data value.</i> This ordering distinction may be especially valuable in the decoder, where it not only reduces the amount of calculation required, but also eliminates any associated serialism, which permits several of the identical data values of a run to be output simultaneously.
0013As discussed above, the principles of the present invention find application both with differential data values and non-differential data values. Therefore, unless specified below, the discussion below refers to "data values" in a generic sense, to refer equally to differential and non-differential data values.
0014At blocks 120, 130 the resulting list of run/data value pairs may be entropy coded; the runs may be coded separately from the data values and such encoding may be done serially (e.g., runs before data values, etc.) or in parallel. Embodiments of the present invention permit the codebook-based entropy coding proposed herein to be used in conjunction with other coding schemes, if desired. For example, although the present discussion proposes to code both runs and data values according to the process outlined below with regard to <figref idref="f0002">FIG. 2</figref>, it is permissible to code only one data type (say, the runs) according to the scheme proposed and to code the other data type (e.g., data values) according to another mechanism. Thus, the principles of the present invention may be integrated with other coding mechanisms as may be desired.
0015After the runs and data values have been entropy coded, the list of run codewords/data value codewords may be catenated (i.e., for each pair, the resulting data value codeword is catenated with the resulting run codeword), and these catenated codewords together form the final encoded bitstream, as shown at block 140. By putting the data value codeword before the corresponding run codeword, the data value can be reconstructed - during decoding - prior to the determination of the length of that data value's run, which allows for specialized run-length decoding of particular run values. For example, if, during run codeword decoding, it is determined that the run is one, the single data value can be outputted, because the data value has already been recovered; thus, there is no need to do a loop or otherwise try to accommodate a general situation, which means that some computational overhead can be removed from the process.
0016<figref idref="f0002">FIG. 2</figref> illustrates a method of entropy coding according to an embodiment of the present invention. At block 200, a run/data value pair is received, and at block 205 the runs within each pair are checked to see if they are within a predetermined maximum run length. Runs are integral and can range from 1 to the size of the source array. For the purposes of entropy coding, run lengths may have an upper limit of, for example, 2<sup>M</sup>, where M is a general parameter used to ensure that the size of the run codebook is finite. For example, with respect to an image, M may be commensurate with the size of the image so that runs need not be broken into sub-runs.
0017Should a run be longer than 2<sup>M</sup>, it may be split into sub-runs such that each sub-run is less than or equal to 2<sup>M</sup>. In the case of a run being split into sub-runs, the first sub-run gets the same data value as if the run was not broken into sub-runs, and each subsequent sub-run gets a data value of zero. As an example, consider the run/data value pair (21, +2), where M = 3. In this case, runs cannot be longer than 8 (i.e., 2<sup>M</sup> = 2<sup>3</sup> = 8), and so the resulting sub-runs/data value pairs would be: {(8, +2), (8, 0), (5, 0)} (i.e., 8 + 8 + 5 = 21).
0018Depending on their length, runs or sub-runs may be encoded in one of three ways, as shown at blocks 210-225. At block 210, a run is classified as either one, "short," or "long." Runs of one may be coded as a single '1' bit, as depicted by block 215. Using a single bit for runs of one minimizes the impact on compression efficiency when contiguous data values are not identical, and has the computational advantage of allowing decoders to use a sign test to distinguish between coded runs of one and those greater than one.
0019"Short" runs may include those runs greater than 1, but less than or equal to a predetermined threshold 2<sup>n</sup>, where n may be chosen arbitrarily or according to any of a number of predetermined schemes, including, for example, a scheme that attempts to achieve optimum compression for the data being compressed. Short runs may be coded with n+1 bits consisting of a single '0' bit preamble followed by the n-bit fixed-length binary code for one less than the run value, as depicted by block 220.
0020"Long" runs may include those runs greater than 2<sup>n</sup>. Long runs may be coded with n+1+M bits consisting of a preamble of n+1 '0' bits followed by the M-bit fixed-length binary code for one less than the run value, as depicted by block 225.
0021Note that the codewords for <i>both</i> "short" and "long" runs are the fixed-length binary codes - of appropriate length - for one less than the run value. As an example of a run codebook according to the discussed scheme, consider Table 1, which illustrates a run codebook where M = 11 and n =4, such that the maximum length of a run is 2048 (i.e., 2<sup>11</sup> = 2048), and "short" runs are those between 2 and 16 inclusive (i.e., 2<sup>4</sup> = 16). <tables id="tabl0001" num="0001"><table frame="all"><title><b>Table 1</b></title><tgroup cols="4" colsep="0"><colspec colnum="1" colname="col1" colwidth="32mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="24mm" /><colspec colnum="4" colname="col4" colwidth="25mm" colsep="1" /><thead><row><entry namest="col1" nameend="col2" colsep="1" align="left" valign="top" /><entry namest="col3" nameend="col4" rowsep="0" align="center" valign="top"><b>CODEWORD</b></entry></row><row><entry colsep="1" align="center" valign="top"><b>CLASSIFICATION</b></entry><entry colsep="1" align="center" valign="top"><b>RUN</b></entry><entry align="right" valign="top"><b>PREAMBLE</b></entry><entry align="right" valign="top"><b>DATA</b></entry></row></thead><tbody><row><entry align="center">1</entry><entry align="center">1</entry><entry align="right" /><entry align="right">1</entry></row><row><entry align="center">Short</entry><entry align="center">2</entry><entry align="right">0</entry><entry align="right">0001</entry></row><row><entry align="center">Short</entry><entry align="center">3</entry><entry align="right">0</entry><entry align="right">0010</entry></row><row><entry align="center" /><entry align="center">•••</entry><entry align="right">•••</entry><entry align="right">•••</entry></row><row><entry align="center">Short</entry><entry align="center">16</entry><entry align="right">0</entry><entry align="right">1111</entry></row><row><entry align="center">Long</entry><entry align="center">17</entry><entry align="right">00000</entry><entry align="right">00000010000</entry></row><row><entry align="center">Long</entry><entry align="center">18</entry><entry align="right">00000</entry><entry align="right">00000010001</entry></row><row><entry align="center" /><entry align="center" /><entry align="right">•••</entry><entry align="right">•••</entry></row><row><entry align="center">Long</entry><entry align="center">2048</entry><entry align="right">00000</entry><entry align="right">11111111111</entry></row></tbody></tgroup></table></tables>
0022Data values may be coded in one of two ways, depending on their magnitude. As shown at block 230, data values are classified as either "small" or "large" according to their absolute values; this allows a single prefix bit to distinguish between the two cases, and consequently, when decoding a data value codeword, if the first bit of the codeword appears in the most-significant bit of a computer's word, a simple sign test (comparison to zero) may be performed to determine whether the data value is small or large.
0023"Small" data values may include those data values with a magnitude (i.e., an absolute value) greater than 0, but less than or equal to 2<sup>k</sup>, where k may be chosen arbitrarily or according to any of a number of predetermined schemes, including, for example, a scheme that attempts to achieve optimum compression for the data being compressed. Small data values are coded with k+2 bits consisting of a single '0' bit preamble, the k-bit fixed-length binary code for one less than the data value magnitude, and a single bit to indicate the difference sign, as depicted by block 235.
0024"Large" data values may include those data values with a magnitude either equal to 0 or greater than 2<sup>k</sup>. Large data values may be coded with N+1 bits consisting of a single '1' bit preamble followed by the data value modulo 2<sup>N</sup>, as depicted by block 240, where N is the wordsize of the original data values.
0025As an example of a data value codebook according to the discussed scheme, consider Table 2, which illustrates a data value codebook where k = 3 and N = 8, and where a sign bit of 1 is used to indicate negative data values, such that the codebook comprises 512 entries (i.e., 2 * 2<sup>8</sup> = 512). <tables id="tabl0002" num="0002"><table frame="all"><title><b>Table 2</b></title><tgroup cols="5" colsep="0"><colspec colnum="1" colname="col1" colwidth="32mm" /><colspec colnum="2" colname="col2" colwidth="25mm" /><colspec colnum="3" colname="col3" colwidth="24mm" /><colspec colnum="4" colname="col4" colwidth="20mm" /><colspec colnum="5" colname="col5" colwidth="14mm" colsep="1" /><thead><row><entry namest="col1" nameend="col2" colsep="1" align="left" valign="top" /><entry namest="col3" nameend="col5" rowsep="0" align="center" valign="top"><b>CODEWORD</b></entry></row><row><entry colsep="1" align="center" valign="top"><b>CLASSIFICATION</b></entry><entry colsep="1" align="center" valign="top"><b>DATA VALUE</b></entry><entry align="right" valign="top"><b>PREAMBLE</b></entry><entry align="right" valign="top"><b>DATA</b></entry><entry align="right" valign="top"><b>SIGN</b></entry></row></thead><tbody><row rowsep="0"><entry align="center">Small</entry><entry align="center">+1</entry><entry align="right">0</entry><entry align="right">000</entry><entry align="right">0</entry></row><row rowsep="0"><entry align="center">Small</entry><entry align="center">-1</entry><entry align="right">0</entry><entry align="right">000</entry><entry align="right">1</entry></row><row rowsep="0"><entry align="center">Small</entry><entry align="center">+2</entry><entry align="right">0</entry><entry align="right">001</entry><entry align="right">0</entry></row><row rowsep="0"><entry align="center">Small</entry><entry align="center">-2</entry><entry align="right">0</entry><entry align="right">001</entry><entry align="right">1</entry></row><row rowsep="0"><entry align="center">Small</entry><entry align="center">•••</entry><entry align="right">•••</entry><entry align="right">•••</entry><entry align="right">•••</entry></row><row rowsep="0"><entry align="center">Small</entry><entry align="center">+8</entry><entry align="right">0</entry><entry align="right">111</entry><entry align="right">0</entry></row><row><entry align="center">Small</entry><entry align="center">-8</entry><entry align="right">0</entry><entry align="right">111</entry><entry align="right">1</entry></row><row rowsep="0"><entry align="center">Large</entry><entry align="center">+9</entry><entry align="right">1</entry><entry align="right">00001001</entry><entry align="right" /></row><row rowsep="0"><entry align="center">Large</entry><entry align="center">-9</entry><entry align="right">1</entry><entry align="right">11110111</entry><entry align="right" /></row><row rowsep="0"><entry align="center" /><entry align="center">•••</entry><entry align="right">•••</entry><entry align="right">•••</entry><entry align="right">•••</entry></row><row rowsep="0"><entry align="center">Large</entry><entry align="center">+255</entry><entry align="right">1</entry><entry align="right">11111111</entry><entry align="right" /></row><row rowsep="0"><entry align="center">Large</entry><entry align="center">-255</entry><entry align="right">1</entry><entry align="right">00000001</entry><entry align="right" /></row><row rowsep="0"><entry align="center">Large</entry><entry align="center">+256</entry><entry align="right">1</entry><entry align="right">00000000</entry><entry align="right" /></row><row><entry align="center">Large</entry><entry align="center">0</entry><entry align="right">1</entry><entry align="right">00000000</entry><entry align="right" /></row></tbody></tgroup></table></tables>
0026The variables n (associated with the entropy coding of runs) and k (associated with the entropy coding of data values) may be based on statistical information collected from example data that is presumably representative of the types of things that may be encoded by the encoder (e.g., pictures, videos, etc.).
0027<figref idref="f0003">FIG. 4</figref> illustrates an encoder 400 and a decoder 500 according to an embodiment of the present invention. Encoder 400 may be implemented in hardware or software and receives source data 410, a one-dimensional array of integer-valued data, as detailed herein. Source data 410 may be the result of various other coding processes that are generally immaterial to the present invention, including source processing operations (e.g., video coding processes, audio coding processes, etc.).
0028Run/data value encoder 420 may run-length encode source data 410 into a list of run/data value pairs. Entropy encoder 440 may receive the list of run/data value pairs from run/data value encoder 420 and separately may encode runs and data values according to the processes detailed herein. Entropy encoder 440 may catenate the resulting codewords comprising each pair in the list, coded data values first, to form the encoded bitstream. In an embodiment, and as shown in phantom, run/data value difference encoder 430 may receive the list of run/data value pairs from run/data value encoder 420 and may difference encode the pairs into a list of run/data value difference pairs, which may be processed by entropy encoder 440.
0029Transmission buffer 450 may store the encoded bitstream before transferring it to a channel, which channel may represent a transmission medium to carry the encoded bitstream to a decoder. Channels typically include storage devices such as optical, magnetic or electrical memories and communications channels provided, for example, by communications networks or computer networks.
0030The encoding process described above may be reversed in decoder 500, which may include receive buffer 510, entropy decoder 520, run/data value difference decoder 530, run/data value decoder 540, and recovered data store 550. Each unit may perform the inverse of its counterpart in encoder 400, replicating source data 410. Decoder 500 may include other blocks (not shown) that perform source decoding to match source coding processes applied at encoder 400.
0031Although the preceding text sets forth a detailed description of various embodiments, it should be understood that the legal scope of the invention is defined by the words of the claims set forth below. The detailed description is to be construed as exemplary only and does not describe every possible embodiment of the invention since describing every possible embodiment would be impractical, if not impossible. Numerous alternative embodiments could be implemented, using either current technology or technology developed after the filing date of this patent, which would still fall within the scope of the claims defining the invention.
0032It should be understood that there exist implementations of other variations and modifications of the invention and its various aspects, as may be readily apparent to those of ordinary skill in the art, and that the invention is not limited by specific embodiments described herein.
3 sheets
Sheet 1 Sheet 2 Sheet 3
Every citation, both ways
| Document | Relation | Office | Cited during |
|---|---|---|---|
| EP1004975A2 | Cites | European Patent Office (EPO) | Examiner |
| EP1004975A2 | Cites | European Patent Office (EPO) | – |
| US5798718A | Cites | United States of America | – |
| FENWICK P: "Punctured Elias codes for variable-length coding of the integers", INTERNET CITATION, 5 December 1996 (1996-12-05), XP002453751, Retrieved from the Internet <URL:http://www.firstpr.com.au/audiocomp/lossless/TechRep137.pdf> [retrieved on 20050426] | Non-patent | – | Examiner |
| REED E C ET AL: "Efficient coding of DCT coefficients by joint position-dependent encoding" ACOUSTICS, SPEECH AND SIGNAL PROCESSING, 1998. PROCEEDINGS OF THE 1998 IEEE INTERNATIONAL CONFERENCE ON SEATTLE, WA, USA 12-15 MAY 1998, NEW YORK, NY, USA,IEEE, US, vol. 5, 12 May 1998 (1998-05-12), pages 2817-2820, XP010279416 ISBN: 978-0-7803-4428-0 | Non-patent | – | – |
| DAVID SALOMON: "Data compression: the complete reference, 3rd Edition" 1 January 2004 (2004-01-01), DATA COMPRESSION : THE COMPLETE REFERENCE, SPRINGER VERLAG, NEW YORK, NY, US, PAGE(S) 168 - 171 , XP002567706 , pages 51-53 page 52, line 1 - page 53, line 3 | Non-patent | – | – |
| ITOH Y ET AL: "Universal variable length code for DCT coding" IMAGE PROCESSING, 2000. PROCEEDINGS. 2000 INTERNATIONAL CONFERENCE ON SEPTEMBER 10-13, 2000, IEEE, PISCATAWAY, NJ, USA, vol. 1, 10 September 2000 (2000-09-10), pages 940-943, XP010530771 ISBN: 978-0-7803-6297-0 | Non-patent | – | – |
| MARCELO J WEINBERGER ET AL: "The LOCO-I Lossless Image Compression Algorithm: Principles and Standardization into JPEG-LS" IEEE TRANSACTIONS ON IMAGE PROCESSING, IEEE SERVICE CENTER, PISCATAWAY, NJ, US, vol. 9, no. 8, 1 August 2000 (2000-08-01), XP011025643 ISSN: 1057-7149 | Non-patent | – | – |
| FENWICK P: 'Punctured Elias codes for variable-length coding of the integers' INTERNET CITATION, [Online] 05 December 1996, XP002453751 Retrieved from the Internet: <URL:http://www.firstpr.com.au/audiocomp/lo ssless/TechRep137.pdf> [retrieved on 2005-04-26] | Non-patent | – | – |
21 members in 8 offices
Priority claims7
| Document | Office | Kind | Date |
|---|---|---|---|
| 26817108 | United States of America | A | |
| 268171 | United States of America | – | |
| 2009063526 | United States of America | W | |
| WO2009US63526 | – | – | – |
| US20080268171 | – | – | – |
| 268171 | – | – | – |
| 2009063526 | – | – | – |
Members21
| Document | Office | Kind | |
|---|---|---|---|
| US2010117875A1 | United States of America | A1 | |
| AU2009313449A1 | Australia | A1 | |
| WO2010054178A1 | World Intellectual Property Organization (WIPO) | A1 | |
| US7804428B2 | United States of America | B2 | |
| KR20110094046A | Republic of Korea | A | |
| EP2364530A1 | European Patent Office (EPO) | A1 | |
| CN102210105A | China | A | |
| JP2012508522A | Japan | A | |
| KR101171697B1 | Republic of Korea | B1 | |
| JP5162708B2 | Japan | B2 | |
| JP2013138422A | Japan | A | |
| CN102210105B | China | B | |
| AU2009313449B2 | Australia | B2 | |
| EP2364530B1This record | European Patent Office (EPO) | B1 | |
| EP2908438A1 | European Patent Office (EPO) | A1 | |
| EP2913932A1 | European Patent Office (EPO) | A1 | |
| ES2546542T3 | Spain | T3 | |
| JP2016006961A | Japan | A | |
| JP6025923B2 | Japan | B2 | |
| EP2913932B1 | European Patent Office (EPO) | B1 | |
| EP2908438B1 | European Patent Office (EPO) | B1 |
69 legal events, as 10 offices reported them to INPADOC
Over the term
Point at a mark for the eventEvents
| Event | Code | Office | |
|---|---|---|---|
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Opt-out of the competence of the unified patent court (upc) registeredP01 | P01 | EP | |
| Fee paymentPLFP | PLFP | FR | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Fee paymentPLFP | PLFP | FR | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Fee paymentPLFP | PLFP | FR | |
| Patent lapsedLapsedMM4A | MM4A | IE | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Patent ceasedCeasedPL | PL | CH | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| No opposition filedOpposition26N | 26N | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| No opposition filed within time limitOppositionORIGINAL CODE: 0009261PLBE | PLBE | EP | |
| Information on the status of an ep patent application or granted ep patentGrantedSTATUS: NO OPPOSITION FILED WITHIN TIME LIMITSTAA | STAA | EP | |
| No opposition filed against granted patent, or epo opposition proceedings concluded without decisionGrantedR097 | R097 | DE | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Invalidated european patentMG4D | MG4D | LT | |
| Patent invalid in the netherlands as no translation has been filedMP | MP | NL | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Deletion acc. to par. 5 (withdrawal of the translation of the ep patent)MK05 | MK05 | AT | |
| Fee paymentPLFP | PLFP | FR | |
| Definitive protectionFG2A | FG2A | ES | |
| Dpma publication of mentioned ep patent grantGrantedR096 | R096 | DE | |
| European patents granted designating irelandGrantedFG4D | FG4D | IE | |
| Reference to at number (ep patent validated in austria)REF | REF | AT | |
| European patent takes effect as a national patent in ch/liEP | EP | CH | |
| Designated contracting statesAK | AK | EP | |
| European patent grantedGrantedFG4D | FG4D | GB | |
| (expected) grantORIGINAL CODE: 0009210GRAA | GRAA | EP | |
| Grant fee paidORIGINAL CODE: EPIDOSNIGR3GRAS | GRAS | EP | |
| Intention to grant announcedINTG | INTG | EP | |
| Despatch of communication of intention to grant a patentORIGINAL CODE: EPIDOSNIGR1GRAP | GRAP | EP | |
| Information related to disapproval of communication of intention to grant by the applicant or resumption of examination proceedings by the epo deletedORIGINAL CODE: EPIDOSDIGR1GRAJ | GRAJ | EP | |
| Despatch of communication of intention to grant a patentORIGINAL CODE: EPIDOSNIGR1GRAP | GRAP | EP | |
| First examination report despatched17Q | 17Q | EP | |
| Request for extension of the european patent (deleted)DAX | DAX | EP | |
| Request for examination filed17P | 17P | EP | |
| Designated contracting statesAK | AK | EP | |
| Public reference made under article 153(3) epc to a published international application that has entered the european phaseORIGINAL CODE: 0009012PUAI | PUAI | EP |
Numbers
- Publication
- 2364530
- Publication, DOCDB
- 2364530
- Publication, EPODOC
- EP2364530
- Application
- 9775397
- Application, DOCDB
- 09775397
- Application, EPODOC
- EP20090775397
Titles3
- German
- SYSTEM UND VERFAHREN ZUM KOMPRIMIEREN EINES STROMS VON INTEGER-WERTIGEN DATEN
- English
- SYSTEM AND METHOD FOR COMPRESSING A STREAM OF INTEGER-VALUED DATA
- French
- SYSTÈME ET PROCÉDÉ POUR COMPRIMER UNE SÉQUENCE DE DONNÉES RAMENÉES À DES VALEURS ENTIÈRES
Classification
- CPC, 2
- H03M7/46
- H03M7/40
- IPC, 2
- H03M7 40
- H03M7 46
Designated states1
- Contracting states, 1
- Türkiye
