[Live-devel] MSVC 2005+ compilation

2013-12-18 Thread maks
When I compile liveMedia using MSVC 2012 I got error: "mp3streamstate.cpp(412): error C4996: 'fileno': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _fileno. See online help for details" --- MSDN(http://msdn.microsoft.com/en-us/library/ms235384

[Live-devel] Several typos

2013-12-04 Thread maks
liveMedia\RTSPClient.cpp 916 while (line[paramIndex] != '\0' && (line[paramIndex] == ' ' || line[paramIndex] == '\t')) ++paramIndex; if (&line[paramIndex] == '\0') return False; I think should be: if (line[paramIndex] == '\0') return False; - liveMedia\MediaSessi