public function wait_for_stream_start($event, $args)
{
switch ($event) {
case "start_cb":
// TODO: save stream id and other meta info
//JAXLLogger::debug("stream started");
return "wait_for_stream_features";
break;
default:
JAXLLogger::debug("uncatched {$event}");
return $this->handle_other($event, $args);
//return array("wait_for_stream_start", 0);
break;
}
}