private function parseVORBIS_COMMENT($BlockData)
 {
     $info =& $this->getid3->info;
     $getid3_ogg = new getid3_ogg($this->getid3);
     if ($this->isDependencyFor('matroska')) {
         $getid3_ogg->setStringMode($this->data_string);
     }
     $getid3_ogg->ParseVorbisComments();
     if (isset($info['ogg'])) {
         unset($info['ogg']['comments_raw']);
         $info['flac']['VORBIS_COMMENT'] = $info['ogg'];
         unset($info['ogg']);
     }
     unset($getid3_ogg);
     return true;
 }