WO2002041497A2 - Static information knowledge used with binary compression methods - Google Patents

Static information knowledge used with binary compression methods Download PDF

Info

Publication number
WO2002041497A2
WO2002041497A2 PCT/SE2001/002549 SE0102549W WO0241497A2 WO 2002041497 A2 WO2002041497 A2 WO 2002041497A2 SE 0102549 W SE0102549 W SE 0102549W WO 0241497 A2 WO0241497 A2 WO 0241497A2
Authority
WO
WIPO (PCT)
Prior art keywords
communication
dictionary
symbol string
given
entity
Prior art date
Application number
PCT/SE2001/002549
Other languages
English (en)
French (fr)
Other versions
WO2002041497A3 (en
Inventor
Hans Hannu
Krister Svanbro
Jan Christoffersson
Original Assignee
Telefonaktiebolaget Lm Ericsson (Publ)
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Priority claimed from US09/814,406 external-priority patent/US6985965B2/en
Application filed by Telefonaktiebolaget Lm Ericsson (Publ) filed Critical Telefonaktiebolaget Lm Ericsson (Publ)
Priority to AU2002215287A priority Critical patent/AU2002215287A1/en
Priority to JP2002543788A priority patent/JP3958211B2/ja
Priority to CA2428788A priority patent/CA2428788C/en
Priority to EP01983894A priority patent/EP1334557A2/en
Publication of WO2002041497A2 publication Critical patent/WO2002041497A2/en
Publication of WO2002041497A3 publication Critical patent/WO2002041497A3/en

Links

Classifications

    • HELECTRICITY
    • H03ELECTRONIC CIRCUITRY
    • H03MCODING; DECODING; CODE CONVERSION IN GENERAL
    • H03M7/00Conversion of a code where information is represented by a given sequence or number of digits to a code where the same, similar or subset of information is represented by a different sequence or number of digits
    • H03M7/30Compression; Expansion; Suppression of unnecessary data, e.g. redundancy reduction
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/04Protocols for data compression, e.g. ROHC
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/18Multiprotocol handlers, e.g. single devices capable of handling multiple protocols

Definitions

  • the present invention relates to the compression of messages in communication using data protocols, e.g. Internet protocols.
  • data protocols e.g. Internet protocols.
  • IPs Internet Protocols
  • SIP Session Initiation Protocol
  • SIP is an application layer protocol for establishing, modifying, and terminating multimedia sessions or calls. These sessions may include Internet multimedia conferences, Internet telephony, and similar applications. As is understood in this art, SIP can be used over either the Transmission Control Protocol (TCP) or the User Datagram Protocol (UDP).
  • TCP Transmission Control Protocol
  • UDP User Datagram Protocol
  • RTSP Real Time Streaming Protocol
  • RTSP may also be used with UDP, TCP, or other protocols as a transport protocol.
  • SDP Session Description Protocol
  • SDP is used to advertise multimedia conferences and communicate conference addresses and conference tool- specific information. SDP is also used for general real-time multimedia session description purposes. SDP is carried in the message body of SIP and RTSP messages. SIP, RTSP, and SDP are all ASCII text based using the ISO 10646 character set in UTF-8 encoding.
  • IP Internet Protocol
  • SIP Session Initiation Protocol
  • SIP, RTSP, and SDP protocols share similar characteristics which have implications in their use with cellular radio access.
  • One of these similarities is the general request and reply nature of the protocols. Typically, when a sender sends a request, the sender stays idle until a response is received.
  • SIP, RTSP, and SDP are all ASCII text based using the ISO 10646 character set with UTF-8 encoding. As a result, information is usually represented using a greater number of bits than would be required in a binary representation of the same information.
  • Still another characteristic that is shared by the protocols is that they are generally large in size in order to provide the necessary information to session participants.
  • IP protocol suite introduces due to large headers and text-based signaling protocols. It is very important in cellular systems to use the scarce radio resources in an efficient manner. In cellular systems it is important to support a sufficient number of users per cell, otherwise implementation and operation costs will be prohibitive. Frequency spectrum, and thus bandwidth, is a costly resource in cellular links and should be used efficiently to maximize system resources.
  • a dictionary compression scheme uses a data structure known as a dictionary to store strings of symbols which are found in the input data. The scheme reads in input data and looks for strings of symbols which match those in the dictionary. If a string match is found, a pointer or index to the location of that string in the dictionary is output and transmitted instead of the string itself. If the index is smaller than the string it replaces, compression will occur.
  • a decompressor contains a representation of the compressor dictionary so that the original string may be reproduced from the received index.
  • An example of a dictionary compression method is the Lempel-Ziv (LZ77) algorithm. This algorithm operates by replacing character strings which have previously occurred in the file by references to the previous occurrence. This method is, of course, particularly successful in files where repeated strings are common.
  • Dictionary compression schemes may be generally categorized as either static or dynamic.
  • a static dictionary is a predefined dictionary, which is constructed before compression occurs, and which does not change during the compression process.
  • Static dictionaries are typically either stored in the compressor and decompressor prior to use, or transmitted and stored in memory prior to the start of compression operations.
  • a dynamic or adaptive dictionary scheme allows the contents of the dictionary to change as compression occurs.
  • a dynamic dictionary scheme starts out with either no dictionary or a default, predefined dictionary and adds new strings to the dictionary during the compression process. If a string of input data is not found in the dictionary, the string is added to the dictionary in a new position and assigned a new index value. The new string is transmitted to the decompressor so that it can be added to the dictionary of the decompressor. The position of the new string does not have to be transmitted, as the decompressor will recognize that a new string has been received, and will add the string to the decompressor dictionary in the same position in which it was added in the compressor dictionary. In this way, a future occurrence of the string in the input data can be compressed using the updated dictionary.
  • the dictionaries at the compressor and decompressor are constructed and updated dynamically as compression occurs.
  • One method of dictionary compression is of the type known as sliding window compression.
  • the compressor moves a fixed-size sliding window from left to right through the file during compression.
  • the compression algorithm searches the file to the left of the window for matches to strings currently in the window. If a match is found the string is replaced by a reference to the location of the match within the file along with a reference to the length of the match.
  • the window may consist of a text window consisting of a large block of recently decoded text and a look- ahead buffer. In this version, the look-ahead buffer is used to search for matches within the text window. If a match is found the string is replaced by a reference to the location of the match within the text window and reference to the length of the match. This information is used by the decompressor which maintains the same dictionary to reproduce the original information.
  • Another method for the compression of data is the use of a binary code tree.
  • symbols or strings which are to be compressed are represented in a tree structure by a variable number of bits such that each symbol is uniquely decodable.
  • symbols with higher probabilities of occurrence in the input data are represented by a shorter number of bits than those which have lower probabilities of occurrence.
  • individual symbols are laid out as a string of leaf nodes connected to a binary tree. Symbols with higher probabilities of occurrence are represented as shorter branches of the tree resulting in a fewer number of bits being required to represent them. Conversely, symbols with lower probabilities of occurrence are represented as longer branches of the tree requiring a greater number of representation bits.
  • binary code trees may be static or dynamic.
  • static binary code tree scheme a predefined binary code tree is constructed prior to compression and does not change during the compression process.
  • static binary code trees may be stored in the compressor and decompressor in advance, or transmitted and stored prior to the start of compression.
  • a dynamic or adaptive binary code tree allows for the addition of new symbols or strings to the code tree during the compression process.
  • Various methods may be used to update the nodes of the tree according to the type of binary code tree compression used to allow for the addition of new symbols and the rearrangement of the code tree.
  • the binary code tree in the decompressor must also be updated according to the same rules as the binary code tree in the compressor.
  • One example of a binary code tree compression scheme is that of a Huffman coding compression scheme.
  • Huffman compression is a general compression method intended primarily for compression of ASCII files. Characters occurring frequently in the files are replaced by shorter codes, i.e. codes with less than the 8 bits used by the ASCII code. Huffman compression can be successful in files where relatively few characters are used.
  • a general criteria for successful compression using the aforementioned binary compression algorithms is that the file to be compressed is reasonably large.
  • the codes for Huffman compression must not be too large compared to the file which is being compressed.
  • the file to be compressed must be large enough to have many repeated strings to achieve efficient compression.
  • the messages produced by the aforementioned protocols are mostly a few hundred bytes and not large enough to allow efficient compression with the aforementioned algorithms on a message by message basis.
  • the present invention is directed to a method, system, and apparatus for increasing the efficiency of the compression of a communication protocol for use over bandwidth limited communication links.
  • One aspect of the present invention uses the knowledge of the structure and content of communication protocols to form a static dictionary or static binary code tree. As a result, the compression efficiency can be greatly increased.
  • Another aspect of the present invention provides a combined static and dynamic dictionary or binary code tree to perform communication protocol compression.
  • the static binary code tree or static dictionary is constructed by studying flows of data protocols in the conditions of their intended usage.
  • FIGURE 1 illustrates an exemplary system for communication in accordance with the present invention
  • FIGURE 2 illustrates an exemplary embodiment in accordance with the present invention
  • FIGURE 3 illustrates an exemplary data packet for compression and decompression in accordance with the present invention
  • FIGURE 4 illustrates another exemplary embodiment in accordance with the present invention.
  • FIGURE 5 illustrates another exemplary embodiment in accordance with the present invention.
  • FIGURE 1 illustrates an exemplary system for communication in accordance with the present invention.
  • a mobile terminal 110 is in communication with a base station 120 using communication protocols over a communication link 115, e.g. a wireless link.
  • the base station 120 is in communication with a fixed network 130,such as a PSTN, via a link 125.
  • Fixed network 130 is in communication with a base station 140 via a link 135.
  • Base station 140 is in communication with a terminal 150, which may be a mobile terminal or a fixed terminal, using communication link 145.
  • the mobile terminal 110 communicates with the base station 120 using compressed data over the communication link 115.
  • base station 140 may communicate with terminal 150 using compressed data.
  • components in the system of FIGURE 1, such as mobile terminal 110 and base station 140 may include a memory 160 and processor 155 used for storing and executing software instructions which implement compression and decompression algorithms.
  • the present invention may be used in other communication systems, such as a cellular network, that use communication protocols over links in which compression is desired.
  • FIGURE 2 illustrates an exemplary embodiment of the present invention.
  • an entity A (210) communicates with an entity B (230) using communication links (250, 255) in which data compression is used.
  • Each entity includes a data compressor (215, 245) and a data decompressor (225, 235).
  • a dictionary compression methodology is used.
  • a static dictionary 220 in each entity is used to compress and decompress data to be communicated over the communication links using a data protocol.
  • the compressor and/or decompressor may be implemented using a processor and associated memory having stored therein instructions for a compression/decompression algorithm(s).
  • the communication entities may comprise a number of communication devices.
  • entity A may comprise mobile terminal 110
  • entity B may comprise base station 140.
  • entity A (210) and entity B (230) use identical static dictionaries 220.
  • the static dictionary 220 may be built from protocol field-names and common symbol strings used by the communication protocol, e.g. , an Internet protocol, which is being used to communicate over the communication links (250, 255).
  • the communication entities may comprise a number of communication devices.
  • entity A may comprise a mobile terminal
  • entity B may comprise a base station.
  • entries that may be used to form the dictionary include media- type information such as audio, video, and image information.
  • Other examples of dictionary entries which may used to form the dictionary include the protocol token JO-
  • FIGURE 3 illustrates an exemplary data packet 310 for compression and decompression in accordance with the present invention.
  • data packet 310 represents information which will be transmitted according to a given data protocol.
  • String A (320) and string C (340) represent portions of the data packet 310 which are not found in the static dictionary.
  • String B (330) and string D (350) represents portions of the data packet 310 which are found in the static dictionary.
  • an index 370 to a location of string B in the static dictionary and an index 380 to a location of string D in the static dictionary need to be transmitted for those portions of the data packet 310.
  • String A (330) and string C (340) may then be added as uncompressed data to index 370 and index 380 to form the compressed data packet 360.
  • strings A (320) and string C (340) may be compressed using any of a number of compression methods known to one skilled in the art.
  • the compressed data packet 360 is then transmitted to a receiving entity.
  • the index 370 and index 380 are matched to the corresponding entries in the identical static dictionary of the receiving entity to form a reconstruction of string B (330') and string D (350').
  • the received string A (320') and string C (340') is combined with the reconstruction of string B (330') and string D (350') to form a reconstruction of the original data packet (310').
  • FIGURE 4 illustrates another exemplary embodiment of the present invention. Since the nature and format of data which is transmitted using bidirectional communication is often different for each direction of communication, a compression scheme which can be tailored individually to each communication direction is beneficial.
  • an entity A (410) includes a data compressor 415 with associated static dictionary A (420), and a data decompressor 425 with associated static dictionary B (430) .
  • An entity B (440) includes a data decompressor 445 with associated static dictionary A (420), and data compressor 455 with associated static dictionary B (430).
  • entity A (410) sends a message or data compressed using data compressor 415 to entity B (440) over communication link 460 to be decompressed with decompressor 445 using static dictionary A (420).
  • compressor 415 of entity A (410) and decompressor 445 of entity B (440) use identical static dictionary A (420) for compression and decompression.
  • entity B (440) sends a message or data compressed using data compressor 455 to entity A (410) over communication link 465 to be decompressed using decompressor 425.
  • decompressor 425 of entity A (410) use identical static dictionary B (430) for compression and decompression.
  • This exemplary embodiment of the present invention allows for the design of static dictionaries which are optimized for each direction of communication.
  • FIGURE 5 illustrates another exemplary embodiment in accordance with the present invention in which a combined static and dynamic dictionary is used.
  • an initial static dictionary is used as a starting dictionary for the compressor and decompressor at each communication entity.
  • the dictionary operates as a dynamic dictionary.
  • an entity A (510) including a compressor 515 with an associated static/dynamic dictionary 520, communicates with an entity B (530), including a decompressor 535 with an associated static/dynamic dictionary 540, using a first communication link 550.
  • a message to be compressed and transmitted to entity B (530) is tested against the dictionary 520. If a portion of the message matches a dictionary entry, that portion is replaced by its corresponding index. The message portion which is not matched to an entry in the dictionary 520, or alternatively selected fields of this message portion, are then added to the dictionary 520 for use in future compression.
  • entity B (530) The index and the uncompressed portion are then transmitted to entity B (530) over the first communication link 550.
  • Entity B (530) then decodes and separates the received message into the index information and the uncompressed portion.
  • the decompressor 535 in entity B (530) reproduces the compressed information by matching the index to an entry in its dictionary 540, which is then added to the uncompressed data to form the original message.
  • the message portion which was added to the dictionary 520 in entity A (510) is then added to the dictionary 540 of entity B (530) so that each entity maintains matching dictionaries.
  • Subsequent messages transmitted from entity A (510) to entity B (530) are compressed by using the updated dictionary 520 and decompressed by entity B (530) using updated dictionary 540.
  • dictionary 520 of entity A (520) and dictionary 540 of entity B are dynamically updated to allow the compression methodology to adapt to the data that is being transmitted, which provides for continual improvement in compression efficiency.
  • entity A (510) may include a decompressor 525 and entity B (530) may include a compressor 545, respectively, thus allowing for entity B (530) to send compressed messages to entity A (510) using a second communication link 555.
  • entity A may include a decompressor 525
  • entity B may include a compressor 545, respectively, thus allowing for entity B (530) to send compressed messages to entity A (510) using a second communication link 555.
  • Decompressor 525 of entity A may use the same static/dynamic dictionary 520 as compressor 515.
  • compressor 545 of entity B may use the same static/dynamic dictionary 540 as decompressor 535.
  • a separate static/dynamic dictionary may be used for each compressor/decompressor pair, allowing for the use of static/dynamic dictionaries which can be optimized for each direction of communication.
  • a sliding window dictionary compression method may be used. As in the previous embodiment, an initial static dictionary is used as a starting dictionary for the compressor and decompressor, which then operates as a dynamic dictionary as soon as communication begins.
  • a message to be compressed is appended to the dictionary in a first entity containing a compressor.
  • the dictionary with the appended message is then processed according to a sliding window compression method, e.g. Lempel-Ziv, to produce the compressed message.
  • the dictionary may also be compressed along with the attached message.
  • the part of the compressed message corresponding to the static/dynamic dictionary is removed and replaced with a reference or an index to a corresponding location in the dictionary.
  • the rest of the compressed message along with the reference information is transmitted to the decompressor in a second entity.
  • the received compressed message is appended to a compressed version of the static/dynamic dictionary in the second entity so that the decompressor has the same dictionary as the compressor.
  • the result is then processed by the corresponding decompression method, e.g. Lempel-Ziv, to produce the original message.
  • the dictionary is not compressed by the compression method.
  • the dictionary may be preloaded into the buffers and search trees used in the implementation of the compression algorithm prior to operation. When a message to be compressed arrives, the actual compression will start at the position in the buffer in which the message has been loaded. Thus the dictionary will not be compressed, only the message itself.
  • the corresponding dictionary of the decompressor will also be in an uncompressed form.
  • An important aspect of the present invention is the construction of the static dictionary.
  • One exemplary methodology of constructing a static dictionary in accordance with the present invention includes studying flows of data packets to collect statistical data for the desired communication protocols over the communication links in which compression is desired. Through the use of this statistical data the static dictionary may be constructed using the most frequently used protocol field names and other common strings of a given communication protocol to provide optimal compression of the data or messages which are to be sent. The static dictionary may then be constructed and stored at both a first communication entity and a second communication entity prior to use. Such storage prior to use would be particularly beneficial for use in short communication sessions so that overhead which may occur at the beginning of a communication session is reduced. Alternately the static dictionary may be sent from the compressor to the decompressor at the beginning of a communication session before compression occurs.
  • a static binary code tree scheme may be used.
  • a static binary code tree may be constructed using statistical methods such as studying flows of packets for the desired data protocol over the communication link. Using this statistical information, the static binary code tree may be constructed such that protocol field names and other common strings of the data protocol which have a higher probability of occurrence are represented with a smaller number of bits than those that have a lower probability of occurrence. As a result, compression efficiency is increased.
  • One such example of a binary code tree compression scheme which may be used in the practice of the present invention is that of a Huffman coding method.
  • a static binary code tree may be used in combination with a static dictionary.
  • a static dictionary is first constructed using a desired methodology such as one of the aforedescribed methodologies in accordance with the present invention.
  • a static binary code tree may then be constructed by studying flows of packets for the desired data protocol with the static dictionary in use and constructing the static binary code tree accordingly.
  • the combined use of static dictionary compression and static binary code tree compression, such as that of Huffman coding, may be used to increase compression efficiency of the transmitted data.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Theoretical Computer Science (AREA)
  • Compression, Expansion, Code Conversion, And Decoders (AREA)
  • Communication Control (AREA)
  • Computer And Data Communications (AREA)
PCT/SE2001/002549 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods WO2002041497A2 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
AU2002215287A AU2002215287A1 (en) 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods
JP2002543788A JP3958211B2 (ja) 2000-11-16 2001-11-15 静的な情報知識を用いたバイナリー圧縮方法
CA2428788A CA2428788C (en) 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods
EP01983894A EP1334557A2 (en) 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
US24992300P 2000-11-16 2000-11-16
US60/249,923 2000-11-16
US09/814,406 US6985965B2 (en) 2000-11-16 2001-03-21 Static information knowledge used with binary compression methods
US09/814,406 2001-03-21

Publications (2)

Publication Number Publication Date
WO2002041497A2 true WO2002041497A2 (en) 2002-05-23
WO2002041497A3 WO2002041497A3 (en) 2002-08-29

Family

ID=26940466

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/SE2001/002549 WO2002041497A2 (en) 2000-11-16 2001-11-15 Static information knowledge used with binary compression methods

Country Status (7)

Country Link
EP (1) EP1334557A2 (ja)
JP (1) JP3958211B2 (ja)
CN (1) CN1316749C (ja)
AU (1) AU2002215287A1 (ja)
CA (1) CA2428788C (ja)
TW (1) TW543311B (ja)
WO (1) WO2002041497A2 (ja)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2005063270A (ja) * 2003-08-18 2005-03-10 Konami Co Ltd 通信システム、サービス方法、端末方法、ならびに、プログラム
JP2010244571A (ja) * 2002-10-30 2010-10-28 Riverbed Technology Inc クライアント−サーバ通信システムのトランザクション・アクセルレータ
US8856222B2 (en) 2002-10-30 2014-10-07 Riverbed Technology, Inc. Transaction acceleration for client-server communication systems
US9509334B2 (en) 2015-01-30 2016-11-29 Fujitsu Limited Non-transitory computer-readable recording medium, compression method, decompression method, compression device and decompression device
EP3154202A1 (en) * 2015-10-05 2017-04-12 Fujitsu Limited Encoding program, encoding method, encoding device, decoding program, decoding method, and decoding device
DE102016108403A1 (de) * 2016-05-06 2017-11-09 Haroon van Rikxoort Verfahren zur Datenübertragung

Families Citing this family (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2008125444A2 (en) 2007-04-13 2008-10-23 Thomson Licensing Communication protocol, developing and network operating methods therefore
TWI386069B (zh) * 2007-08-10 2013-02-11 Univ Nat Cheng Kung 資料集編碼系統及方法以及程式產品
JP4930305B2 (ja) * 2007-09-20 2012-05-16 日本電気株式会社 データ通信システム、端末、カタログサーバ、データ通信方法、および通信プログラム
JP2010258787A (ja) * 2009-04-24 2010-11-11 Mitsubishi Electric Corp シグナリング圧縮装置、シグナリング伸長装置およびシグナリング圧縮伸長装置
WO2013079999A1 (en) * 2011-12-02 2013-06-06 Canon Kabushiki Kaisha Methods and devices for encoding and decoding messages
CN102857230B (zh) * 2012-09-21 2015-05-20 中国科学院武汉物理与数学研究所 一种基于无损压缩数据传输技术的高速程序控制器
US9166620B2 (en) * 2012-09-26 2015-10-20 Qualcomm Incorporated Method and apparatus for a memory based packet compression encoding
CN104283777B (zh) * 2013-07-03 2018-08-21 华为技术有限公司 报文压缩的方法和装置
US20150121111A1 (en) * 2013-10-24 2015-04-30 Qualcomm Incorporated System and method for providing multi-user power saving codebook optmization
JP6511836B2 (ja) 2015-01-30 2019-05-15 富士通株式会社 圧縮プログラム、圧縮方法、圧縮装置および伸長プログラム
JP6984321B2 (ja) * 2017-10-31 2021-12-17 富士通株式会社 データ生成プログラム、データ生成方法および情報処理装置

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0666651A2 (en) * 1994-02-07 1995-08-09 Hewlett-Packard Company Apparatus and method for lempel ziv data compression with management of multiple dictionaries in content addressable memory
EP0933876A1 (en) * 1998-01-29 1999-08-04 AT&T Corp. Data compression method for packet transmission

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB9314516D0 (en) * 1993-07-13 1993-08-25 Philips Electronics Uk Ltd Digital communications system and a reiceiving apparatus for use in the system
JP3277792B2 (ja) * 1996-01-31 2002-04-22 株式会社日立製作所 データ圧縮方法および装置
KR100277061B1 (ko) * 1998-11-04 2001-01-15 윤종용 이동통신단말기의 단문메시지 압축 장치 및그에 따른단문메시지 전송방법

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0666651A2 (en) * 1994-02-07 1995-08-09 Hewlett-Packard Company Apparatus and method for lempel ziv data compression with management of multiple dictionaries in content addressable memory
EP0933876A1 (en) * 1998-01-29 1999-08-04 AT&T Corp. Data compression method for packet transmission

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
MITZENMACHER M.: "On the hardness of finding optimal mutiple preset dictionaries." PROCEEDINGS OF DATA COMPRESSION CONFERENCE , IEEE 2001, 27 - 29 March 2001, pages 411-418, XP002902506 ISBN: 0-7695-1031-0 *
See also references of EP1334557A2 *
STERN H P: "COMPRESSION TECHNIQUES FOR MOBILE DATA TERMINAL COMMUNICATION" , 1991 IEEE 41TH. VEHICULAR TECHNOLOGY CONFERENCE. ST. LOUIS, MAY 19 - 22, 1991, IEEE VEHICULAR TECHNOLOGY CONFERENCE, NEW YORK, IEEE, US, VOL. CONF. 41, PAGE(S) 429-432 XP000260216 ISBN: 0-87942-582-2 abstract page 432, paragraphs COMBINING,COMPRESION,TECHNIQUES. *

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2010244571A (ja) * 2002-10-30 2010-10-28 Riverbed Technology Inc クライアント−サーバ通信システムのトランザクション・アクセルレータ
US8762455B2 (en) 2002-10-30 2014-06-24 Riverbed Technology, Inc. Transaction accelerator for client-server communications systems
US8856222B2 (en) 2002-10-30 2014-10-07 Riverbed Technology, Inc. Transaction acceleration for client-server communication systems
JP2005063270A (ja) * 2003-08-18 2005-03-10 Konami Co Ltd 通信システム、サービス方法、端末方法、ならびに、プログラム
US9509334B2 (en) 2015-01-30 2016-11-29 Fujitsu Limited Non-transitory computer-readable recording medium, compression method, decompression method, compression device and decompression device
EP3154202A1 (en) * 2015-10-05 2017-04-12 Fujitsu Limited Encoding program, encoding method, encoding device, decoding program, decoding method, and decoding device
US9882582B2 (en) 2015-10-05 2018-01-30 Fujitsu Limited Non-transitory computer-readable recording medium, encoding method, encoding device, decoding method, and decoding device
DE102016108403A1 (de) * 2016-05-06 2017-11-09 Haroon van Rikxoort Verfahren zur Datenübertragung

Also Published As

Publication number Publication date
EP1334557A2 (en) 2003-08-13
CN1316749C (zh) 2007-05-16
CA2428788A1 (en) 2002-05-23
JP3958211B2 (ja) 2007-08-15
TW543311B (en) 2003-07-21
JP2004514366A (ja) 2004-05-13
AU2002215287A1 (en) 2002-05-27
WO2002041497A3 (en) 2002-08-29
CA2428788C (en) 2010-09-14
CN1486536A (zh) 2004-03-31

Similar Documents

Publication Publication Date Title
US6985965B2 (en) Static information knowledge used with binary compression methods
US6883035B2 (en) System and method for communicating with temporary compression tables
US6950445B2 (en) Communication system and method for shared context compression
US6963587B2 (en) Communication system and method utilizing request-reply communication patterns for data compression
EP1376878B1 (en) Protocol message compression in a wireless communications system
CA2428788C (en) Static information knowledge used with binary compression methods
US7693492B2 (en) Method and system for providing a context for message compression
JP2004510371A (ja) データパケットの処理方法
JP2004531993A (ja) キャッシュ及び空白化手法を用いてテキストベースの圧縮を行なうための装置と方法
US6750791B1 (en) Method and device for text data compression
WO2002041498A2 (en) Communication system and method utilizing request-reply communication patterns for data compression
WO2003007572A1 (en) Method for compressing protocols and related system

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A2

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NO NZ OM PH PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG UZ VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A2

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 2001983894

Country of ref document: EP

WWE Wipo information: entry into national phase

Ref document number: 2428788

Country of ref document: CA

WWE Wipo information: entry into national phase

Ref document number: 2002543788

Country of ref document: JP

WWE Wipo information: entry into national phase

Ref document number: 01822069X

Country of ref document: CN

WWP Wipo information: published in national office

Ref document number: 2001983894

Country of ref document: EP

REG Reference to national code

Ref country code: DE

Ref legal event code: 8642