Home
last modified time | relevance | path

Searched refs:thisPacket (Results 1 – 6 of 6) sorted by relevance

/dports/audio/ampache/ampache-php74-5.0.0/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.mpc.php81 $thisPacket = array();
82 $thisPacket['offset'] = $offset;
90 $thisPacket['key_name'] = $this->MPCsv8PacketName($thisPacket['key']);
91 if ($thisPacket['key'] == $thisPacket['key_name']) {
92 …$this->error('Found unexpected key value "'.$thisPacket['key'].'" at offset '.$thisPacket['offset'…
104 switch ($thisPacket['key']) {
130 …$thisPacket['sample_frequency'] = $this->MPCfrequencyLookup($thisPacket['sample_frequency_raw'…
139 $info['playtime_seconds'] = $thisPacket['sample_count'] / $thisPacket['sample_frequency'];
182 …$thisPacket['version'] = $thisPacket['version_major'].'.'.$thisPacket['version_minor'].'.'.$thisPa…
200 $thisPacket = array();
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.mpc.php75 $thisPacket = array();
76 $thisPacket['offset'] = $offset;
84 $thisPacket['key_name'] = $this->MPCsv8PacketName($thisPacket['key']);
85 if ($thisPacket['key'] == $thisPacket['key_name']) {
86 …$this->error('Found unexpected key value "'.$thisPacket['key'].'" at offset '.$thisPacket['offset'…
98 switch ($thisPacket['key']) {
124 …$thisPacket['sample_frequency'] = $this->MPCfrequencyLookup($thisPacket['sample_frequency_raw'…
133 $info['playtime_seconds'] = $thisPacket['sample_count'] / $thisPacket['sample_frequency'];
176 …$thisPacket['version'] = $thisPacket['version_major'].'.'.$thisPacket['version_minor'].'.'.$thisPa…
194 $thisPacket = array();
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tinsel/
H A Dbmv.cpp596 data = bigBuffer + thisPacket; in FollowingPacket()
600 nextSlot = thisPacket/SLOT_SIZE; in FollowingPacket()
601 if (thisPacket%SLOT_SIZE) in FollowingPacket()
613 assert(((nextReadSlot * SLOT_SIZE) < thisPacket) || in FollowingPacket()
614 ((thisPacket + 3) < (nextReadSlot * SLOT_SIZE))); in FollowingPacket()
616 if ((nextReadSlot * SLOT_SIZE >= thisPacket) && in FollowingPacket()
617 ((thisPacket + 3) >= nextReadSlot*SLOT_SIZE)) { in FollowingPacket()
623 if (nextReadSlot*SLOT_SIZE >= thisPacket && thisPacket+3 >= nextReadSlot*SLOT_SIZE) in FollowingPacket()
624 return thisPacket + 3; in FollowingPacket()
626 length = (int32)READ_32(bigBuffer + thisPacket + 1); in FollowingPacket()
[all …]
H A Dbmv.h148 int FollowingPacket(int thisPacket, bool bReallyImportant);
/dports/games/scummvm/scummvm-2.5.1/engines/tinsel/
H A Dbmv.cpp874 data = bigBuffer + thisPacket; in FollowingPacket()
878 nextSlot = thisPacket/slotSize; in FollowingPacket()
879 if (thisPacket%slotSize) in FollowingPacket()
891 assert(((nextReadSlot * slotSize) < thisPacket) || in FollowingPacket()
892 ((thisPacket + 3) < (nextReadSlot * slotSize))); in FollowingPacket()
894 if ((nextReadSlot * slotSize >= thisPacket) && in FollowingPacket()
895 ((thisPacket + 3) >= nextReadSlot*slotSize)) { in FollowingPacket()
901 if (nextReadSlot*slotSize >= thisPacket && thisPacket+3 >= nextReadSlot*slotSize) in FollowingPacket()
902 return thisPacket + 3; in FollowingPacket()
904 length = (int32)READ_32(bigBuffer + thisPacket + 1); in FollowingPacket()
[all …]
H A Dbmv.h175 int FollowingPacket(int thisPacket, bool bReallyImportant);