|
@@ 1986-1989 (lines=4) @@
|
| 1983 |
|
$frame_offset += 4; |
| 1984 |
|
$parsedFrame['time_end'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); |
| 1985 |
|
$frame_offset += 4; |
| 1986 |
|
if (substr($parsedFrame['data'], $frame_offset, 4) != "\xFF\xFF\xFF\xFF") { |
| 1987 |
|
// "If these bytes are all set to 0xFF then the value should be ignored and the start time value should be utilized." |
| 1988 |
|
$parsedFrame['offset_begin'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); |
| 1989 |
|
} |
| 1990 |
|
$frame_offset += 4; |
| 1991 |
|
if (substr($parsedFrame['data'], $frame_offset, 4) != "\xFF\xFF\xFF\xFF") { |
| 1992 |
|
// "If these bytes are all set to 0xFF then the value should be ignored and the start time value should be utilized." |
|
@@ 1991-1994 (lines=4) @@
|
| 1988 |
|
$parsedFrame['offset_begin'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); |
| 1989 |
|
} |
| 1990 |
|
$frame_offset += 4; |
| 1991 |
|
if (substr($parsedFrame['data'], $frame_offset, 4) != "\xFF\xFF\xFF\xFF") { |
| 1992 |
|
// "If these bytes are all set to 0xFF then the value should be ignored and the start time value should be utilized." |
| 1993 |
|
$parsedFrame['offset_end'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); |
| 1994 |
|
} |
| 1995 |
|
$frame_offset += 4; |
| 1996 |
|
|
| 1997 |
|
if ($frame_offset < strlen($parsedFrame['data'])) { |