Open GoogleCodeExporter opened 9 years ago
Some additional comments: It seems that only Haxe compiler 2.07 has the
libraries where neko.net.Socket.hx has the SocketHandle enum defined. But in
2.09, this is no longer the case. So does that mean the current HaxeVideo code
can only be compiled in 2.07 but not in the 2.09 (or newer) version of haxe
that I've got?
Original comment by tsaixing...@gmail.com
on 8 Jun 2012 at 10:11
Yes there were changes in the packages structure, I don't have much time to
change the code at the moment.
Original comment by ncanna...@gmail.com
on 8 Jun 2012 at 10:29
Hi,
I've seen quickly how to make haxevideo compile with the latest haxe release.
Of course I didn't dig deeper so it's not the perfect solution I think, but It
works.
In hxvid/RealtimeServer.hx :
-Find/replace : SocketHandle by Dynamic
-Find/replace : neko.net.SocketOutput by haxe.io.Output
-Remove super(c.handle); in the constructor (l.50)
In hxvid/Commands :
-replace case T.Bool: v = format.amf.Tools.bool(a); by case T.Bool: v =
format.amf.Tools.abool(a); (l.85)
Michel
Original comment by filt3...@gmail.com
on 3 Sep 2012 at 11:17
Original issue reported on code.google.com by
tsaixing...@gmail.com
on 7 Jun 2012 at 10:31