summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* move av_find_stream_info() info struct to AVStream to avoid messy (re)allocationAurelien Jacobs2010-10-08
| | | | Originally committed as revision 25418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation on FreeBSD, use AF_UNSPEC instead of PF_UNSPECMartin Storsjö2010-10-08
| | | | Originally committed as revision 25416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sapenc: Mark the muxer as depending on network functionsMartin Storsjö2010-10-08
| | | | | | Hide all code mentioning IPv6 behind HAVE_STRUCT_SOCKADDR_IN6. Originally committed as revision 25415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a space between the else and { in mpegenc.c in the line i added.Michael Niedermayer2010-10-08
| | | | Originally committed as revision 25414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a SAP (Session Announcement Protocol, RFC 2974) muxerMartin Storsjö2010-10-08
| | | | Originally committed as revision 25413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sdp: Only specify the TTL for IPv4 addressesMartin Storsjö2010-10-08
| | | | | | According to RFC 4566, a TTL value must not be present for IPv6 multicast. Originally committed as revision 25412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Factorize out code for opening a chained RTP muxerMartin Storsjö2010-10-08
| | | | | | | | The new object file is added to the SDP demuxer in the makefile, since it is needed in both the RTSP muxer and demuxer and in the SDP demuxer, due to the current code coupling. Originally committed as revision 25410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Make rtsp_rtp_mux_open reusableMartin Storsjö2010-10-08
| | | | Originally committed as revision 25409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Remove the start_time field from RTSPState, use ↵Martin Storsjö2010-10-08
| | | | | | AVFormatContext->start_time_realtime instead Originally committed as revision 25408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-10-08
| | | | Originally committed as revision 25406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* udp: Add an option for connecting the udp socketMartin Storsjö2010-10-08
| | | | | | | | | | This allows us to find out the local sending address via getsockname, otherwise we just get INADDR_ANY (or similar for v6). This also makes writes return ECONNREFUSED if nobody is listening on the receiving port. Originally committed as revision 25405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Set prev_ret properly when parsing more data from mpegts RTP packetsMartin Storsjö2010-10-08
| | | | Originally committed as revision 25404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Store the previous return value for mpegts when it was -1, tooMartin Storsjö2010-10-08
| | | | Originally committed as revision 25403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Keep track of the previous return value from ↵Robert Schlabbach2010-10-08
| | | | | | | | rtp_parse_packet_internal for mpegts packets Patch by Robert Schlabbach, robert_s at gmx dot net Originally committed as revision 25402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In gxf muxer, round up number of lines mod 16 in mpeg umf data, based patch ↵Baptiste Coudurier2010-10-07
| | | | | | by Reuben Martin, reuben dot m at gmail dot com Originally committed as revision 25401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In gxf muxer, fix number of flt entries based on patch by Reuben Martin, ↵Baptiste Coudurier2010-10-07
| | | | | | reuben dot m at gmail dot com Originally committed as revision 25399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In gxf muxer, write umf media for mpeg1video, patch by Reuben Martin, reuben ↵Reuben Martin2010-10-07
| | | | | | dot m at gmail dot com Originally committed as revision 25396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In gxf muxer, fix flt entry offset, patch by Reuben Martin, reuben dot m at ↵Reuben Martin2010-10-07
| | | | | | gmail dot com Originally committed as revision 25395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless local variableAurelien Jacobs2010-10-07
| | | | Originally committed as revision 25394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless local allocated start_time arrayAurelien Jacobs2010-10-07
| | | | Originally committed as revision 25393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-10-07
| | | | Originally committed as revision 25390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sdp: Don't require the explicit ?multicast optionMartin Storsjö2010-10-07
| | | | | | No such option is used anywhere else. Instead, detect the address type. Originally committed as revision 25389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert ff_is_multicast_address to take a struct sockaddr parameterMartin Storsjö2010-10-07
| | | | | | | | Not all users of this function will have a full struct sockaddr_storage available, and casting other sockaddrs to sockaddr_storage is wrong, while any sockaddr can be cast to a base sockaddr. Originally committed as revision 25388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Share the is_multicast_address functionMartin Storsjö2010-10-07
| | | | | | | | The header probably isn't the right permanent place for this function, but it is quite small, and consensus seems to be that it can stay in the header for now, instead of creating a new file network.c just for this one. Originally committed as revision 25387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move multicast address identification fallback macros to network.h from udp.cMartin Storsjö2010-10-07
| | | | Originally committed as revision 25386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn if muxing mpeg ps is attempted without a VBV buffer size.Michael Niedermayer2010-10-07
| | | | Originally committed as revision 25385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Init SCR in mpeg muxer based on first DTS.Michael Niedermayer2010-10-07
| | | | | | This fixes issues if the first DTS is far away from 0. Originally committed as revision 25383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* properly check for FF_API_MAX_STREAMS instead of LIBAVFORMAT_VERSION_MAJORAurelien Jacobs2010-10-06
| | | | Originally committed as revision 25382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add new streams API without MAX_STREAMS limitAurelien Jacobs2010-10-06
| | | | | | (disabled until next major bump) Originally committed as revision 25381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dynamically use nb_streams instead of static use of MAX_STREAMSAurelien Jacobs2010-10-06
| | | | Originally committed as revision 25380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* document the fact that av_new_stream() can't be called in a background threadAurelien Jacobs2010-10-06
| | | | Originally committed as revision 25379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move handling of ID3v2 to common utils.c code, reducing code duplicationReimar Döffinger2010-10-06
| | | | | | and supporting it for more formats, fixing issue 2258. Originally committed as revision 25378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the definitions of AVSEEK_SIZE to make it appear before theStefano Sabatini2010-10-06
| | | | | | description of url_seek(), which references it. Originally committed as revision 25376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Handle RTP header extensionRobert Schlabbach2010-10-06
| | | | | | | | This fixes roundup issue 2270. Patch by Robert Schlabbach, robert_s at gmx dot net Originally committed as revision 25372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP depacketization of the X-QT QuickTime formatMartin Storsjö2010-10-06
| | | | Originally committed as revision 25371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Carl Eugen Hoyos2010-10-06
| | | | Originally committed as revision 25369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use retry_transfer_wrapper() in url_write() as its callers do not expect it ↵Michael Niedermayer2010-10-06
| | | | | | to stop in the middle. Originally committed as revision 25368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor retry_transfer_wrapper() out of url_read_complete()Michael Niedermayer2010-10-06
| | | | Originally committed as revision 25367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: Free the previous extradataMartin Storsjö2010-10-05
| | | | | | | If multiple stsd atoms are parsed for the same stream, the old extradata would be leaked. Originally committed as revision 25360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: Split out ff_mov_read_stsdMartin Storsjö2010-10-05
| | | | Originally committed as revision 25359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbiscomment: add DISCNUMBER to the metadata conv tableAnton Khirnov2010-10-05
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp/sdp: Move code into correct ifdefsMartin Storsjö2010-10-05
| | | | | | | | | This makes the code dependencies correct. Previously, the SDP demuxer wasn't buildable on its own. This also reverts rev 25343. Originally committed as revision 25354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* find_info_tag: Make sure the output buffer is null terminatedMartin Storsjö2010-10-05
| | | | Originally committed as revision 25353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* udp: Define _DARWIN_C_SOURCEMartin Storsjö2010-10-05
| | | | | | This is required in order to get the IP_MULTICAST_TTL define. Originally committed as revision 25351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* udp: Return the actual error code on errors, instead of AVERROR(EIO)Martin Storsjö2010-10-05
| | | | Originally committed as revision 25350 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set proper error if server flags indicate that it doesn't support mmst. Thisqrtt12010-10-05
| | | | | | | | prevents a read-after-close-induced segfault later. Fixes issue 2266. Patch by qrtt1 <chingyichan dot tw gmail com>. Originally committed as revision 25349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics, lots of.Tobias Bindhammer2010-10-05
| | | | Originally committed as revision 25348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some pointless CONFIG_RTSP_DEMUXER #ifdefs.Diego Biurrun2010-10-05
| | | | | | They reside within a large CONFIG_RTSP_DEMUXER block and are thus pointless. Originally committed as revision 25343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some #endif comments to ease understanding.Diego Biurrun2010-10-05
| | | | Originally committed as revision 25342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: write metadataAnton Khirnov2010-10-05
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25341 to svn://svn.ffmpeg.org/ffmpeg/trunk