Warning: session_start(): open(/var/lib/php/sessions/sess_66curbuctasquktfm1tsvub941, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static ShortIterator decodeOpusStream(S url) throws IOException {
temp var in = httpInputStream(audioURL);
temp OpusMachine machine = new(in);
ret new ShortIterator {
int val = Int.MAX_VALUE;
abstract bool hasNext() {
if (val == Int.MAX_VALUE)
val = machine!;
ret val != Int.MIN_VALUE;
}
abstract short next() {
if (!hasNext()) fail("No such element");
var v = val;
val = Int.MAX_VALUE;
ret (short) v;
}
};
}