summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* Do not set pos to an error value.Howard Chu2010-04-12
| | | | | | Patch by Howard Chu, hyc highlandsun com Originally committed as revision 22853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Predicting the size of the hdlr, string data and trkn tags in the MOV muxerTomas Härdin2010-04-12
| | | | Originally committed as revision 22846 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
* Set audio bit rate.Howard Chu2010-04-11
| | | | | | Patch by Howard Chu, hyc highlandsun com Originally committed as revision 22835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raise needed score for codec probing in CODEC_ID_PROBE before the last packet.Michael Niedermayer2010-04-11
| | | | | | Fixes issue1871 Originally committed as revision 22831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dont try to compute AVPacket duration for possibly interlaced video codecsMichael Niedermayer2010-04-09
| | | | | | | when no parser is available. This partly fixes the frame rate misdetection in issue1756. Originally committed as revision 22824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Seeking forward in non-seekable media by discarding data, regardless of how ↵Tomas Härdin2010-04-08
| | | | | | far to seek. Won't SEEK_END unless forced though. Originally committed as revision 22822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reusing the probe buffer to rewind the ByteIOContext in ↵Tomas Härdin2010-04-08
| | | | | | ff_probe_input_buffer() instead of seeking back to the start of the file. Once exhausted, the size of the buffer is reduced. Originally committed as revision 22821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't write an empty spdif header in spdif muxers write_header function ↵Joakim Plate2010-04-07
| | | | | | | | before actual data starts. Patch by Elupus. Originally committed as revision 22814 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
* ReindentMartin Storsjö2010-04-05
| | | | Originally committed as revision 22805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix leaks in the AAC RTP depacketizerMartin Storsjö2010-04-05
| | | | Originally committed as revision 22804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add void to a function prototype that takes no arguments. Fixes a potentialRonald S. Bultje2010-04-05
| | | | | | compiler warning. Originally committed as revision 22803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rounding direction for calculation of AVPacket.duration.Michael Niedermayer2010-04-04
| | | | | | Fixes issue1579 Originally committed as revision 22802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Zero-initialize the reply structMartin Storsjö2010-04-04
| | | | | | | The status_code field is read in the fail codepath, where it could be read uninitialized earlier. Found by clang. Originally committed as revision 22801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement support to the AVSEEK_SIZE operation in file_seek().Stefano Sabatini2010-04-04
| | | | | | | | | | | Avoid the need to use seeking for getting the file size, use fstat instead, which is significantly faster. See thread: Subject: [FFmpeg-devel] [PATCH] Add support to AVSEEK_SIZE to the file protocol seek callback Date: Fri, 2 Apr 2010 13:13:27 +0200 Originally committed as revision 22799 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
* Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini2010-04-03
| | | | | | | | | AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a redundant assignment, found by clangMartin Storsjö2010-04-03
| | | | Originally committed as revision 22790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix buffer size; should hold 2 32-bit integers in hex = 16 chars + terminatingRonald S. Bultje2010-04-02
| | | | | | zero, so should be 17 bytes, not 9. Originally committed as revision 22786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ETIME -> ETIMEDOUT. Patch by Sam Gerstein <sgerstein bluefinlab com>.Sam Gerstein2010-04-02
| | | | Originally committed as revision 22785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another uninitialized value.Ronald S. Bultje2010-04-02
| | | | | | See http://tranquillity.ath.cx/clang/2010-03-30-1/report-e6KUTb.html#EndPath Originally committed as revision 22783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix uninitialized value in codepath.Ronald S. Bultje2010-04-02
| | | | | | See http://tranquillity.ath.cx/clang/2010-03-30-1/report-40QvF3.html#EndPath Originally committed as revision 22782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead initialization.Ronald S. Bultje2010-04-02
| | | | Originally committed as revision 22781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead initialization.Ronald S. Bultje2010-04-02
| | | | Originally committed as revision 22780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change a case of CODEC_TYPE_ into AVMEDIA_TYPE_Martin Storsjö2010-04-02
| | | | | | This was accidentally overwritten in the recent merge of the theora/vorbis codepaths Originally committed as revision 22774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge Vorbis / Theora depayloaders.Josh Allmann2010-04-01
| | | | | | Patch by Josh Allmann <joshua DOT allmann AT gmail DOT com>. Originally committed as revision 22768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r22766.Josh Allmann2010-04-01
| | | | | | Patch by Josh Allmann <joshua DOT allmann AT gmail DOT com>. Originally committed as revision 22767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename functions / comments from "Theora" to "Xiph" where relevant.Josh Allmann2010-04-01
| | | | | | Patch by Josh Allmann <joshua DOT allmann AT gmail DOT com>. Originally committed as revision 22766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename rtpdec_theora.[ch] to rtpdec_xiph.[ch], as a preparation for mergingJosh Allmann2010-04-01
| | | | | | | | the Vorbis / theora depacketizers. Patch by Josh Allmann <joshua DOT allmann AT gmail DOT com>. Originally committed as revision 22765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Limit probing to probesize.Michael Niedermayer2010-04-01
| | | | Originally committed as revision 22758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix flvdec start-of-frame.Howard Chu2010-04-01
| | | | | | Patch by Howard Chu hyc highlandsun com Originally committed as revision 22757 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
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Probe aac codecs for CODEC_ID_PROBE.Joakim Plate2010-03-31
| | | | | | Patch by Joakim Plate, elupus ecce se Originally committed as revision 22742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous space from a conversion table.Anton Khirnov2010-03-31
| | | | | | Patch by Anton Khirnov, wyskas gmail Originally committed as revision 22741 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
* Document url_exist().Stefano Sabatini2010-03-29
| | | | Originally committed as revision 22725 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
* Some spelling fixes.Reimar Döffinger2010-03-29
| | | | Originally committed as revision 22720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a timeout to the select() call. Patch by Sam Gerstein <sgerstein bluefinlabSam Gerstein2010-03-29
| | | | | | com>. Originally committed as revision 22718 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 url_seek().Stefano Sabatini2010-03-28
| | | | Originally committed as revision 22709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix NUT (de)muxer warnings:Vitor Sessak2010-03-28
| | | | | | | | | | | | | | | | | CC libavformat/nutdec.o libavformat/nutdec.c: In function ‘read_seek’: libavformat/nutdec.c:862: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ libavformat/nutdec.c:871: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ libavformat/nutdec.c:879: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ CC libavformat/nutenc.o libavformat/nutenc.c: In function ‘write_packet’: libavformat/nutenc.c:680: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ Originally committed as revision 22707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize ssrc and base_timestamp using ff_random_get_seed()Martin Storsjö2010-03-28
| | | | Originally committed as revision 22706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correct first pts for ogg skeletonAurelien Jacobs2010-03-28
| | | | Originally committed as revision 22705 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