summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
Commit message (Collapse)AuthorAge
...
* Doxygen av_codec_get_id() and av_codec_get_tag().Stefano Sabatini2010-05-12
| | | | Originally committed as revision 23102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix off-by-one errors in description of score_max argument forReimar Döffinger2010-05-01
| | | | | | av_probe_input_format2 Originally committed as revision 23004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export av_probe_input_format2.Reimar Döffinger2010-05-01
| | | | Originally committed as revision 23002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini2010-04-25
| | | | | | | | in its place. av_metadata_set() is going to be dropped at the next major bump. Originally committed as revision 22961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the internal function declarations in avformat.h to internal.h.Stefano Sabatini2010-04-11
| | | | Originally committed as revision 22843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Actually add flag (somehow got lost in my previous patchset?), fixes brokenRonald S. Bultje2010-04-05
| | | | | | r22806. Originally committed as revision 22807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a flag to not overwrite existing tagsAnton Khirnov2010-04-05
| | | | | | Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow AVFormatContext.duration to be set if no individual stream duration is ↵Michael Niedermayer2010-04-04
| | | | | | | | known. Demuxers already do this ... Originally committed as revision 22796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_match_ext() declaration public (move its declaration out ofStefano Sabatini2010-03-31
| | | | | | the #ifdef HAVE_AV_CONFIG_H block in avformat.h). Originally committed as revision 22748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVFMT_FLAG_NOFILLIN and AVFMT_FLAG_NOPARSE.Michael Niedermayer2010-03-31
| | | | Originally committed as revision 22745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace @returns by @return.Benoit Fouet2010-03-30
| | | | Originally committed as revision 22729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement YOP demuxer and video decoder.Mohamed Naufal2010-03-29
| | | | | | Patch by Mohamed Naufal gmailify(naufal11). Originally committed as revision 22724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement support to RTMP, RTMPT, RTMPE, RTMPTE, RTMPS protocols viaHoward Chu2010-03-28
| | | | | | | | librtmp. Patch by Howard Chu <hyc * highlandsun * com>. Originally committed as revision 22710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the behavior of av_metadata_get() if the prev parameter isStefano Sabatini2010-03-27
| | | | | | NULL. Originally committed as revision 22704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTP depacketization of TheoraJosh Allmann2010-03-22
| | | | | | Patch by Josh Allmann (joshua allmann gmail com) Originally committed as revision 22636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Changelog entry and bump lavf micro version for the addition ofJustin Ruggles2010-03-20
| | | | | | VorbisComment writing for FLAC, Ogg/FLAC, and Ogg/Speex files. Originally committed as revision 22607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new field AVFormatContext.start_time_realtimeMartin Storsjö2010-03-15
| | | | | | Currently intended to be used by the RTP muxer Originally committed as revision 22540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_url_split() and ff_url_join() declarations to internal.hAurelien Jacobs2010-03-14
| | | | | | those functions are not part of the public API Originally committed as revision 22534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove definition of match_ext(), which is declared under #ifdefStefano Sabatini2010-03-08
| | | | | | HAVE_AV_CONFIG_H and so not publicly declared, and currently unused. Originally committed as revision 22353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move resolve_host() to ffserver.cMåns Rullgård2010-03-08
| | | | | | | | | | This deprecated function is only used by ffserver, yet does not have a prototype visible there. In the long term, ffserver should be made IPv6-aware. In the meantime, this change removes cruft from lavf and fixes some warnings in ffserver. Originally committed as revision 22329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxygen documentation for ff_url_splitMartin Storsjö2010-03-08
| | | | Originally committed as revision 22323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-03-08
| | | | Originally committed as revision 22322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename url_split to ff_url_splitMartin Storsjö2010-03-08
| | | | | | Since this function isn't in the public API, it should have an ff_ prefix. Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_find_stream_info(): Add a workaround for backwards compatible HE-AAC ↵Alex Converse2010-03-08
| | | | | | | | | signaling. The sample rate, frame size, and channel count from the container are not reliable when backwards compatible signaling is used. Originally committed as revision 22301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a function ff_url_join for assembling URLsMartin Storsjö2010-03-05
| | | | Originally committed as revision 22225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention that metadata tags are (unvalidated) UTF-8.Anton Khirnov2010-02-24
| | | | | | Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put codec_info_nb_frames back in AVStream and print its value.Michael Niedermayer2010-02-23
| | | | | | | This way streams with no or very few frames can be avoided during auto selection Originally committed as revision 21998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an RTSP muxerMartin Storsjö2010-02-22
| | | | Originally committed as revision 21971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add flag so muxers not needing width/height can signal this.Michael Niedermayer2010-02-12
| | | | | | Add this flag to img2 (fixes -vcodec copy to image2 in some cases) Originally committed as revision 21773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTP/AMR depacketizer, by Martin Storsjö <$firstname at $firstname dot st>.Ronald S. Bultje2010-02-10
| | | | Originally committed as revision 21740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a physical concatenation protocol.Michele Orrù2010-02-07
| | | | | | Patch by Michele Orrù reverse(<moc.liamg@yp.rekam>). Originally committed as revision 21666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a list of generic tags and change demuxers to follow it.Anton Khirnov2010-02-01
| | | | | | Patch by Anton Khirnov, wyskas at gmail dot com Originally committed as revision 21587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Latent libavformat version bump for Bink demuxer (r21569)Peter Ross2010-01-31
| | | | Originally committed as revision 21571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flag to ignore dts on frames that contain pts.Michael Niedermayer2010-01-30
| | | | | | | This works around common issues with mpeg-ps files with broken timestamps. Also allows playing the broken sample from issue1024. Originally committed as revision 21562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP/H.263 depacketizer by Martin Storsjö <$firstname () $firstname st>.Ronald S. Bultje2010-01-28
| | | | Originally committed as revision 21512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Schedule an increase in the maximum number of streamsJai Menon2010-01-27
| | | | | | at next libavformat major version bump. Originally committed as revision 21484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Latent libavformat version bump and documentation update for Adobe Filmstrip ↵Peter Ross2010-01-14
| | | | | | muxer and demuxer (r21212) Originally committed as revision 21213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate resolve_host(). Patch by Martin Storsjö <$firstname()$firstname,st>.Martin Storsjö2010-01-11
| | | | Originally committed as revision 21146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve avformat_version() doxy.Art Clarke2010-01-08
| | | | | | Patch by Art Clarke. Originally committed as revision 21081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() andStefano Sabatini2010-01-03
| | | | | | XXX_license() functions, consistent with the rest of FFmpeg. Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate match_ext() in favor of av_match_ext(), and mark it forStefano Sabatini2010-01-01
| | | | | | deletion at the next major bump. Originally committed as revision 20998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-01-01
| | | | Originally committed as revision 20993 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate guess_format() in favor of av_guess_format().Stefano Sabatini2010-01-01
| | | | Originally committed as revision 20991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document guess_format().Stefano Sabatini2009-12-31
| | | | Originally committed as revision 20988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate and mark for deletion the function guess_stream_format(),Stefano Sabatini2009-12-31
| | | | | | | | | | and clone its code to ffserver_guess_format() in ffserver.c. guess_stream_format() is hackish since it relies on some undocumented properties of the name of the muxers (wich is currently only relevant for the ASF muxer), and has no use outside ffserver.c. Originally committed as revision 20987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CD+G demuxer and decoderMichael Tison2009-12-17
| | | | | | Patch by Michael Tison (gmail address: blackspike@....) Originally committed as revision 20890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add flags to prevent strdup() on arguments to av_metadata_set2().Michael Niedermayer2009-12-13
| | | | | | | | I cannot use the same ABI as ffmbc as value 2 is already used in ffmpeg, besides the name AV_METADATA_NONCONST* makes no sense to me. Add av_metadata_set2() that takes flags. Originally committed as revision 20834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* APIChanges & minor bump due to avg_frame_rate addition.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avg_frame_rate.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20826 to svn://svn.ffmpeg.org/ffmpeg/trunk