summaryrefslogtreecommitdiff
path: root/libavformat/rtp_asf.c
Commit message (Collapse)AuthorAge
* Rename RTP depacketizer files from rtp_* to rtpdec_*Martin Storsjö2010-02-28
| | | | Originally committed as revision 22109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix two problems (no idea how this ever worked):Ronald S. Bultje2010-02-16
| | | | | | | | | | - the return value of url_open_dyn_*buf() is 0 on success, so using if (!(res = url_open_dyn_*buf())) return res; is not going to work - url_open_dyn_packet_buf actually writes the max_packet_size before each piece of data. Feeding this to the ASF demuxer will never work. Therefore, use url_open_dyn_buf() instead. Originally committed as revision 21853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r21851.Ronald S. Bultje2010-02-16
| | | | Originally committed as revision 21852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't return 0 if buffer setup failed. That signals the RTSP demuxer thatRonald S. Bultje2010-02-16
| | | | | | | the packet was filled in, leading to virtually random behaviour in the decoder later on. Instead, return a negative value. Originally committed as revision 21851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove spaces between function name and arguments in declaration,Ronald S. Bultje2009-07-27
| | | | | | and put return type ("static void") on the same line as function name. Originally committed as revision 19519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use named initializers and use new/free_context() instead of extradata()Colin McQuillan2009-07-27
| | | | | | for context allocators. Patch by Colin McQuillan m niloc googlemail com. Originally committed as revision 19518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTSP-MS/ASF packet parsing - this completes RTSP-MS support. SeeRonald S. Bultje2009-07-27
| | | | | | discussion in "[PATCH] RTSP-MS 14/15: ASF packet parsing" thread on mailinglist. Originally committed as revision 19516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Assign the x-pf-asf payload string to be decoded by rtp_asf.c, and add aRonald S. Bultje2009-03-20
| | | | | | | | SDP line handler that parses the streamID in the SDP so that ASF stream data can be matched to their respective streams in the RTSP demuxer. See "[PATCH] RTSP-MS 12/15: ASF payload support" thread on mailinglist. Originally committed as revision 18061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wrong @file tag.Ronald S. Bultje2009-03-17
| | | | Originally committed as revision 18026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP/ASF header parsing, which is part of the SDP of these streams. SeeRonald S. Bultje2009-03-17
patch discussion in "[PATCH] RTSP-MS 10/15: ASF header parsing" thread. Originally committed as revision 18023 to svn://svn.ffmpeg.org/ffmpeg/trunk