This application claims the benefit under 35 U.S.C. §365 of International Application PCT/EP01/10121, filed Sep. 3, 2001, which claims the benefit of European Application No. 00250307.6, filed Sep. 16, 2000.
The invention relates to a method and to a data recorder for converting first data packet timestamps based on a first clock rate to second data packet timestamps based on a second clock rate, for bitstream recording or replaying.
DVD (digital versatile disc) stream recording will be finally specified soon and concerns DVD Rewritable/Re-recordable discs for recording and playing back digital bitstreams including for example MPEG data packets as specified in ISO/IEC 11172, 13818 or 14496. To enable proper real-time playback, e.g. of stored MPEG-2 transport packets according to the DVB-S standard ETS 300 421, a time information is to be added to every data packet to be recorded.
In WO-A-00/14952 of the applicant it is proposed to use original IEEE 1394 timestamps also in a DVD stream recorder.
When recording, a DVD streamer receives a data stream from an application device. When replaying, the streamer outputs the replayed data stream to the same or another application device.
A problem to be solved by the invention is to efficiently provide reference time information required for replaying recorded data packets. This problem is solved by the method disclosed in claim 1.
A data recorder that utilises this method is disclosed in claim 6.
A DVD streamer is connected to the application device via an interface. In a home network environment using e.g. IEEE 1394 interfaces, the interface timing generation, or timestamping, and the corresponding interface time reference regeneration is executed in a special IEEE 1394 format.
Such interface-generated timestamps could also be used for the DVD stream recording, instead of additionally generating independent streamer-specific timestamps. However, to perform DVD stream recording, a timestamp format conversion is to be carried out because the required DVD Streamer timestamp format is different from above IEEE 1394 timestamp format. The DVD stream recording timestamp format is a 48 bit format using a 27.000 MHz clock frequency according the DVD Specifications for Rewritable/Re-recordable Discs, Part 5 Stream Recording.
According to the invention, a format conversion is carried out wherein the differences between consecutive interface timestamps are determined and are used for calculating the DVD stream recorder timestamps for the recording. Advantageously, the wraparound-burdened IEEE 1394 timestamps can be converted into the DVD stream recording format thereby avoiding division operations on very long integer data types or floating point operations.
In principle, the inventive method is suited for converting first data packet timestamps PATA based on a first clock rate to second data packet timestamps PATB based on a second clock rate, said clock rates having a ratio B/A, A being derived from said first clock rate and B being derived from said second clock rate, said method including the steps:
This PAT_M wraparound value is the maximum value possible for PATA incremented by ‘1’.
Advantageous additional embodiments of the inventive method are disclosed in the respective dependent claims.
In principle the data recorder is suited for recording or replaying data packets, using means for converting first data packet timestamps PATA based on a first clock rate to second data packet timestamps PATB based on a second clock rate, said clock rates having a ratio B/A, A being derived from said first clock rate and B being derived from said second clock rate, said data recorder including the features:
Advantageous additional embodiments of the inventive apparatus are disclosed in the respective dependent claims.
Exemplary embodiments of the invention are described with reference to the accompanying drawings, which show in:
In
In real-time record mode the DVD streamer receives e.g. MPEG-2 transport packets for one or more programs via the IEEE 1394 interface IF. These packets pass through a further buffering & timestamp handling stage BTSHS and a further timestamping & buffering stage TSBS to streamer unit STRU. Replayed data packets coming from STRU pass through a buffering & timing regeneration stage BTRS and a further buffering & timestamping handling stage BTSS to IF.
Dashed line A-A is the functional border between the streamer-related STRRS stages/unit TSBS, BTRS and STRU, and the interface-related IFRS stages/unit TSBI, BTSHS, BTSS, BTSHI and IF.
To the DVD streamer STR, which is depicted as a shadowed box, belong unit/stages STRU, BTSHS, TSBS, BTRS and BTSS. The timestamp format according to IEEE 1394 is based on a 24.576 MHz clock and includes two wraparound counters. The first counter output is a 12-bit cycle_offset counting from ‘0’ to ‘3071’ and the second counter output is a 13-bit cycle_count counting from ‘0’ to ‘7999’. By passing the upper boundary limit of the counters, a wraparound to zero is executed. The wraparound of the first counter cycle_offset carries into the second cycle_count field. A complete time period causing one wraparound for cycle_count is exactly 1 sec.
For real-time data packet handling in a DVD streamer, each DVD transport packet has to carry its own timestamp. Normally, the DVD streamer would generate and record its own timestamps together with the recorded data packets. Such DVD streamer timestamps would thereafter be used in the replaying mode to output the data packets according to the original temporal location at recording time.
However, the DVD streamer includes an IEEE 1394 interface. Therefore the IEEE 1394 timestamps are already present within the DVD streamer, although their format is not suited for DVD stream recording purposes. In particular the different clock frequencies 24.576 MHz and 27.000 MHz would cause problems because high-precision conversion from one to the other is not trivial. If one could in spite of these problems make use of the IEEE 1394 timestamps, a separate DVD timestamp clock would be superfluous.
Therefore, if according to the invention for DVD stream recording the IEEE 1394 timestamps are used, their 32-bit/24.576 MHz format has to be converted into the above mentioned 48-bit/27.000 MHz DVD format that is depicted in
The PAT is composed of PAT_base having a length of 39 bits and PAT_extension having a length of 9 bits. PAT is used for the stream object information. Bit0 . . . bit31 are added to each application packet and bit0 . . . bit40 are used for the system clock reference in DVD stream recording. PATDVDstreamer for DVD streamer devices has the following properties:
PAT_base(i)=((system_clock*t(i))/300)mod 239
PAT_exten(i)=(system_clock*t(i))mod 300
PATDVDstreamer(i)=PAT_base(i)*300+PAT_exten(i)
wherein ‘/’ denotes an integer division, ‘i’ denotes a current data packet and system_clock has the value 27.000 MHz.
For a timestamp conversion from IEEE 1394 format to DVD streamer format two problems must be considered:
The bitlength limit for integer calculation in most processor platforms is at present 32 bits. However, as mentioned above a 48-bit timestamp format is to be handled. To avoid division operations on very high-bitlength integer data types or floating point operations, the following inventive procedure is proposed. The formulas are written in C notation wherein 1% represents the modulo function.
The calculations are based on the differences between consecutive IEEE 1394 timestamps.
For i=0: PATDVDstreamer(0)=0, i.e. PATstart is advantageously zero. However, PATstart can have any other start value.
For all other values of ‘i’, temporal differences between consecutive IEEE 1394 timestamps are converted to the DVD streamer format according to:
if no IEEE1394-timestamp-wraparound {
delta—27(i)=((PATIEEE1394(i)−PATIEEE1394(i−1))*3375+remainder(i−1))/3072
remainder(i)=((PATIEEE1394(i)−PATIEEE1394(i−1))*3375+remainder(i−1))%3072
}
if IEEE1394-timestamp-wraparound {
delta—27(i)=((PATIEEE1394(i)+PAT_MAXIEEE1394−PATIEEE1394(i−1))*3375+remainder(i−1))/3072
remainder(i)=((PATIEEE1394(i)+PAT_MAXIEEE1394−PATIEEE1394(i−1))*3375+remainder(i−1))%3072
}
with PAT_MAXIEEE1394=24576000 and remainder(0)=0. Advantageously, the inclusion of a remainder calculation avoids the accumulation of rounding errors.
The calculation is carried out under the assumption that
(PATIEEE1394(i)−PATIEEE1394(i−1))*3375<2BL,
wherein ‘BL’ is the bitlength of the integer calculation involved, i.e. ‘BL’ has in most present processor platforms a value of ‘32’.
The resulting PATs in the DVD streamer format are
PATDVDstreamer(i)=PATDVDstreamer(i−1)+delta—27(i).
The two elements for a PATDVDstreamer(i) can be calculated by
PAT_exten(i)=(PAT_exten(i−1)+delta—27(i))% 300
PAT_base(i)=PAT_base(i−1)+(PAT_exten(i−1)+delta—27(i))/300
This advantageously avoids division operations on 48-bit integers.
In
Using the above processing for the calculation of the 48-bit DVD stream recording timestamp format is very efficient in particular in view of the application in a real-time system. Division operations on very high-bitlength integer data types and also floating point operations can be avoided.
The invention can be used correspondingly for any other type of interfaces and any other type of data stream recorders, e.g. CD-related data stream recorders.
The numbers given can be adapted correspondingly for other applications.
Filing Document | Filing Date | Country | Kind | 371c Date |
---|---|---|---|---|
PCT/EP01/10121 | 9/3/2001 | WO | 00 | 3/14/2003 |
Publishing Document | Publishing Date | Country | Kind |
---|---|---|---|
WO02/23911 | 3/21/2002 | WO | A |
Number | Name | Date | Kind |
---|---|---|---|
6108486 | Sawabe et al. | Aug 2000 | A |
6320825 | Bruekers et al. | Nov 2001 | B1 |
7079753 | Ando et al. | Jul 2006 | B2 |
7197234 | Chatterton | Mar 2007 | B1 |
7424209 | Mazur | Sep 2008 | B2 |
7496283 | Evans et al. | Feb 2009 | B2 |
20040101273 | Winter et al. | May 2004 | A1 |
Number | Date | Country |
---|---|---|
986 248 | Mar 2000 | EP |
Number | Date | Country | |
---|---|---|---|
20040019819 A1 | Jan 2004 | US |