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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-10-15add FF_API_FIRST_FORMAT define to drop deprecated first_?format from public apiAurelien Jacobs
Originally committed as revision 25489 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_PARAMETERS_CODEC_ID define to disable the deprecated codec_idAurelien Jacobs
fields in AVFormatParameters Originally committed as revision 25488 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_LAVF_UNUSED define to disable the unused struct fieldsAurelien Jacobs
Originally committed as revision 25487 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_READ_SEEK define to drop usage of AVInputFormat.read_seekAurelien Jacobs
and delay this transition to v54 as it is currently not functional Originally committed as revision 25486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_PARSE_FRAME_PARAM define to disable the deprecatedAurelien Jacobs
parse_image_size() and parse_frame_rate() public functions Originally committed as revision 25485 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15properly check for FF_API_URL_CLASS instead of LIBAVFORMAT_VERSION_MAJORAurelien Jacobs
Originally committed as revision 25484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_ALLOC_FORMAT_CONTEXT define to disable the deprecatedAurelien Jacobs
av_alloc_format_context() public function Originally committed as revision 25483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_URL_SPLIT define to disable the deprecated ff_url_split() functionAurelien Jacobs
Originally committed as revision 25482 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_UDP_GET_FILE define to disable the deprecated udp_get_file_handle()Aurelien Jacobs
public function Originally committed as revision 25481 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15add FF_API_GUESS_FORMAT define to disable the deprecated guess_format()Aurelien Jacobs
and guess_stream_format() public functions Originally committed as revision 25480 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15Deprecate old API.Anton Khirnov
Patch by Anton Khirnov, anton khirnov net Originally committed as revision 25479 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-14vorbiscomment: change ff_vorbiscomment_write to take an AVMetadata**Anton Khirnov
patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25473 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13sapdec: Include sys/time.h for struct timevalMartin Storsjö
This hopefully fixes compile errors on OS/2 Originally committed as revision 25466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13Add a SAP demuxerMartin Storsjö
Originally committed as revision 25463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13rtpdec: Don't use the no reordering codepath if there already is a queueMartin Storsjö
Originally committed as revision 25462 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13rtpdec: Handle wrapping seq numbers in has_next_packet properlyMartin Storsjö
Originally committed as revision 25461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13rtpdec: Parse the next packet in the sequence if it is available, if the ↵Martin Storsjö
previous packet didn't return any data Originally committed as revision 25460 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13rtpdec: Return AVERROR(EAGAIN) if out of data for mpegts, pass returned ↵Martin Storsjö
error codes through Originally committed as revision 25459 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13rtpdec: Don't call the depacketizer to return more data unless it actually ↵Martin Storsjö
said it has more data It may have returned a negative number for an error (e.g. AVERROR(EAGAIN), if more data is required for it to be able to return a complete packet). Originally committed as revision 25458 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-13rtpdec: Split out storing of the depacketization return value to a separate ↵Martin Storsjö
function This makes the code less fragile and easier to understand. Originally committed as revision 25457 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-11Add forgotten minor bump and changelog entry for the SAP muxerMartin Storsjö
Originally committed as revision 25444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-11oggenc: Don't use char* to point to a string constant.Alex Converse
Originally committed as revision 25440 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-10cafdec: Handle ALAC extradata.Peter Ross
This fixes roundup issue 2284. Originally committed as revision 25430 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-09libavformat: Always build id3v1.o and id3v2.oMartin Storsjö
Functions from these files are referenced from utils.c now. This fixes building with --disable-everything. Originally committed as revision 25425 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-09sapenc: Use the normal URL port as RTP portMartin Storsjö
This makes the URL handling consistent - the URL hostname is used as destination for the RTP packets, so the URL port should also belong to that. Now the options announce_addr= and announce_port specify where the announcements are sent. Originally committed as revision 25424 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-09sapenc: Include os_support.h, to provide a fallback definition for socklen_tMartin Storsjö
Originally committed as revision 25422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-09move av_find_stream_info() info struct to AVStream to avoid messy (re)allocationAurelien Jacobs
Originally committed as revision 25418 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08Fix compilation on FreeBSD, use AF_UNSPEC instead of PF_UNSPECMartin Storsjö
Originally committed as revision 25416 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08sapenc: Mark the muxer as depending on network functionsMartin Storsjö
Hide all code mentioning IPv6 behind HAVE_STRUCT_SOCKADDR_IN6. Originally committed as revision 25415 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08Add a space between the else and { in mpegenc.c in the line i added.Michael Niedermayer
Originally committed as revision 25414 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08Add a SAP (Session Announcement Protocol, RFC 2974) muxerMartin Storsjö
Originally committed as revision 25413 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08sdp: Only specify the TTL for IPv4 addressesMartin Storsjö
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
2010-10-08rtsp: Factorize out code for opening a chained RTP muxerMartin Storsjö
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
2010-10-08rtsp: Make rtsp_rtp_mux_open reusableMartin Storsjö
Originally committed as revision 25409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08rtsp: Remove the start_time field from RTSPState, use ↵Martin Storsjö
AVFormatContext->start_time_realtime instead Originally committed as revision 25408 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08ReindentMartin Storsjö
Originally committed as revision 25406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08udp: Add an option for connecting the udp socketMartin Storsjö
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
2010-10-08rtpdec: Set prev_ret properly when parsing more data from mpegts RTP packetsMartin Storsjö
Originally committed as revision 25404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08rtpdec: Store the previous return value for mpegts when it was -1, tooMartin Storsjö
Originally committed as revision 25403 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08rtpdec: Keep track of the previous return value from ↵Robert Schlabbach
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
2010-10-07In gxf muxer, round up number of lines mod 16 in mpeg umf data, based patch ↵Baptiste Coudurier
by Reuben Martin, reuben dot m at gmail dot com Originally committed as revision 25401 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07In gxf muxer, fix number of flt entries based on patch by Reuben Martin, ↵Baptiste Coudurier
reuben dot m at gmail dot com Originally committed as revision 25399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07In gxf muxer, write umf media for mpeg1video, patch by Reuben Martin, reuben ↵Reuben Martin
dot m at gmail dot com Originally committed as revision 25396 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07In gxf muxer, fix flt entry offset, patch by Reuben Martin, reuben dot m at ↵Reuben Martin
gmail dot com Originally committed as revision 25395 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07remove useless local variableAurelien Jacobs
Originally committed as revision 25394 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07remove useless local allocated start_time arrayAurelien Jacobs
Originally committed as revision 25393 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07ReindentMartin Storsjö
Originally committed as revision 25390 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07sdp: Don't require the explicit ?multicast optionMartin Storsjö
No such option is used anywhere else. Instead, detect the address type. Originally committed as revision 25389 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07Convert ff_is_multicast_address to take a struct sockaddr parameterMartin Storsjö
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
2010-10-07Share the is_multicast_address functionMartin Storsjö
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