Home
last modified time | relevance | path

Searched refs:paddedlength (Results 1 – 3 of 3) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dwrite.real.php55 public $paddedlength = 512; variable in getid3_write_real
86 $this->paddedlength = max($oldChunkInfo['CONT']['length'], $this->paddedlength);
255 if ($this->paddedlength > (strlen($CONTchunk) + 8)) {
256 $CONTchunk .= str_repeat("\x00", $this->paddedlength - strlen($CONTchunk) - 8);
H A Dwrite.id3v2.php46 public $paddedlength = 4096; variable in getid3_write_id3v2
122paddedlength = (isset($OldThisFileInfo['id3v2']['headerlength']) ? max($OldThisFileInfo['id3v2']['…
1725 …while ($this->paddedlength < (strlen($tagstring) + getid3_id3v2::ID3v2HeaderLength($this->majorver…
1726 $this->paddedlength += 1024;
1730 …if (/*!$footer && */($this->paddedlength > (strlen($tagstring) + getid3_id3v2::ID3v2HeaderLength($…
1733 …if (($this->paddedlength - strlen($tagstring) - getid3_id3v2::ID3v2HeaderLength($this->majorversio…
1734 …$tagstring .= str_repeat("\x00", $this->paddedlength - strlen($tagstring) - getid3_id3v2::ID3v2Hea…
H A Dwrite.php355 $id3v2_writer->paddedlength = $this->id3v2_paddedlength;