13 lines
270 B
PHP
13 lines
270 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Media\QuickTime\Atoms;
|
||
|
|
||
|
// Reserved space—can be overwritten by an extended size field if the following atom exceeds 2^32 bytes,
|
||
|
// without displacing the contents of the following atom.
|
||
|
|
||
|
use App\Media\QuickTime\Atom;
|
||
|
|
||
|
class wide extends Atom
|
||
|
{
|
||
|
|
||
|
}
|