예제 #1
0
파일: Tag.class.php 프로젝트: Sect0R/WOOPS
 /**
  * Process the raw data from a binary stream
  * 
  * @return  void
  */
 public function processData(Woops_Flv_Binary_Stream $stream)
 {
     $this->_dataSize = $stream->u24Int();
     $this->_timestamp = $stream->u24Int();
     $this->_timestampExtended = $stream->unsignedChar();
     $this->_streamId = $stream->u24Int();
 }