WO2004054183A1 - A system and method using a circular buffer for detecting packet loss in streaming applications - Google Patents

A system and method using a circular buffer for detecting packet loss in streaming applications Download PDF

Info

Publication number
WO2004054183A1
WO2004054183A1 PCT/IB2003/005879 IB0305879W WO2004054183A1 WO 2004054183 A1 WO2004054183 A1 WO 2004054183A1 IB 0305879 W IB0305879 W IB 0305879W WO 2004054183 A1 WO2004054183 A1 WO 2004054183A1
Authority
WO
WIPO (PCT)
Prior art keywords
packet
sequence number
circular buffer
entry
received
Prior art date
Application number
PCT/IB2003/005879
Other languages
French (fr)
Inventor
Qiong Li
Mihaela Van Der Schaar
Original Assignee
Koninklijke Philips Electronics N.V.
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
Application filed by Koninklijke Philips Electronics N.V. filed Critical Koninklijke Philips Electronics N.V.
Priority to AU2003302800A priority Critical patent/AU2003302800A1/en
Priority to JP2004558299A priority patent/JP2006510255A/en
Priority to EP03812659A priority patent/EP1573985A1/en
Priority to US10/538,100 priority patent/US20060069793A1/en
Publication of WO2004054183A1 publication Critical patent/WO2004054183A1/en

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/90Buffering arrangements
    • H04L49/9047Buffering arrangements including multiple buffers, e.g. buffer pools
    • H04L49/9052Buffering arrangements including multiple buffers, e.g. buffer pools with buffers of different sizes
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/90Buffering arrangements
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/90Buffering arrangements
    • H04L49/901Buffering arrangements using storage descriptor, e.g. read or write pointers
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/90Buffering arrangements
    • H04L49/9031Wraparound memory, e.g. overrun or underrun detection

Definitions

  • This invention relates to the detection of packet loss in Internet streaming. More particularly, this invention relates to a system and method for using a circular buffer, implemented by a chain of buffers forming a circle, for packet loss detection in Internet streaming. Most particularly, this invention relates to a system and method for dynamically adapting packet loss detection latency, which is determined by the size of the chain, to network conditions and application requirements that achieves reasonable detection accuracy and is easy to implement.
  • the receiver may ask the sender to retransmit this lost packet.
  • the receiver In order to send a retransmission request promptly, the receiver must have means to timely detect packet losses.
  • packet loss detection is done using either a timer or timing windows.
  • a timer is used for loss detection.
  • a timer with a timeout value is set by the sender for that packet. If the timer expires before the acknowledgement of the packet is received, the packet is declared as lost and resent by the sender.
  • a timing window (or more precisely a table) has a fixed number of binary entries. Each entry indicates a packet 's status (0: lost, 1: received). At a certain point of time, the first entry in this window is associated with a packet that is identified by a sequence number (such as the sequence number of a real-time transport protocol (RTP) packet). The subsequent window entries are associated with packets having higher sequence numbers in sequential order. Therefore, the space of packet sequence numbers can be viewed as being divided into blocks, each block being associated with a window at a certain point of time. Presently, two such timing windows associated with two consecutive blocks of packets are used for packet loss detection. In the beginning, all entries are marked as "0".
  • the corresponding window entry When a packet is received, the corresponding window entry is marked as "1". When a packet is received that has a sequence number that goes beyond the first window, the corresponding second window entry is marked. As soon as a packet is transmitted with a sequence number that goes beyond even the second window, the first window is closed, and its entries are checked. Packets associated with entries that remain marked as "0", are declared as lost. A consecutive new window is opened right after the second window and the detection process resumes.
  • the timer method can be applied only to TCP-like protocols that can measure packet round- trip time in order to properly set the timeout value of the timer. In streaming applications, most of the time only unidirectional media streams are generated. The timer method is not applicable to these cases. Instead, timing window methods are used. However, there are limitations with the timing window methods: • The window size is fixed - there is no built-in mechanism for window size adaptation, which is desirable when network conditions and application requirements (e.g. delay) change.
  • Non-uniform loss detection latency for different losses occurs - the lost detection latency lies in a range between T and ⁇ 2T, where T is the average period of the timing window, such that when a loss is associated with the first entry of the window, the detection latency is 2T, while it is T if the loss is associated with the last entry of the window.
  • T is the average period of the timing window, such that when a loss is associated with the first entry of the window, the detection latency is 2T, while it is T if the loss is associated with the last entry of the window.
  • Shortening the latency can increase the chance of recovering a lost packet. Having a uniform latency may imply an equal recovery chance for all losses. Therefore having an equal latency for all loss detection may be desirable for many streaming applications.
  • FIG. la illustrates a preferred embodiment of the circular buffer structure of the present invention.
  • FIG. lb illustrates the structure of each of the buffers in the circular buffer illustrated in FIG. la.
  • FIG. 2a illustrates an algorithm of a preferred that implements the circular buffer structure illustrated in FIGs. la-b.
  • FIG. 2b illustrates a flow chart of the algorithm illustrated in FIG. 2a.
  • FIG. 3 illustrates a preferred embodiment of an algorithm for adapting the structure of the circular buffer chain based on network characteristics.
  • m is the length of the circular chain that determines the loss detection latency, and it can be adapted to network conditions and application requirements.
  • P 11 is a pointer that circulates through the chain, pointing to each buffer in turn.
  • Each buffer Bi 10 in the chain comprises two fields, F; 13 and E 2 14. Fi 13 stores a pointer to the next buffer.
  • E 2 14 stores a sequence number 5 of a packet that may get lost.
  • packets are supposed sent in the order of packet sequence number.
  • an arriving packet In a no-loss and ideal world, an arriving packet always has a sequence number one higher than the previous. If a packet arrives out of order, or is lost, then a hole or gap is observed in the sequence numbers of the received packets. Whenever a hole (could be a hole that spans more than one consecutive number) is observed, potentially, this hole may indicate one or more lost packets.
  • out-of- order packet delivery is common to Internet because each packet can take a different path through the network and an earlier numbered packet may take longer to arrive than a later numbered packet. An application cannot make a loss declaration immediately after observing a hole in the sequence of arriving packets.
  • FIG. 2a illustrates C programming language code for a preferred embodiment of an algorithm for accomplishing the method of the present invention.
  • FIG. 2b is a flow chart of the algorithm illustrated in FIG. 2a.
  • the pointer R 12 circulates through the chain of buffers B t 11, the circulation being driven by receipt of a packet at step 20.
  • the sequence number of the received packet is checked against that of the current maximum sequence number already received s at step 21, and if it is less than the current maximum sequence number received it is an out of order packet.
  • the number of buffers that fall in the hole is decremented by 1 at step 27 and steps a-c are repeated until the remaining number of buffers is zero.
  • steps a-c are repeated until the remaining number of buffers is zero.
  • step 28 if the buffer at which R is pointing contains a non-received packet (P->F2 is not zero) then at step 29 the packet with the sequence number P->F2 is declared lost and the sequence number stored in the buffer is set to zero e. Whether or not P->F2 points at a non-received packet, at step 30 P is updated to point to the next buffer in sequence.
  • step 31 the current maximum sequence number is set to that of the received packet.
  • a packet arrives out of order (having a sequence number that is earlier than the current received maximum sequence number s) : g. the received packet number is compared with the numbers stored in the circular buffer, and the corresponding record in the buffer is cleaned, i.e., set to zero at step 32.
  • the detection latency is determined by the size of the buffer chain m, because the loss declaration is only made when the pointer re- visits a non-empty buffer, i.e., when F 2 is non-zero.
  • the chain size m that determines the detection latency can be adapted. For example, in a preferred embodiment, initially m - 4. If the observed false declaration rate is higher than a given threshold, i.e.,
  • the length may be too short and may need to be lengthened by inserting a new buffer and adjusting m correspondingly 36.
  • the larger value of m decreases the likelihood of the pointer R encountering a delivered but out-of-order packet in a buffer as R circulates through the buffer chain 5 /
  • the length of the buffer chain may be too long and may need to be shortened by deleting a buffer as illustrated in FIG. 3.
  • This present invention can be used in the implementation of multimedia players that play media from networked storage. Or it can be used by any type of multimedia receiver that wants to use retransmission as an error-recovery means, therefore need to perform packet loss detection. Finally, it can be used by transport control protocol implementations that the packet loss detection is done at the receiver side.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)
  • Communication Control (AREA)

Abstract

A circular buffer, i.e., a chain of buffers forming a circle, is provided for managing packet loss detecting in Internet streaming. The detection latency is determined by the size of the buffer chain, which can be dynamically adapted to network conditions and application requirements. The present invention can achieve reasonable detection accuracy.

Description

A SYSTEM AND METHOD USING A CIRCULAR BUFFER FOR DETECTING PACKET LOSS IN STREAMING APPLICATIONS
This invention relates to the detection of packet loss in Internet streaming. More particularly, this invention relates to a system and method for using a circular buffer, implemented by a chain of buffers forming a circle, for packet loss detection in Internet streaming. Most particularly, this invention relates to a system and method for dynamically adapting packet loss detection latency, which is determined by the size of the chain, to network conditions and application requirements that achieves reasonable detection accuracy and is easy to implement.
In Internet streaming applications, when an important packet gets lost, such as a packet belonging to an I-frame in video or the base-layer in scalable coding, the receiver may ask the sender to retransmit this lost packet. In order to send a retransmission request promptly, the receiver must have means to timely detect packet losses. Currently, packet loss detection is done using either a timer or timing windows.
In the transmission control (TCP) protocol, a timer is used for loss detection. When a packet is sent, a timer with a timeout value is set by the sender for that packet. If the timer expires before the acknowledgement of the packet is received, the packet is declared as lost and resent by the sender.
In most streaming applications, loss detection is done by using timing windows. A timing window (or more precisely a table) has a fixed number of binary entries. Each entry indicates a packet 's status (0: lost, 1: received). At a certain point of time, the first entry in this window is associated with a packet that is identified by a sequence number (such as the sequence number of a real-time transport protocol (RTP) packet). The subsequent window entries are associated with packets having higher sequence numbers in sequential order. Therefore, the space of packet sequence numbers can be viewed as being divided into blocks, each block being associated with a window at a certain point of time. Presently, two such timing windows associated with two consecutive blocks of packets are used for packet loss detection. In the beginning, all entries are marked as "0". When a packet is received, the corresponding window entry is marked as "1". When a packet is received that has a sequence number that goes beyond the first window, the corresponding second window entry is marked. As soon as a packet is transmitted with a sequence number that goes beyond even the second window, the first window is closed, and its entries are checked. Packets associated with entries that remain marked as "0", are declared as lost. A consecutive new window is opened right after the second window and the detection process resumes.
The timer method can be applied only to TCP-like protocols that can measure packet round- trip time in order to properly set the timeout value of the timer. In streaming applications, most of the time only unidirectional media streams are generated. The timer method is not applicable to these cases. Instead, timing window methods are used. However, there are limitations with the timing window methods: • The window size is fixed - there is no built-in mechanism for window size adaptation, which is desirable when network conditions and application requirements (e.g. delay) change. • Non-uniform loss detection latency for different losses occurs - the lost detection latency lies in a range between T and ~ 2T, where T is the average period of the timing window, such that when a loss is associated with the first entry of the window, the detection latency is 2T, while it is T if the loss is associated with the last entry of the window. Thus, there is a need for a loss detection method that allows adaptive loss detection latency, as well as a uniform loss detection latency. The system and method of the present invention comprises:
• a circular chain of buffers having a chain size that is adjustable according to network conditions and application requirements, thereby providing adaptive loss detection latency; and
• a circular chain of buffers having a fixed chain size, thereby providing uniform detection latency when the chain size is fixed.
Shortening the latency can increase the chance of recovering a lost packet. Having a uniform latency may imply an equal recovery chance for all losses. Therefore having an equal latency for all loss detection may be desirable for many streaming applications.
The implementation overhead of the circular buffer of the present invention is low and can be less than the timing window method. FIG. la illustrates a preferred embodiment of the circular buffer structure of the present invention.
FIG. lb illustrates the structure of each of the buffers in the circular buffer illustrated in FIG. la. FIG. 2a illustrates an algorithm of a preferred that implements the circular buffer structure illustrated in FIGs. la-b.
FIG. 2b illustrates a flow chart of the algorithm illustrated in FIG. 2a. FIG. 3 illustrates a preferred embodiment of an algorithm for adapting the structure of the circular buffer chain based on network characteristics. Referring now to FIB. la, buffers 1 through m form a circularly linked list of m buffers B{ 10 where z'= 1, ..., m each of whose structure 12 is shown in FIG. lb. As shown in FIG. la, m is the length of the circular chain that determines the loss detection latency, and it can be adapted to network conditions and application requirements. P 11 is a pointer that circulates through the chain, pointing to each buffer in turn. Each buffer Bi 10 in the chain comprises two fields, F; 13 and E2 14. Fi 13 stores a pointer to the next buffer. E2 14 stores a sequence number 5 of a packet that may get lost.
In streaming applications, packets are supposed sent in the order of packet sequence number. In a no-loss and ideal world, an arriving packet always has a sequence number one higher than the previous. If a packet arrives out of order, or is lost, then a hole or gap is observed in the sequence numbers of the received packets. Whenever a hole (could be a hole that spans more than one consecutive number) is observed, potentially, this hole may indicate one or more lost packets. However, out-of- order packet delivery is common to Internet because each packet can take a different path through the network and an earlier numbered packet may take longer to arrive than a later numbered packet. An application cannot make a loss declaration immediately after observing a hole in the sequence of arriving packets. The application has to wait and see whether this hole is just an incident of out-of-order delivery. The circular buffer method provides a way to determine if a loss declaration can be made. FIG. 2a illustrates C programming language code for a preferred embodiment of an algorithm for accomplishing the method of the present invention. FIG. 2b is a flow chart of the algorithm illustrated in FIG. 2a. The pointer R 12 circulates through the chain of buffers Bt 11, the circulation being driven by receipt of a packet at step 20. The sequence number of the received packet is checked against that of the current maximum sequence number already received s at step 21, and if it is less than the current maximum sequence number received it is an out of order packet.
If it is not an out of order packet, at step 22 a hole in the sequence is checked for and when a hole in the sequence is observed the following steps are performed: a. If the buffer at which R is pointing contains a non-received packet (P->F2 is not zero at step 24) then at step 25 the packet with the sequence number P->F2 is declared lost. b. Then, regardless of whether or not P was pointing at a non-received packet, at step 26 the current maximum sequence number is incremented by one and stored in the current buffer and R is updated to point to the next buffer in sequence, i.e., P=P->F1. c. The number of buffers that fall in the hole is decremented by 1 at step 27 and steps a-c are repeated until the remaining number of buffers is zero. Thus, all the sequence numbers that fall in the hole are stored in the circular buffer chain, with each number occupying one buffer.
When a hole is not observed, the following steps are performed: d. At step 28 if the buffer at which R is pointing contains a non-received packet (P->F2 is not zero) then at step 29 the packet with the sequence number P->F2 is declared lost and the sequence number stored in the buffer is set to zero e. Whether or not P->F2 points at a non-received packet, at step 30 P is updated to point to the next buffer in sequence.
When all the processing associated with an in order packet is completed: f. At step 31 the current maximum sequence number is set to that of the received packet.
If a packet arrives out of order (having a sequence number that is earlier than the current received maximum sequence number s) : g. the received packet number is compared with the numbers stored in the circular buffer, and the corresponding record in the buffer is cleaned, i.e., set to zero at step 32.
Thus, the detection latency is determined by the size of the buffer chain m, because the loss declaration is only made when the pointer re- visits a non-empty buffer, i.e., when F2 is non-zero.
As illustrated in FIG. 3, the chain size m, that determines the detection latency can be adapted. For example, in a preferred embodiment, initially m - 4. If the observed false declaration rate is higher than a given threshold, i.e.,
false j-ate > TOLERABLE _RATE
the length may be too short and may need to be lengthened by inserting a new buffer and adjusting m correspondingly 36. The greater the length of the network path, i.e., number of links traversed, the larger the m that is needed, because when a packet traverses a longer network path, there is a greater likelihood of out-of-order delivery occurring. The larger value of m decreases the likelihood of the pointer R encountering a delivered but out-of-order packet in a buffer as R circulates through the buffer chain 5/
11. The success _rate is initially declared to be a pre-determined EXPECT_RATE and adjusted thereafter to be success j~ate = declared losses - falsely declared losses declared Josses
false 'ate = 1 - success _rate and if the succes _rate is too high, i.e., if
success _r ate > EXPECT _RATE
the length of the buffer chain may be too long and may need to be shortened by deleting a buffer as illustrated in FIG. 3.
This present invention can be used in the implementation of multimedia players that play media from networked storage. Or it can be used by any type of multimedia receiver that wants to use retransmission as an error-recovery means, therefore need to perform packet loss detection. Finally, it can be used by transport control protocol implementations that the packet loss detection is done at the receiver side.
The methods and systems of the present invention, as described above and shown in the drawings, provide for a circular buffer that allows an adaptive latency detection time or a fixed latency detection time. It will be apparent to those skilled in the art that various modifications and variations can be made in the method and system of the present invention without departing from the spirit or scope of the invention. Thus, it is intended that the present invention includes modifications and variations that are within the scope of the appended claims and their equivalents.

Claims

CLAIMS:
1. A system for adaptive detection of streamed packet loss by a receiver of a plurality of streamed packets transmitted over a network from a given sender to the receiver, comprising: a circular buffer (10) of size m>l entries (13) , each entry (13) having at most one sequence number (15) of a streamed packet that has not been received and is possibly lost; a packet loss detection module (33) that uses the circular buffer (10) to detect and store therein a sequence number (15) of a non-received and possibly lost packet, to detect therein and remove therefrom a sequence number (15) of a lost packet and declare the packet lost, and to remove therefrom a sequence number (15) of a possibly lost packet that is received from the given sender; an adaptation module (37) that adapts the system to a network condition, wherein a loss detection latency is determined by the size of the circular buffer (10) and the loss declaration is possibly false.
2. The system of claim 1 , wherein m is initially set to 4.
3. The system of claim 1 , further comprising: a variable 5 having an initial value of 1 and being adapted to store a highest sequence number of a streamed packet transmitted over the network from the given sender and received by the receiver; a pointer P (12) having an initial position pointing at a pre-determined location in the circular chain and being adapted to circulate sequentially through the m entries of said circular buffer (10) beginning at an entry (13) in the circular buffer (10) that is next in sequence to the entry (13) corresponding to the variable s; wherein, for a streamed packet received from the given sender, the packet loss detection module (33) checks the sequence number of the received packet against the variable s and performs one of the following - a. if a hole in the sequence of received packets is observed beginning at the location pointed at by the pointer R (12), each entry (13) of the circular buffer (10) that is in the hole is checked for a sequence number (15) of a possibly lost packet and the corresponding packet is declared lost, a total of declared losses declared_losses is increased by one, each sequence number in the hole is stored in ascending order in a sequential entry (13) beginning at the location pointed at by the pointer R (12), P (12) is updated to point to the entry (13) in the circular buffer (10) following hole, and s is set equal to the sequence number of the received pkt, b. if a hole in the sequence of received packets in not observed the entry (13) pointed at by the pointer R (12) is checked for a sequence number (15) of a possibly lost packet and the corresponding packet is declared lost, a total of declared losses declared Josses is increased by one, the entry (13) is cleared, P (12) is updated to point to the next entry (14) in the circular buffer (10), and s is set equal to the sequence number of the received pkt, c. if an out of order packet is observed, the entries of the circular buffer (10) are searched to find one that contains a sequence number (15) equal to the sequence number of the received packet and if found the entry (13) is cleared, if not found a false declaration τatefalse_declared_losses is increased by one.
4. The system of claim 3, wherein: the network condition is at least one of a success rate of transmission
(success _ rαte) and the false declaration rate (fαlse_rαte) wherein the success_rαte is initially set to a pre-determined expected rate (EXPECT _RATE); and the adaptation module (37) adjusts the size m of the circular buffer (10) according to the network condition as follows a. m is increased if fαlse_rαte > TOLERABLE _RATE where
TOLERABLE _RATE is a predetermined threshold and an entry (13) is added to the circular buffer (10), or b. m is decreased if success_rαte ^declared losses-falsely_declared_losses > EXPECT J TE
EXPECTORATE and an entry (13) is removed from the circular buffer (10).
5. The system of claim 4, wherein the circular buffer (10) is a circular buffer (10) chain
Bi for i=l, ..., m of a plurality of m>l buffers such that each of said plurality of buffers is an entry (13) comprising a pointer to the next buffer (14) in the chain and a value for storing a sequence number (15) of a non-received buffer and the pointer R (12) point to a buffer in the chain.
6. A system for adaptive detection of streamed packet loss by a receiver of a plurality of streamed packets transmitted over a network from a given sender to the receiver, comprising:
a circular buffer (10) of size m>l entries, each entry (13) having at most one sequence number (15) of a streamed packet that has not been received and is possibly lost; a packet loss detection module (33) that uses the circular buffer (10) to detect and store therein a sequence number (15) of a non-received and possibly lost packet, to detect therein and remove therefrom a sequence number (15) of a lost packet and declare the packet lost, and to remove therefrom a sequence number (15) of a possibly lost packet that is received from the given sender; means for adapting the system to a network condition (37), wherein a loss detection latency is determined by the size m of the circular buffer (10) and the loss declaration is possibly false.
7. The system of claim 6, further comprising: a variable s having an initial value of 1 and being adapted to store a highest sequence number of a streamed packet transmitted over the network from the given sender and received by the receiver; a pointer P (12) having an initial position pointing at a pre-determined location in the circular chain and being adapted to circulate sequentially through the m entries of said circular buffer (10) beginning at an entry (13) in the circular buffer (10) that is next in sequence to the entry (13) corresponding to the variable s; wherein, for a streamed packet received from the given sender, the packet loss detection module (33) checks the sequence number of the received packet against the variable s and performs one of the following - a. if a hole in the sequence of received packets is observed beginning at the location pointed at by the pointer R (12), each entry (13) of the circular buffer (10) that is in the hole is checked for a sequence number (15) of a possibly lost packet and the corresponding packet is declared lost, a total of declared losses declaredjosses is increased by one, each sequence number in the hole is stored in ascending order in a sequential entry (13) beginning at the location pointed at by the pointer P (12), P (12) is updated to point to the entry (13) in the circular buffer (10) following hole, and s is set equal to the sequence number of the received pkt, b. if a hole in the sequence of received packets in not observed the entry (13) pointed at by the pointer P (12) is checked for a sequence number (15) of a possibly lost packet and the corresponding packet is declared lost, a total of declared losses declared_losses is increased by one, the entry (13) is cleared, R (12) is updated to point to the next entry (14) in the circular buffer (10), and s is set equal to the sequence number of the received pkt, c. if an out of order packet is observed, the entries (13) of the circular buffer (10) are searched to find one that contains a sequence number (15) equal to the sequence number of the received packet and if found the entry (13) is cleared, if not found a false declaration rsΛefalse_declared_losses is increased by one.
8. A method for adaptive detection of streamed packet loss by a receiver of a plurality of streamed packets transmitted over a network from a given sender to the receiver, comprising the steps of: providing a circular buffer (10) of size m>l entries, each entry (13) having at most one sequence number (15) of a streamed packet that has not been received and is possibly lost; receiving from the given sender a streamed packet having a sequence number; using the circular buffer (10) and the sequence number of the received packed to perform one of the steps of: a. detecting and storing in the circular buffer (10) a sequence number (15) of a non-received and possibly lost packet, b. detecting in the circular buffer (10) and removing therefrom a sequence number (15) of a lost packet and declaring the packet lost such that the loss declaration is possibly false, and c. removing from the circular buffer (10) a sequence number (15) of a possibly lost packet that corresponds to the sequence number of the received packet; adapting the method to a network condition such that a loss detection latency is determined by the size m of the circular buffer (10).
9. The method of claim 8, further comprising the steps of: providing a variable s having an initial value of 1 ; setting the provided variable s = max(5, sequence number of the received streamed packet); providing a pointer R (12) having an initial position pointing at a pre-determined location in the circular buffer (10) that is adapted to circulate sequentially through the m entries of the provided circular buffer (10) beginning at an entry (13) in the circular buffer (10) that is next in sequence to the entry (13) corresponding to the variable s; for a streamed packet received from the given sender, checking the sequence number of the received packet against the variable s and performing one of the following steps- a. if a hole in the sequence of received packets is observed beginning at the location pointed at by the pointer R (12), a.l checking each entry (13) of the circular buffer (10) that is in the hole for a sequence number (15) of a possibly lost packet and declaring the corresponding packet lost, a.2 if a packet is declared lost, increasing a total of declared losses declaredjosses by one, a.3 storing each sequence number in the hole in ascending order in a sequential entry (13) beginning at the location pointed at by the pointer R
(12), a.4 updating the pointer P (12) to point to the entry (13) in the circular buffer (10) following hole, and a.5 setting s equal to the sequence number of the received pkt; b. if a hole in the sequence of received packets in not observed b.l checking the entry (13) pointed at by the pointer R (12) for a sequence number (15) of a possibly lost packet and declaring the corresponding packet lost, b2. if a packet is declared lost, increasing a total declared losses declaredjosses by one, b.3 clearing the entry (13) pointed at by P (12), b.4 updating R (12) to point to the next entry (14) in the circular buffer (10), and b.5 setting s equal to the sequence number of the received pkt; c. if an out of order packet is observed c.l searching the entries (13) of the circular buffer (10) to find one that contains a sequence number (15) equal to the sequence number of the received packet, c.2 if found, clearing the entry (13), c.3 if not found, increasing a false declaration rate falsely _declared osses by one.
10. The method of claim 9, wherein: the network condition is at least one of a success rate of transmission (success _ rate) and the false declaration rate (false_ rate)) wherein the success _rate is initially set to a pre-determined expected rate (EXPECT LATE); and the adaptation step adjusts the size m of the circular buffer (10) according to the network condition by performing one of the following steps: d. if false _rate > TOLERABLE JUTE where TOLERABLE JUTE is a predetermined threshold performing the following steps d.l increasing m by 1, and d.2 adding an entry (13) to the circular buffer (10), or e. if success _r ate > EXPECT JUTE e.1 decreasing m by 1. e.2 removing an entry (13) from the circular buffer (10),
11. The method of claim 9, wherein m is initially set to 4.
12. A computer program product for use in conjunction with a processor to adapt detection of streamed packet loss by a receiver of a plurality of streamed packets transmitted over a network from a given sender to the receiver, the computer program product comprising a computer readable storage medium and a computer program mechanism embedded therein, the computer program mechanism comprising: a circular buffer (10) of size m>l entries, each entry (13) having at most one sequence number (15) of a streamed packet that has not been received and is possibly lost; a packet loss detection routine (33) including instructions for using the circular buffer (10) to detect and store therein a sequence number (15) of a non-received and possibly lost packet, detect therein and remove therefrom a sequence number (15) of a lost packet and declare the packet lost, and remove therefrom a sequence number (15) of a possibly lost packet that is received from the given sender; an adaptation routine (37) including instructions that adapt the system to a network condition, wherein a loss detection latency is determined by the size m of the circular buffer (10) and the loss declaration is possibly false.
13. The computer program product of claim 12, further comprising: a variable s having an initial value of 1 and being adapted to store a highest sequence number of a streamed packet transmitted over the network from the given sender and received by the receiver; a pointer R (12) having an initial position pointing at a pre-determined location in the circular chain and being adapted to circulate sequentially through the m entries of said circular buffer (10) beginning at an entry (13) in the circular buffer (10) that is next in sequence to the entry (13) corresponding to the variable s; wherein, for a streamed packet received from the given sender, the instructions of the packet loss detection routine (33) check the sequence number of the received packet against the variable s and perform one of the following - a. if a hole in the sequence of received packets is observed beginning at the location pointed at by the pointer R (12), each entry (13) of the circular buffer (10) that is in the hole is checked for a sequence number (15) of a possibly lost packet and the corresponding packet is declared lost, total of declared losses declaredjosses is increased by one, each sequence number in the hole is stored in ascending order in a sequential entry (13) beginning at the location pointed at by the pointer R (12), P (12) is updated to point to the entry (13) in the circular buffer (10) following hole, and s is set equal to the sequence number of the received pkt, b. if a hole in the sequence of received packets in not observed the entry (13) pointed at by the pointer P (12) is checked for a sequence number (15) of a possibly lost packet and the corresponding packet is declared lost, a total of declared losses declared Josses is increased by one, the entry (13) is cleared, R (12) is updated to point to the next entry (14) in the circular buffer (10), and s is set equal to the sequence number of the received pkt, c. if an out of order packet is observed, the entries (13) of the circular buffer (10) are searched to find one that contains a sequence number (15) equal to the sequence number of the received packet and if found the entry (13) is cleared, if not found a false declaration rate falsely _declared Josses is increased by one and the total undeclared losses declared Josses is decreased by one.
14. The computer program product of claim 13, wherein: the network condition is at least one of a success rate of transmission (success _rate) and a false declaration rate (false)rate) wherein the success 'ate is initially set to a pre-determined expected rate (EXPECT JUTE); and the adaptation routine (37) adjusts the size m of the circular buffer (10) according to the network condition as follows a. m is increased if false_rate > TOLERABLE JUTE where TOLERABLE JUTE is a predetermined threshold and an entry (13) is added to the circular buffer (10), or b. m is decreased if success _jate = declared losses-falsely declared losses > EXPECT JATE and an EXPECTORATE entry (13) is removed from the circular buffer (10).
PCT/IB2003/005879 2002-12-12 2003-12-10 A system and method using a circular buffer for detecting packet loss in streaming applications WO2004054183A1 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
AU2003302800A AU2003302800A1 (en) 2002-12-12 2003-12-10 A system and method using a circular buffer for detecting packet loss in streaming applications
JP2004558299A JP2006510255A (en) 2002-12-12 2003-12-10 System and method for detecting packet loss in a streaming application using a circular buffer
EP03812659A EP1573985A1 (en) 2002-12-12 2003-12-10 A system and method using a circular buffer for detecting packet loss in streaming applications
US10/538,100 US20060069793A1 (en) 2002-12-12 2003-12-10 System and method using a circular buffer for detecting packet loss in streaming applications

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US43289302P 2002-12-12 2002-12-12
US60/432,893 2002-12-12

Publications (1)

Publication Number Publication Date
WO2004054183A1 true WO2004054183A1 (en) 2004-06-24

Family

ID=32508008

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/IB2003/005879 WO2004054183A1 (en) 2002-12-12 2003-12-10 A system and method using a circular buffer for detecting packet loss in streaming applications

Country Status (5)

Country Link
EP (1) EP1573985A1 (en)
JP (1) JP2006510255A (en)
CN (1) CN1726677A (en)
AU (1) AU2003302800A1 (en)
WO (1) WO2004054183A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8565071B2 (en) 2007-12-29 2013-10-22 Huawei Technologies Co., Ltd. Protection method, system, and device in packet transport network

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100502327C (en) * 2006-09-29 2009-06-17 Ut斯达康通讯有限公司 A method, device and system used to detect frame loss of lub FP frame based on IP transmission
US10348634B2 (en) * 2015-12-22 2019-07-09 Intel Corporation Technologies for tracking out-of-order network packets
WO2021117171A1 (en) * 2019-12-11 2021-06-17 日本電信電話株式会社 Data sequence correction method, packet monitoring device, data sequence correction device, and data sequence correction program

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5151899A (en) * 1991-02-11 1992-09-29 Digital Equipment Corporation Tracking sequence numbers in packet data communication system
US6141324A (en) * 1998-09-01 2000-10-31 Utah State University System and method for low latency communication
WO2002065704A1 (en) * 2001-02-12 2002-08-22 Eyretel Plc Packet data recording method and system

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5151899A (en) * 1991-02-11 1992-09-29 Digital Equipment Corporation Tracking sequence numbers in packet data communication system
US6141324A (en) * 1998-09-01 2000-10-31 Utah State University System and method for low latency communication
WO2002065704A1 (en) * 2001-02-12 2002-08-22 Eyretel Plc Packet data recording method and system

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8565071B2 (en) 2007-12-29 2013-10-22 Huawei Technologies Co., Ltd. Protection method, system, and device in packet transport network

Also Published As

Publication number Publication date
JP2006510255A (en) 2006-03-23
EP1573985A1 (en) 2005-09-14
AU2003302800A1 (en) 2004-06-30
CN1726677A (en) 2006-01-25

Similar Documents

Publication Publication Date Title
US20060069793A1 (en) System and method using a circular buffer for detecting packet loss in streaming applications
US7293100B2 (en) Methods and apparatus for partially reordering data packets
KR101236080B1 (en) Efficient loss recovery architecture for loss-decoupled tcp
Blanton et al. A conservative selective acknowledgment (SACK)-based loss recovery algorithm for TCP
Blanton et al. A conservative loss recovery algorithm based on selective acknowledgment (SACK) for TCP
US8064459B2 (en) Method and system for transparent TCP offload with transmit and receive coupling
US6438108B1 (en) System for improved transmission of acknowledgements within a packet data network
EP1783946A2 (en) Network flow/stream simulation method
US7676593B2 (en) Method of bandwidth control by rewriting ACK number
US20050068896A1 (en) TCP acceleration system
GB2425025A (en) Intrusion detection state machine for finding attack signatures with reduced buffering requirements for handling out of sequence packets
JP2009055419A (en) Communication device, communication system, and method and program for detecting missing packet
CN109787722B (en) Data transmission method and device and server
CN111711566B (en) Receiving end disorder rearrangement method under multipath routing scene
CN107592185B (en) Forward retransmission method suitable for network coding transmission control protocol
CN107634823B (en) Data transmission method of transmission control protocol based on network coding
JP2013243694A (en) Method and device for submitting at least one tcp data segment stream to inline content analysis, computer readable medium holding one or a plurality of instruction sequences for carrying out the method, and computer program product
WO2004054183A1 (en) A system and method using a circular buffer for detecting packet loss in streaming applications
US11283719B2 (en) Content addressable memory (CAM) based hardware architecture for datacenter networking
Bhargava et al. Analysis of Different Congestion Avoidance Algorithms
EP3108631B1 (en) Buffer bloat control
US6957374B1 (en) Method of acknowledging receipt of data packets
JP5046197B2 (en) Communication apparatus, communication system, packet loss detection method, and packet loss detection program
JP5382556B2 (en) Communication apparatus, communication system, packet loss detection method, and packet loss detection program
CN114726790B (en) Congestion control selection method and system based on transmission content size

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

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 EC EE EG 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 NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SY TJ TM TN TR TT TZ UA UG US UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A1

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

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: 2003812659

Country of ref document: EP

ENP Entry into the national phase

Ref document number: 2006069793

Country of ref document: US

Kind code of ref document: A1

WWE Wipo information: entry into national phase

Ref document number: 10538100

Country of ref document: US

WWE Wipo information: entry into national phase

Ref document number: 2004558299

Country of ref document: JP

Ref document number: 20038A58391

Country of ref document: CN

WWP Wipo information: published in national office

Ref document number: 2003812659

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 10538100

Country of ref document: US

WWW Wipo information: withdrawn in national office

Ref document number: 2003812659

Country of ref document: EP