diff --git a/src/ID3/Header.php b/src/ID3/Header.php index 589404c..f257f3b 100644 --- a/src/ID3/Header.php +++ b/src/ID3/Header.php @@ -136,7 +136,7 @@ final class ID3_Header extends ID3_Object * * @return integer */ - public function getFlags($flags) { return $this->_flags; } + public function getFlags() { return $this->_flags; } /** * Sets the flags byte. diff --git a/src/ID3/Object.php b/src/ID3/Object.php index 3c3e894..487059f 100644 --- a/src/ID3/Object.php +++ b/src/ID3/Object.php @@ -123,7 +123,7 @@ abstract class ID3_Object { if (method_exists($this, "get" . ucfirst($name))) return call_user_func(array($this, "get" . ucfirst($name))); - else throw new Reader_Exception("Unknown field: " . $name); + else throw new ID3_Exception("Unknown field: " . $name); } /** @@ -138,7 +138,7 @@ abstract class ID3_Object if (method_exists($this, "set" . ucfirst($name))) call_user_func (array($this, "set" . ucfirst($name)), $value); - else throw new Reader_Exception("Unknown field: " . $name); + else throw new ID3_Exception("Unknown field: " . $name); } /** diff --git a/src/ISO14496.php b/src/ISO14496.php index 60c9887..ad91e54 100644 --- a/src/ISO14496.php +++ b/src/ISO14496.php @@ -170,7 +170,7 @@ require_once("ISO14496/Box.php"); *
  • trun -- {@link ISO14496_Box_TRUN Track Fragment Run} *
  • sdtp -- {@link ISO14496_Box_SDTP Independent and Disposable * Samples} - *
  • sbgp -- {@link ISO14496_Box_SBGP SampleToGroup Box} + *
  • sbgp -- {@link ISO14496_Box_SBGP !SampleToGroup Box} *
  • subs -- {@link ISO14496_Box_SUBS Sub-Sample Information Box} * * diff --git a/src/ISO14496/Box/ILST.php b/src/ISO14496/Box/ILST.php index 22c5de9..59955c3 100644 --- a/src/ISO14496/Box/ILST.php +++ b/src/ISO14496/Box/ILST.php @@ -40,7 +40,36 @@ require_once("ISO14496/Box.php"); /**#@-*/ /** - * A container box for all the iTunes/iPod specific boxes. + * A container box for all the iTunes/iPod specific boxes. A list of well known + * boxes is provided in the following table. The value for each box is contained + * in a nested {@link ISO14496_Box_DATA Data Box}. + * + * * * @package php-reader * @subpackage ISO 14496