Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-10-23drop rtp_get_local_port() which is not part of public API and not used anymoreAurelien Jacobs
Originally committed as revision 25555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-01rtpdec: Reorder received RTP packets according to the seq numberMartin Storsjö
Reordering is enabled only when receiving over UDP. Originally committed as revision 25294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-01rtsp/rtpdec: Allow rtp_parse_packet to take ownership of the packet bufferMartin Storsjö
Do the same change for ff_rdt_parse_packet, too, to keep the interfaces similar. Originally committed as revision 25289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-25Add rtp_get_rtcp_file_handle functionJosh Allmann
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24929 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-16Move SPACE_CHARS back to libavformat/internal.hMartin Storsjö
It will be used by other parts of lavf now. This reverts svn rev 23846. Originally committed as revision 24265 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-14rtpdec: Allow depacketizers to specify that pkt->pts should be left as ↵Martin Storsjö
AV_NOPTS_VALUE Originally committed as revision 24234 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-28rtpdec: Add generic function for iterating over FMTP configuration linesJosh Allmann
This will be used for cleaning up code that is common among RTP depacketizers. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23847 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-28rtpdec: Move space_chars from avformat/internal to rtpdecJosh Allmann
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23846 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-25RTSP, rtpdec: Move RTPPayloadData into rtpdec_mpeg4 and remove all ↵Josh Allmann
references to rtp_payload_data in rtpdec and rtsp Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23772 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Reset RTCP timestamps after seeking, add range start offset to the packets ↵Martin Storsjö
timestamps If these aren't reset, the timestamps make a huge jump when the next RTCP is received. Originally committed as revision 22918 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Revert svn rev 21857, readd first_rtcp_ntp_time in RTPDemuxContextMartin Storsjö
In order to sync RTP streams that get their initial RTCP timestamp at different times, propagate the NTP timestamp of the first RTCP packet to all other streams. This makes the timestamps of returned packets start at (near) zero instead of at any random offset. Originally committed as revision 22917 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-19Make rtp protocol obey rfc3550Luca Barbato
Originally committed as revision 22906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-05Fix leaks in the AAC RTP depacketizerMartin Storsjö
Originally committed as revision 22804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-05Add void to a function prototype that takes no arguments. Fixes a potentialRonald S. Bultje
compiler warning. Originally committed as revision 22803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Prefix non-static RTSP functions with ff_.Ronald S. Bultje
Originally committed as revision 21974 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17Remove first_rtcp_ntp_time. This is used to prevent overflow of the timestamp,Ronald S. Bultje
but doesn't actually do that. What's worse, it creates timestamp adjustments that are different per stream within a session, leading to a/v sync issues. See discussion in thread "[FFmpeg-devel] rtp streaming x264+audio issues (and some ideas to fix them)". Patch suggested by Luca Abeni <lucabe72 email it>. Originally committed as revision 21857 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17When using RTP-over-UDP, send dummy packets during stream setup, similar toMartin Storsjö
what e.g. RealPlayer does. This allows proper port forwarding setup in NAT- based environments. Patch by Martin Storsjö <$firstname at $firstname dot st>. Originally committed as revision 21856 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-03Add url_get_file_handle(), which is used to get the file descriptorRonald S. Bultje
associated with the I/O handle (e.g. the fd returned by open()). See "[RFC] rtsp.c EOF support" thread. There were previously some URI-specific implementations of the same idea, e.g. rtp_get_file_handles() and udp_get_file_handle(). All of these are deprecated by this patch and will be removed at the next major API bump. Originally committed as revision 17779 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26Implement marker bit, which is used for several RTP payloads currentlyRonald S. Bultje
under review. See "[FFmpeg-devel] RTP mark bit not passed to parse_packet" thread on mailinglist. Originally committed as revision 17616 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26Don't (ab)use PKT_FLAG_* in RTP code, since the two have virtually nothingRonald S. Bultje
in common except for this one value. Change was requested by Luca in the "[FFmpeg-devel] RTP mark bit not passed to parse_packet" thread. Originally committed as revision 17615 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-17Move to rtp.h the prototypes of all the functions defined in rtp.cLuca Abeni
Originally committed as revision 17389 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-06Move RTP_MAX_PACKET_LENGTH to rtpdec.h: it is not used in the muxer anymoreLuca Abeni
Originally committed as revision 17023 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-06Split rtp.h in rtp.h, rtpdec.h, and rtpenc.hLuca Abeni
Originally committed as revision 17016 to svn://svn.ffmpeg.org/ffmpeg/trunk