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}.
+ *
+ *
+ * - _nam -- Name of the track
+ * - _ART -- Name of the artist
+ * - aART -- Name of the album artist
+ * - _alb -- Name of the album
+ * - _grp -- Grouping
+ * - _day -- Year of publication
+ * - trkn -- Track number (number/total)
+ * - disk -- Disk number (number/total)
+ * - tmpo -- BPM tempo
+ * - _wrt -- Name of the composer
+ * - _cmt -- Comments
+ * - _gen -- Genre as string
+ * - gnre -- Genre as an ID3v1 code, added by one
+ * - cpil -- Part of a compilation (0/1)
+ * - tvsh -- Name of the (television) show
+ * - sonm -- Sort name of the track
+ * - soar -- Sort name of the artist
+ * - soaa -- Sort name of the album artist
+ * - soal -- Sort name of the album
+ * - soco -- Sort name of the composer
+ * - sosn -- Sort name of the show
+ * - _lyr -- Lyrics
+ * - covr -- Cover (or other) artwork binary data
+ * - _too -- Information about the software
+ *
*
* @package php-reader
* @subpackage ISO 14496