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
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