tree: 16a112194fa7678b0030d413413a5242f53bcbe8 [path history] [tgz]
  1. BasicUsageEnvironment/
  2. groupsock/
  3. liveMedia/
  4. mediaServer/
  5. proxyServer/
  6. testProgs/
  7. UsageEnvironment/
  8. WindowsAudioInputDevice/
  9. Android.mk
  10. config.aix
  11. config.alpha
  12. config.armeb-uclibc
  13. config.armlinux
  14. config.avr32-linux
  15. config.bfin-linux-uclibc
  16. config.bfin-uclinux
  17. config.bsplinux
  18. config.cris-axis-linux-gnu
  19. config.cygwin
  20. config.cygwin-for-vlc
  21. config.freebsd
  22. config.iphone-simulator
  23. config.iphoneos
  24. config.irix
  25. config.linux
  26. config.linux-64bit
  27. config.linux-gdb
  28. config.linux-with-shared-libraries
  29. config.macosx
  30. config.macosx-32bit
  31. config.macosx-before-version-10.4
  32. config.mingw
  33. config.openbsd
  34. config.qnx4
  35. config.solaris-32bit
  36. config.solaris-64bit
  37. config.sunos
  38. config.uClinux
  39. configure
  40. COPYING
  41. fix-makefile
  42. genMakefiles
  43. genWindowsMakefiles
  44. genWindowsMakefiles.cmd
  45. Makefile.head
  46. Makefile.tail
  47. modifications.patch
  48. README
  49. README.md
  50. win32config
  51. win32config.Borland
live555/README.md

Build Instructions

For example:

./genMakefiles linux
make -j4

Replace “linux” with your platform, e.g. avr32-linux, cygwin, freebsd, iphoneos, linux, linux-64bit, macosx, openbsd, solaris-64bit, etc (see config.PLATFORM files)

You will find various executables:

  • ./testProgs - contain various programs such as testRTSPClient to receive an RTSP stream
  • ./proxyServer/live555ProxyServer - a great RTSP proxy server
  • ./mediaServer/live555MediaServer - an RTSP media server for serving static files over RTSP

Changes to Master

See modifications.patch to see exactly what was changed compared to vanilla.

Buffer sizes

increaseReceiveBufferTo is increased to 2,000,000 bytes (same as VLC default) and OutPacketBuffer::maxSize is increased 10 fold to 1000000 in the ProxyServer. These 2 changes make live555 work a hell of a lot better out of box.

-p option for proxyServer - allows specifying a listening port on the command line

This was rejected from the mailing list, but often RTSPProxy fails to run on more than a few cameras with bad corruption, frames seeking back and forth and many other adverse side effects. Being able to run multiple instances listening on different ports is crucial.

Force port re-use

When restarting live555ProxyServer, you are often greeted with a “Port Already in Use” error and forced to wait for the port to time out. Adding “define ALLOW_RTSP_SERVER_PORT_REUSE” to liveMedia/RTSPServer.cpp prevents this.