summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* Fix an invalid free in the AVI muxer when an unsupported audio track is added.Laurent Aimar2008-09-02
| | | | | | patch by Laurent Aimar, fenrir via.ecp fr Originally committed as revision 15159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_MUXERS preprocessor conditionals by more specificDiego Biurrun2008-09-02
| | | | | | CONFIG_FOO_MUXER conditionals where appropriate. Originally committed as revision 15158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless #ifdef CONFIG_VHOOK from the code.Diego Biurrun2008-09-02
| | | | | | The file is only ever compiled if CONFIG_VHOOK is set. Originally committed as revision 15157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly mux mpeg2 audio 13818-3 in mp4Baptiste Coudurier2008-09-02
| | | | Originally committed as revision 15156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow mp2 to be muxed into mp4Baptiste Coudurier2008-09-02
| | | | Originally committed as revision 15155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix detection of MPEG4 in MPEG-PS.Michael Niedermayer2008-09-02
| | | | | | Fixes issue568. Originally committed as revision 15152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change back to using CONFIG_*_DEMUXER for ac3_eac3_probe(), but use itJustin Ruggles2008-09-01
| | | | | | correctly this time. Originally committed as revision 15147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: add E-AC-3 supportAurelien Jacobs2008-09-01
| | | | | | Thanks again Justin ! Originally committed as revision 15146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.Aurelien Jacobs2008-09-01
| | | | Originally committed as revision 15145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check ENABLE_*_DEMUXER instead of CONFIG_*_DEMUXERJustin Ruggles2008-09-01
| | | | Originally committed as revision 15144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* create a separate codec_id for E-AC-3Justin Ruggles2008-09-01
| | | | Originally committed as revision 15143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless "else" case in if X { A; return }; else { B }. See discussionRonald S. Bultje2008-09-01
| | | | | | in "Realmedia patch" thread on mailinglist. Originally committed as revision 15142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some RTSP streams use SDP lines longer than 1024 bytes, so the SDP lineRonald S. Bultje2008-09-01
| | | | | | | buffer needs to be increased. See discussion in "Realmedia patch" thread on mailinglist. Originally committed as revision 15141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement Realmedia-compatible DESCRIBE command.Ronald S. Bultje2008-09-01
| | | | Originally committed as revision 15140 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for malloc failureBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15132 to svn://svn.ffmpeg.org/ffmpeg/trunk
* copy whole frame in vosData for dnxhd, this code will be used for other ↵Baptiste Coudurier2008-08-31
| | | | | | codecs too Originally committed as revision 15131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send RTSP OPTIONS command to detect server type.Ronald S. Bultje2008-08-31
| | | | Originally committed as revision 15125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read RealChallenge1 field from the server.Ronald S. Bultje2008-08-31
| | | | Originally committed as revision 15124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTSPServerType enum as a way to identify the flavour of RTSP thatRonald S. Bultje2008-08-31
| | | | | | the server will send to us (standard-compliant RTP or Realmedia-style RDT). Originally committed as revision 15123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert back to old version (r15103).Ronald S. Bultje2008-08-31
| | | | Originally committed as revision 15122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do no write multi descriptor when only one track is presentBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorizeBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove mxf_build_structural_metadata, simplifyBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mxf_write_package to permit function mergeBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, Pair -> EntryBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store index in table in MXFStreamContext, simplifyBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge descriptor write table with essence container uls table and simplifyBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix type in prototypeBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove header_byte_count_offset from contextBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify and correctly rewrite metadata in header partition, mark it closed ↵Baptiste Coudurier2008-08-31
| | | | | | complete Originally committed as revision 15106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify current partition offsetBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTSP/Realmedia-compatible OPTIONS command. See "Realmedia patch"Ronald S. Bultje2008-08-31
| | | | | | | | | | thread on mailinglist for discussion. This patch also implements a RTSPServerType enum, which allows the RTSP to keep track of what kind of a stream we're handling: standard-compliant RTP or a proprietary derivative. This will be used in subsequent patches to implement more Realmedia-specific extensions required to receive and parse data coming from a Realmedia server. Originally committed as revision 15104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* header partition is open incomplete for nowBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* always write footer partition according to specsBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l fix mxf_get_essence_container_ulBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, mux_write -> mxf_writeBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly set track durationBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set duration to distinguished valueBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly write codec ul, mpeg-2 needs profile and level to be setBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify, pass AVStream directly instead of indexBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, whitespaceBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless track_number_signBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put back mxf_essence_container_uls in demuxer as static constBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless mxf_essence_element_key arrayBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix track number ul in primer packBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* introduce MXFContainerEssencePair to associate essence element key andBaptiste Coudurier2008-08-31
| | | | | | essence container easily and compute essence element key in write_header Originally committed as revision 15080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace sizeof(type) by sizeof *ptrBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge declaration and initBaptiste Coudurier2008-08-31
| | | | Originally committed as revision 15077 to svn://svn.ffmpeg.org/ffmpeg/trunk