|
@@ 964-968 (lines=5) @@
|
| 961 |
|
|
| 962 |
|
default: |
| 963 |
|
// Implementations shall ignore any standard or non-standard object that they do not know how to handle. |
| 964 |
|
if ($this->GUIDname($NextObjectGUIDtext)) { |
| 965 |
|
$info['warning'][] = 'unhandled GUID "'.$this->GUIDname($NextObjectGUIDtext).'" {'.$NextObjectGUIDtext.'} in ASF header at offset '.($offset - 16 - 8); |
| 966 |
|
} else { |
| 967 |
|
$info['warning'][] = 'unknown GUID {'.$NextObjectGUIDtext.'} in ASF header at offset '.($offset - 16 - 8); |
| 968 |
|
} |
| 969 |
|
$offset += ($NextObjectSize - 16 - 8); |
| 970 |
|
break; |
| 971 |
|
} |
|
@@ 1321-1325 (lines=5) @@
|
| 1318 |
|
|
| 1319 |
|
default: |
| 1320 |
|
// Implementations shall ignore any standard or non-standard object that they do not know how to handle. |
| 1321 |
|
if ($this->GUIDname($NextObjectGUIDtext)) { |
| 1322 |
|
$info['warning'][] = 'unhandled GUID "'.$this->GUIDname($NextObjectGUIDtext).'" {'.$NextObjectGUIDtext.'} in ASF body at offset '.($offset - 16 - 8); |
| 1323 |
|
} else { |
| 1324 |
|
$info['warning'][] = 'unknown GUID {'.$NextObjectGUIDtext.'} in ASF body at offset '.($this->ftell() - 16 - 8); |
| 1325 |
|
} |
| 1326 |
|
$this->fseek(($NextObjectSize - 16 - 8), SEEK_CUR); |
| 1327 |
|
break; |
| 1328 |
|
} |