summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* Remove pointless '#ifdef DEBUG' around dprintf macro.Diego Biurrun2009-07-29
| | | | Originally committed as revision 19535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stop parsing in read_header only after finding pmt, andBaptiste Coudurier2009-07-29
| | | | | | | do not close pat filter so further pmt can be parsed. Fix issue #1294. Originally committed as revision 19530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename freq to period which is more correct, patch by Niobos, niobos dot be ↵Niobos2009-07-28
| | | | | | at gmail dot com Originally committed as revision 19529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove spaces between function name and arguments in declaration,Ronald S. Bultje2009-07-27
| | | | | | and put return type ("static void") on the same line as function name. Originally committed as revision 19519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use named initializers and use new/free_context() instead of extradata()Colin McQuillan2009-07-27
| | | | | | for context allocators. Patch by Colin McQuillan m niloc googlemail com. Originally committed as revision 19518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement support for EOS as used by WMS and other RTSP servers that do notRonald S. Bultje2009-07-27
| | | | | | | implement RTCP/bye. See "[PATCH] rtsp.c: EOS support" thread from a few months back. Originally committed as revision 19517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTSP-MS/ASF packet parsing - this completes RTSP-MS support. SeeRonald S. Bultje2009-07-27
| | | | | | discussion in "[PATCH] RTSP-MS 14/15: ASF packet parsing" thread on mailinglist. Originally committed as revision 19516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only consider -1 as an error return value for open().Martin Storsjö2009-07-27
| | | | | | | | | | This is: - what Posix says (-1 on error, >=0 on success) - fixing a bug on winCE (<0 sometimes) Patch by Martin Storsjö: martin martin st Originally committed as revision 19513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add handling of EAGAIN at packet boundaries. See "[PATCH] RTSP-MS 14/15:Ronald S. Bultje2009-07-26
| | | | | | ASF packet parsing" thread for discussion / reasoning. Originally committed as revision 19509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix various compilation dependenciesAurelien Jacobs2009-07-24
| | | | Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation of cavsvideo demuxerAurelien Jacobs2009-07-24
| | | | Originally committed as revision 19506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register some additional AMF types in libavformat/flv.hKostya Shishkov2009-07-21
| | | | Originally committed as revision 19476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use globally consistent include guard names.Stefano Sabatini2009-07-19
| | | | Originally committed as revision 19462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only free '*ic_ptr' when a caller has pre-allocated a context and passed it inArt Clarke2009-07-15
| | | | | | | (wherein av_open_input_file assumes memory ownership). Patch by Art Clarke a<surname> xuggle com Originally committed as revision 19436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ff_neterrno instead of errno in tcp.c.Martin Storsjö2009-07-15
| | | | | | | | | | If ff_neterrno() is checked instead of errno, that's probably what should be used in the return value. As a sideeffect, this gives better compatibility with Windows (CE), where network errors aren't visible in errno.) patch by Martin Storsjö, martin martin st Originally committed as revision 19433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only #define lseek to _lseeki64 on MinGW, not MinGW CE.İsmail Dönmez2009-07-13
| | | | | | | This fixes compilation on WinCE, which does not support _lseeki64. patch by Ismail Dönmez, ismail namtrac org Originally committed as revision 19425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make (de)muxers for format variants select the main format (de)muxer.Diego Biurrun2009-07-12
| | | | | | It makes little sense to enable the variant without the main format. Originally committed as revision 19420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add block_align to sox input.Phil Rutschman2009-07-08
| | | | | | Patch by Phil Rutschman: name.surname modsystems com Originally committed as revision 19371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mem leak when user preallocates an AVFormatContext, passes it toArt Clarke2009-07-08
| | | | | | | av_open_input_file(), but the file does not exist. Patch by Art Clarke a$(surname) xuggle com Originally committed as revision 19370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flvdec: expose metadata through the generic metadata APIAurelien Jacobs2009-07-06
| | | | | | original patch from Art Clarke aclarke _at_ xuggle _dot_ com Originally committed as revision 19364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flvdec: re-enable metadata parsingAurelien Jacobs2009-07-06
| | | | | | | duration and videodatarate values are actually useful original patch from Art Clarke aclarke _at_ xuggle _dot_ com Originally committed as revision 19363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flvdec: don't set format and codec context from metadata valuesAurelien Jacobs2009-07-06
| | | | | | | | This has proven to be useless and even harmfull since r18460 (expect for duration and videodatarate). original patch from Art Clarke aclarke _at_ xuggle _dot_ com Originally committed as revision 19362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for packet_length 0, it is already treated as invalid by the padding ↵Reimar Döffinger2009-07-06
| | | | | | | | check, but that resulted in a confusing/wrong error message. Originally committed as revision 19361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix and simplify long gop mpeg codec ul computationBaptiste Coudurier2009-07-04
| | | | Originally committed as revision 19339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set index duration to 0 for cbr, specifying whole container coverageBaptiste Coudurier2009-07-04
| | | | Originally committed as revision 19338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ber4 length for descriptors preferred by specsBaptiste Coudurier2009-07-04
| | | | Originally committed as revision 19337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write profile and level local tag in mpeg descriptorBaptiste Coudurier2009-07-04
| | | | Originally committed as revision 19336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace invalid Theora frame rate by 25 FPS.Reimar Döffinger2009-07-03
| | | | | | Avoids division by 0 due to e.g. time_base denominator being 0. Originally committed as revision 19334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for failed extradata malloc, fixes a crash in out-of-memory conditionsReimar Döffinger2009-07-03
| | | | | | or with extremely large extradata. Originally committed as revision 19333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check size of "strf" header against size of enclosing "LIST" if there is one.Reimar Döffinger2009-07-03
| | | | Originally committed as revision 19332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentationReimar Döffinger2009-07-03
| | | | Originally committed as revision 19331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid divisions by 0 in the ASF demuxer if packet_size is not valid.Reimar Döffinger2009-07-03
| | | | Originally committed as revision 19330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If either of num or den is 0 make both 0 in av_set_pts_info().Michael Niedermayer2009-07-02
| | | | Originally committed as revision 19326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure av_set_pts_info() does not set the fields of a timebase toMichael Niedermayer2009-07-01
| | | | | | negative values. Originally committed as revision 19325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make arguments of av_set_pts_info() unsigned.Michael Niedermayer2009-07-01
| | | | | | Fixes issue1240/mpeg1/smclockmpeg1.avi.3.1 Originally committed as revision 19319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, change case and comments alignmentBaptiste Coudurier2009-06-30
| | | | Originally committed as revision 19305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly compute frame flags with closed gopBaptiste Coudurier2009-06-30
| | | | Originally committed as revision 19304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_log_missing_feature in the ADTS encoder. (Pseudo reverts r19173).Alex Converse2009-06-29
| | | | Originally committed as revision 19299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the configure script select the input/output devices usingStefano Sabatini2009-06-29
| | | | | | | --enable-indev, --enable-outdev rather than --enable-demuxer, --enable-muxer as before, same for disabling them. Originally committed as revision 19293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-06-29
| | | | Originally committed as revision 19292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2.4.0 uses syncsafe integers for sizes of frames.Michael Niedermayer2009-06-29
| | | | | | | Fixes issue1234 Fixes regression introduced in r19275 Originally committed as revision 19291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove inconsistent use of a @brief command in av_write_trailer()Stefano Sabatini2009-06-28
| | | | | | doxy. Originally committed as revision 19289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use consistently the third person in doxy, as recommended by theStefano Sabatini2009-06-28
| | | | | | javadoc specs. Originally committed as revision 19288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix id3v2.2 frame size parsing.Michael Niedermayer2009-06-25
| | | | | | Fixes issue1202. Originally committed as revision 19276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix id3v2.3/4 tag size parsing.Michael Niedermayer2009-06-25
| | | | | | Fixes issue1106 Originally committed as revision 19275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFormatContext->probesize in av_find_stream_info and raise default to 5MBaptiste Coudurier2009-06-25
| | | | Originally committed as revision 19274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only set CODEC_ID_PROBE when a packet from a stream having a PES headerBaptiste Coudurier2009-06-25
| | | | | | is read. Originally committed as revision 19273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* limit raw packet buffer size used for codec probingBaptiste Coudurier2009-06-25
| | | | Originally committed as revision 19272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only set par if it does not indicates a rotation, ex iphone 3GSBaptiste Coudurier2009-06-25
| | | | Originally committed as revision 19271 to svn://svn.ffmpeg.org/ffmpeg/trunk