1. 03 Mar, 2012 1 commit
  2. 16 Feb, 2012 1 commit
  3. 14 Feb, 2012 1 commit
  4. 21 Jan, 2012 1 commit
  5. 30 Nov, 2011 1 commit
    • Miroslav Slugeň's avatar
      rtpdec: Add support for G726 audio · 06d7325a
      Miroslav Slugeň authored
      This requires using a separate init function, since there
      isn't necessarily any fmtp lines for this codec, so
      parse_sdp_a_line won't be called. Incorporating it with the
      alloc function wouldn't do either, since it is called before
      the full rtpmap line is parsed (where the sample rate is
      extracted).
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      06d7325a
  6. 18 Nov, 2011 2 commits
  7. 11 Nov, 2011 1 commit
  8. 07 Nov, 2011 1 commit
  9. 06 Nov, 2011 1 commit
  10. 03 Nov, 2011 1 commit
  11. 13 Oct, 2011 1 commit
    • John Brooks's avatar
      Correct buffer handling for RTCP packets · c1847c93
      John Brooks authored
      Previous code could read 4 bytes past the end of the buffer on a RTCP_SR
      packet or offset a pointer by an unchecked external value (payload_len),
      though neither will reliably cause a crash or other misbehavior beyond
      garbage timestamps.
      
      Additionally, unknown RTCP packet types, even in compounded packets, are
      now ignored as per RFC 3550 section 6.1, page 22, though currently this
      only has any practical effect if a sender puts an unrecognized type
      before RTCP_BYE in a compounded packet, or (incorrectly) does not put
      RTCP_SR first.
      Signed-off-by: 's avatarJohn Brooks <john.brooks@bluecherry.net>
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      c1847c93
  12. 12 Oct, 2011 3 commits
  13. 21 Jul, 2011 1 commit
  14. 03 Jul, 2011 1 commit
  15. 03 Jun, 2011 1 commit
  16. 12 May, 2011 1 commit
    • Diego Biurrun's avatar
      configure: Do not unconditionally add -D_POSIX_C_SOURCE to CPPFLAGS. · 046f081b
      Diego Biurrun authored
      Adding _POSIX_C_SOURCE to CPPFLAGS globally produces all sorts of problems
      since it causes certain system functions to be hidden on some (BSD) systems.
      The solution is to only add the flag on systems that really require it, i.e.
      glibc-based ones.
      
      This change makes BSD systems compile out-of-the-box without the need for
      adding specific flags manually.  It also allows dropping a number of flags
      set manually on a file-per-file basis, but were only present to work around
      breakage introduced by the presence of _POSIX_C_SOURCE.
      
      Also add _XOPEN_SOURCE to CPPFLAGS for glibc systems.  We use XSI extensions
      in several places already, so it is preferable to define it globally instead
      of littering source files with individual #defines only needed for glibc.
      046f081b
  17. 04 Apr, 2011 1 commit
  18. 03 Apr, 2011 3 commits
  19. 19 Mar, 2011 1 commit
  20. 17 Mar, 2011 1 commit
  21. 22 Feb, 2011 1 commit
  22. 21 Feb, 2011 1 commit
  23. 20 Feb, 2011 2 commits
  24. 30 Jan, 2011 1 commit
  25. 29 Jan, 2011 1 commit
  26. 26 Jan, 2011 2 commits
  27. 25 Jan, 2011 2 commits
  28. 06 Jan, 2011 1 commit
    • Martin Storsjö's avatar
      rtpdec: Don't set RTP timestamps if they already are set by the depacketizer · 79d482b1
      Martin Storsjö authored
      For MS-RTSP, we don't always get RTCP packets (never?), so the earlier
      timestamping code never wrote anything into pkt->pts. The rtpdec_asf
      depacketizer just sets the dts of the packet, so if the generic RTP
      timestamping is used, too, we get inconsistent timestamps.
      
      Therefore, skip the generic RTP timestamp algorithm if the depacketizer
      already has set something.
      
      This fixes "Invalid timestamps" warnings, present since SVN rev 26187.
      
      Originally committed as revision 26241 to svn://svn.ffmpeg.org/ffmpeg/trunk
      79d482b1
  29. 01 Jan, 2011 1 commit
  30. 15 Dec, 2010 2 commits
  31. 07 Dec, 2010 1 commit
    • Martin Storsjö's avatar
      rtsp/rtpdec: Set the AVStream time_base directly in rtsp when it is known · 86b6e387
      Martin Storsjö authored
      This fixes cases where the RTP time base and the sample rate of the stream
      differ. Previously, the AVStream time_base was unconditionally set to
      the sample rate (which initially was set to one value when parsing the
      rtpmap field in the SDP, but later overridden by an a=SampleRate field).
      
      Additionally, this makes the code actually use the stream time base set
      in rtpmap for video codecs, instead of hardcoding it to always be 90 kHz.
      
      Originally committed as revision 25908 to svn://svn.ffmpeg.org/ffmpeg/trunk
      86b6e387