~ubuntu-branches/ubuntu/trusty/liblivemedia/trusty

« back to all changes in this revision

Viewing changes to liveMedia/include/RTPSource.hh

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2013-10-30 10:30:48 UTC
  • mfrom: (27.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20131030103048-ggp9ojaizodox2y6
Tags: 2013.10.25-1
* Team upload.
* New upstream release.
* Link shared libraries with g++ instead of gcc to fix build failure.
* Refresh patches.
* Update shared library versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  // Note: This is the SSRC in the most recently received RTP packet; not *our* SSRC
61
61
 
62
62
  Boolean& enableRTCPReports() { return fEnableRTCPReports; }
 
63
  Boolean const& enableRTCPReports() const { return fEnableRTCPReports; }
63
64
 
64
65
  void setStreamSocket(int sockNum, unsigned char streamChannelId) {
65
66
    // hack to allow sending RTP over TCP (RFC 2236, section 10.12)
66
67
    fRTPInterface.setStreamSocket(sockNum, streamChannelId);
67
68
  }
68
 
  void setServerRequestAlternativeByteHandler(int socketNum, ServerRequestAlternativeByteHandler* handler, void* clientData) {
69
 
    fRTPInterface.setServerRequestAlternativeByteHandler(socketNum, handler, clientData);
70
 
  }
71
69
 
72
70
  void setAuxilliaryReadHandler(AuxHandlerFunc* handlerFunc,
73
71
                                void* handlerClientData) {