Lines Matching refs:BigEndian2Int
49 $ThisFileInfo['flv']['header']['version'] = getid3_lib::BigEndian2Int(substr($FLVheader, 3, 1));
50 $TypeFlags = getid3_lib::BigEndian2Int(substr($FLVheader, 4, 1));
62 $FrameSizeDataLength = getid3_lib::BigEndian2Int(fread($fd, 4));
78 $PreviousTagLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 0, 4));
79 $TagType = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 4, 1));
80 $DataLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 5, 3));
81 $Timestamp = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 8, 3));
82 $LastHeaderByte = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 15, 1));
103 $PictureSizeType = (getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 3, 2))) >> 7;
108 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 2));
111 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 2));
117 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 4));
121 $PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 7, 4));
259 return getid3_lib::BigEndian2Int(substr($this->bytes, $this->pos++, 1));