summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
Commit message (Collapse)AuthorAge
* Clarify which exact variant of ISO 639 is used. (The ISO spec explicitlyMichael Niedermayer2009-04-15
| | | | | | requires this to be clear) Originally committed as revision 18530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Describe read_alloc return value and required pkt handling to avoid memleaksReimar Döffinger2009-04-07
| | | | Originally committed as revision 18358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_packet_*() functions from libavformat/ to libavcodec/, where theThilo Borgmann2009-04-07
| | | | | | | | | AVPacket structure now resides also. Patch by Thilo Borgmann thilo.borgmann googlemail com, see the mailinglist thread "Google Summer of Code participation" for additional discussion. Originally committed as revision 18353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVPacket declaration from avformat.h to avcodec.h.Thilo Borgmann2009-04-02
| | | | | | Patch by Thilo Borgmann thilo dot borgmann at googlemail _dot_ com. Originally committed as revision 18317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support raw TrueHD filesRamiro Polla2009-03-19
| | | | Originally committed as revision 18049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass packet position to the parser, so frame's AVPacket.pos is computed ↵Ivan Schreter2009-03-05
| | | | | | correctly. Originally committed as revision 17824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deprecate old metadata APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new metadata API is now officially part of public APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some basic metadata conversion tables for matroska and asf.Aurelien Jacobs2009-03-01
| | | | | | Add missing const qualifiers for metadata_conv in AV{In|Out}putFormat. Originally committed as revision 17671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a metadata conversion APIAurelien Jacobs2009-02-28
| | | | Originally committed as revision 17670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark as "internal but installed" the avio.h file.Stefano Sabatini2009-02-26
| | | | | | | This should prevent its direct inclusion in an external project, which results broken if avformat.h is not included before. Originally committed as revision 17626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/wording/grammar cosmeticsDiego Biurrun2009-02-25
| | | | Originally committed as revision 17589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* untypoMichael Niedermayer2009-02-25
| | | | Originally committed as revision 17586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVInputFormat.reed_seek2()Michael Niedermayer2009-02-25
| | | | Originally committed as revision 17579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add timestamp computation if values are exported by decoder.Ivan Schreter2009-02-24
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVFMT_VARIABLE_FPS to specify which muxers do not need duplicated frames.Michael Niedermayer2009-02-24
| | | | Originally committed as revision 17554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add convergence_duration to AVCodecParserContext.Ivan Schreter2009-02-19
| | | | | | Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add key_frame to AVCodecParserContext, used in libavformat.Ivan Schreter2009-02-18
| | | | | | | | Initialized to -1 in parser.c for backward compatibility. Patch by Ivan Schreter, schreter gmx net Originally committed as revision 17442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_alloc_format_context has been renamed, update AVFormatContext av_classavcoder2009-02-18
| | | | | | | documentation accordingly. Patch by avcoder: `gmail_address(ffmpeg)` Originally committed as revision 17430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve grammar: "X next after Y" -> "next X after Y".Stefano Sabatini2009-02-15
| | | | Originally committed as revision 17347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace calls/references of the deprecated register_protocol()Stefano Sabatini2009-02-15
| | | | | | function with correponding calls/references to av_register_protocol(). Originally committed as revision 17323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename register_protocol() to av_register_protocol() and deprecateStefano Sabatini2009-02-15
| | | | | | register_protocol(). Originally committed as revision 17322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document av_iformat_next() and av_oformat_next() functions.Stefano Sabatini2009-02-15
| | | | Originally committed as revision 17316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MXF D-10 muxerBaptiste Coudurier2009-02-13
| | | | Originally committed as revision 17204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ffm_write_write_index to return int, and return if error occured.Patrik Kullman2009-02-12
| | | | | | Patch by Patrik Kullman, patrik at yes dot nu Originally committed as revision 17172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Gopher protocol, patch by Toshimitsu Kimura, lovesyao gmail comToshimitsu Kimura2009-02-11
| | | | Originally committed as revision 17159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: vertical align "*" for consistency with the other doxyies.Stefano Sabatini2009-02-11
| | | | Originally committed as revision 17143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove @deprecated notice from AVFrac, it is not deprecated anymore.Stefano Sabatini2009-02-11
| | | | Originally committed as revision 17142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to clarify doxy of avformat_seek_file().Michael Niedermayer2009-02-09
| | | | Originally committed as revision 17102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of ff_interleave_add_packet to internal.h.Baptiste Coudurier2009-02-08
| | | | | | It is an internal function and should not be in an installed header. Originally committed as revision 17070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that avformat_seek_file() is not part of the stable API yet.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avformat_seek_file() prototypeMichael Niedermayer2009-02-08
| | | | Originally committed as revision 17060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_malloc_format_context() in favor ofStefano Sabatini2009-02-08
| | | | | | | avformat_alloc_context(), and drop the old symbol at the next major bump. Originally committed as revision 17047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* declare ff_interleave_add_packetBaptiste Coudurier2009-02-07
| | | | Originally committed as revision 17032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not misuse unsigned long to store pointers.Ramiro Polla2009-02-04
| | | | Originally committed as revision 16986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* modify the way to pass parameters to av_metadata_set()Aurelien Jacobs2009-02-02
| | | | | | | This improves code readability and this avoid warnings about discarding qualifiers from pointer target type. Originally committed as revision 16952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoAurelien Jacobs2009-01-30
| | | | Originally committed as revision 16854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make it clear that the new metadata API is a work in progressAurelien Jacobs2009-01-26
| | | | Originally committed as revision 16812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move documentation of av_register_all() from allformats.c toStefano Sabatini2009-01-25
| | | | | | avformat.h, and extend it. Originally committed as revision 16774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_read_frame/parser related buffer variables from AVFormatContextMichael Niedermayer2009-01-22
| | | | | | | to AVStream, this is required if we want to allow the user to pull frames from specific streams at some point in the future. Originally committed as revision 16724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* R3D REDCODE demuxerBaptiste Coudurier2009-01-20
| | | | Originally committed as revision 16692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace AV_METADATA_IGNORE_CASE flag by a new AV_METADATA_MATCH_CASE flagAurelien Jacobs2009-01-18
| | | | | | with the opposed meaning Originally committed as revision 16680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added demuxer for FunCom ISS audio files,Stefan Gehrer2009-01-17
| | | | | | extended ADPCM decoder by ISS specific IMA variant Originally committed as revision 16658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free all allocated metadata structuresAurelien Jacobs2009-01-06
| | | | Originally committed as revision 16457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a typedef for AVMetadataAurelien Jacobs2009-01-05
| | | | Originally committed as revision 16446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert deprecation of AVFrac structure. Attempts to replace AVFrac have turnedDiego Biurrun2009-01-05
| | | | | | out to be unsatisfying and confidence in AVFrac has been restored. Originally committed as revision 16441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename AVMetaData to AVMetadata and meta_data to metadataAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add metadata in AVStream, AVProgram and AVChapterAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ministry of English Composition treatment for the new metadata APIMike Melanson2009-01-04
| | | | Originally committed as revision 16427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move metadata API from avcodec to avformat.Michael Niedermayer2009-01-04
| | | | Originally committed as revision 16425 to svn://svn.ffmpeg.org/ffmpeg/trunk