summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* Document url_write().Stefano Sabatini2010-10-31
| | | | Originally committed as revision 25613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Split out the RTSP demuxer functions to a separate, new fileMartin Storsjö2010-10-29
| | | | Originally committed as revision 25601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Move rtsp_setup_output_streams into rtspenc.cMartin Storsjö2010-10-29
| | | | Originally committed as revision 25600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbiscomment: convert metadata before computing the header's lengthAnton Khirnov2010-10-27
| | | | Originally committed as revision 25586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Add stub declarations of the setup_in/output_streams functionsMartin Storsjö2010-10-27
| | | | | | | This may be needed to avoid calls to implicitly defined functions (that will be removed by dead code elimination later anyway). Originally committed as revision 25585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nutdec: when parsing info packet, set metadata var only onceAnton Khirnov2010-10-24
| | | | Originally committed as revision 25558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* drop rtsp_default_protocols which is not part of public API and not used anymoreAurelien Jacobs2010-10-23
| | | | Originally committed as revision 25557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* drop rtp_get_file_handles() which is not part of public API and not used anymoreAurelien Jacobs2010-10-23
| | | | Originally committed as revision 25556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* drop rtp_get_local_port() which is not part of public API and not used anymoreAurelien Jacobs2010-10-23
| | | | Originally committed as revision 25555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use rtp_get_local_rtp_port() instead of the deprecated rtp_get_local_port()Aurelien Jacobs2010-10-23
| | | | Originally committed as revision 25554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: align fields, and remove useless ones, in img2.cPascal Massimino2010-10-21
| | | | Originally committed as revision 25539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Move the rtsp_probe function to the demuxer code blockMartin Storsjö2010-10-21
| | | | | | This function is only used by the RTSP demuxer. Originally committed as revision 25537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Restore alphabetical orderMartin Storsjö2010-10-21
| | | | Originally committed as revision 25536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Untangle the dependencies between the RTSP/SDP demuxers and RTSP muxerMartin Storsjö2010-10-21
| | | | | | | This allows compilation of one of them without requiring the others' dependencies to be present. Originally committed as revision 25535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Reorder functionsMartin Storsjö2010-10-21
| | | | Originally committed as revision 25534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup image2pipe_{de}muxer fieldsPascal Massimino2010-10-21
| | | | Originally committed as revision 25531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sdp: Conditionally compile code using AF_INET6Martin Storsjö2010-10-19
| | | | | | Should fix compilation in environments unaware of IPv6. Originally committed as revision 25528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a demuxer for receiving raw rtp:// URLs without an SDP descriptionMartin Storsjö2010-10-19
| | | | | | | The demuxer inspects the payload type of a received RTP packet and handles the cases where the content is fully described by the payload type. Originally committed as revision 25527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* metadata: make av_metadata_set2 case insensitive by defaultAurelien Jacobs2010-10-18
| | | | Originally committed as revision 25515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid negative SCR in mpeg ps muxer.Michael Niedermayer2010-10-16
| | | | | | Fixes a scr issue reported with dvdauthor ([FFmpeg-user] FFMPEG encoded MPEG-2 video causes error in DVDAuthor) Originally committed as revision 25512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ff_ prefix to metadata_conv()Anton Khirnov2010-10-16
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lavf: simplify setting the encoder ident tag.Anton Khirnov2010-10-16
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix building, include the header instead of the source fileMartin Storsjö2010-10-16
| | | | | | Builds only seemed to have been broken in some configurations, though. Originally committed as revision 25499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, write artist metadata tagBaptiste Coudurier2010-10-15
| | | | Originally committed as revision 25498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, use correct metadata tag for encoder, and use the generic ↵Baptiste Coudurier2010-10-15
| | | | | | metadata api name Originally committed as revision 25497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Return AVERROR(EAGAIN) for mpegts parsing errorsMartin Storsjö2010-10-15
| | | | | | | | | | This indicates that there was no error that needs to be reported to the caller, so we can move on to parse the next packet immediately, if available. The only error code that ff_mpegts_parse_packet can return indicates that there was no packet to return from the provided data, for which it returns -1. Originally committed as revision 25496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export metadata in the generic format. Deprecate old conversion API.Anton Khirnov2010-10-15
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: alignmentAurelien Jacobs2010-10-15
| | | | Originally committed as revision 25492 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_SYMVER define to disable symver compatibility functionsAurelien Jacobs2010-10-15
| | | | Originally committed as revision 25491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_FIRST_FORMAT define to drop deprecated first_?format from public apiAurelien Jacobs2010-10-15
| | | | Originally committed as revision 25489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_PARAMETERS_CODEC_ID define to disable the deprecated codec_idAurelien Jacobs2010-10-15
| | | | | | fields in AVFormatParameters Originally committed as revision 25488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_LAVF_UNUSED define to disable the unused struct fieldsAurelien Jacobs2010-10-15
| | | | Originally committed as revision 25487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_READ_SEEK define to drop usage of AVInputFormat.read_seekAurelien Jacobs2010-10-15
| | | | | | and delay this transition to v54 as it is currently not functional Originally committed as revision 25486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_PARSE_FRAME_PARAM define to disable the deprecatedAurelien Jacobs2010-10-15
| | | | | | parse_image_size() and parse_frame_rate() public functions Originally committed as revision 25485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* properly check for FF_API_URL_CLASS instead of LIBAVFORMAT_VERSION_MAJORAurelien Jacobs2010-10-15
| | | | Originally committed as revision 25484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_ALLOC_FORMAT_CONTEXT define to disable the deprecatedAurelien Jacobs2010-10-15
| | | | | | av_alloc_format_context() public function Originally committed as revision 25483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_URL_SPLIT define to disable the deprecated ff_url_split() functionAurelien Jacobs2010-10-15
| | | | Originally committed as revision 25482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_UDP_GET_FILE define to disable the deprecated udp_get_file_handle()Aurelien Jacobs2010-10-15
| | | | | | public function Originally committed as revision 25481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_GUESS_FORMAT define to disable the deprecated guess_format()Aurelien Jacobs2010-10-15
| | | | | | and guess_stream_format() public functions Originally committed as revision 25480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate old API.Anton Khirnov2010-10-15
| | | | | | Patch by Anton Khirnov, anton khirnov net Originally committed as revision 25479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbiscomment: change ff_vorbiscomment_write to take an AVMetadata**Anton Khirnov2010-10-14
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sapdec: Include sys/time.h for struct timevalMartin Storsjö2010-10-13
| | | | | | This hopefully fixes compile errors on OS/2 Originally committed as revision 25466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a SAP demuxerMartin Storsjö2010-10-13
| | | | Originally committed as revision 25463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Don't use the no reordering codepath if there already is a queueMartin Storsjö2010-10-13
| | | | Originally committed as revision 25462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Handle wrapping seq numbers in has_next_packet properlyMartin Storsjö2010-10-13
| | | | Originally committed as revision 25461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Parse the next packet in the sequence if it is available, if the ↵Martin Storsjö2010-10-13
| | | | | | previous packet didn't return any data Originally committed as revision 25460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Return AVERROR(EAGAIN) if out of data for mpegts, pass returned ↵Martin Storsjö2010-10-13
| | | | | | error codes through Originally committed as revision 25459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Don't call the depacketizer to return more data unless it actually ↵Martin Storsjö2010-10-13
| | | | | | | | | 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
* rtpdec: Split out storing of the depacketization return value to a separate ↵Martin Storsjö2010-10-13
| | | | | | | | function This makes the code less fragile and easier to understand. Originally committed as revision 25457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add forgotten minor bump and changelog entry for the SAP muxerMartin Storsjö2010-10-11
| | | | Originally committed as revision 25444 to svn://svn.ffmpeg.org/ffmpeg/trunk