equal
deleted
inserted
replaced
400 * @return bool |
400 * @return bool |
401 */ |
401 */ |
402 public function parsePICTURE() { |
402 public function parsePICTURE() { |
403 $info = &$this->getid3->info; |
403 $info = &$this->getid3->info; |
404 |
404 |
|
405 $picture = array(); |
405 $picture['typeid'] = getid3_lib::BigEndian2Int($this->fread(4)); |
406 $picture['typeid'] = getid3_lib::BigEndian2Int($this->fread(4)); |
406 $picture['picturetype'] = self::pictureTypeLookup($picture['typeid']); |
407 $picture['picturetype'] = self::pictureTypeLookup($picture['typeid']); |
407 $picture['image_mime'] = $this->fread(getid3_lib::BigEndian2Int($this->fread(4))); |
408 $picture['image_mime'] = $this->fread(getid3_lib::BigEndian2Int($this->fread(4))); |
408 $descr_length = getid3_lib::BigEndian2Int($this->fread(4)); |
409 $descr_length = getid3_lib::BigEndian2Int($this->fread(4)); |
409 if ($descr_length) { |
410 if ($descr_length) { |