summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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
* Group Unix-like platforms together in the platform documentation.Michael Kostylev2010-04-03
| | | | | | patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 22789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor spelling fixesDiego Biurrun2010-04-03
| | | | Originally committed as revision 22788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AVDISCARD_DEFAULT for 0 where appropriate.Carl Eugen Hoyos2010-04-02
| | | | Originally committed as revision 22787 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
* aacenc: Error when an unsupported profile is requestedAlex Converse2010-04-02
| | | | Originally committed as revision 22784 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
* aacenc: Don't lowpass the input unless specifically requested.Alex Converse2010-04-02
| | | | | | The heuristic for estimating a good cutoff is busted. Originally committed as revision 22779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change default for bidir_refine to 1.Michael Niedermayer2010-04-02
| | | | Originally committed as revision 22778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize bidir_refine a bit.Michael Niedermayer2010-04-02
| | | | | | | compiled code is less tham 1/4 the size. a tiny bit faster Originally committed as revision 22777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace the last occurrance of CODEC_TYPE_ with AVMEDIA_TYPE_Martin Storsjö2010-04-02
| | | | Originally committed as revision 22776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change bidir refine hash code so we only need to perform a singleMichael Niedermayer2010-04-02
| | | | | | | hash calculation for the whole function. negligibly faster (about 0.1%) Originally committed as revision 22775 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
* Reduce the size of the bidir refine hashtable from 4096 to 256 andMichael Niedermayer2010-04-02
| | | | | | | | change the hash function to something more sane and simple. about 1/3 faster, no meassureable change in psnr or size and i gues its even same md5 with my test file but i forgot testing that. Originally committed as revision 22773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move comment that belonged to cmp() back to cmp().Michael Niedermayer2010-04-02
| | | | Originally committed as revision 22772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slice dice, inline and outline cmp()Michael Niedermayer2010-04-02
| | | | | | | motion_est.o is now less than half its previous size. No speedchange meassureable. Originally committed as revision 22771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_builtin_constant_p()Michael Niedermayer2010-04-02
| | | | Originally committed as revision 22770 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement cmdutils.c:read_file(), and use it in ffmpeg.c for readingStefano Sabatini2010-04-01
| | | | | | the second pass encoding log file. Originally committed as revision 22769 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
* Add -t option to ffplay.Robert Krüger2010-04-01
| | | | | | Patch by Robert Krüger, krueger signal7 de Originally committed as revision 22764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store range coder state transition table.Michael Niedermayer2010-04-01
| | | | | | Use a better table, 2% compression gain for foreman Originally committed as revision 22763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow hardcoding of ulaw and alaw tables.Reimar Döffinger2010-04-01
| | | | Originally committed as revision 22762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change/simplify the tableprint/tablegen API.Reimar Döffinger2010-04-01
| | | | Originally committed as revision 22761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert two "m" constraints to MANGLE to fix compilation with some compilers.Reimar Döffinger2010-04-01
| | | | Originally committed as revision 22760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo: CODEC_FLAG2_SSIM is in flags2, not in flags.Takashi Mochizuki2010-04-01
| | | | | | Patch by Takashi Mochizuki mochi (A) da2 (.) so (dash) net (dot) ne (.) jp Originally committed as revision 22759 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
* Cosmetics: indentationBobby Bingham2010-04-01
| | | | Originally committed as revision 22756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't create unnecessary refereces to picturesBobby Bingham2010-04-01
| | | | Originally committed as revision 22755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hook decoder up to libavfilter's direct rendering for ffplayBobby Bingham2010-04-01
| | | | Originally committed as revision 22754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add function to export EDGE_WIDTH from libavcodec.Bobby Bingham2010-04-01
| | | | Originally committed as revision 22753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document API addition of avcodec_copy_context().Ronald S. Bultje2010-03-31
| | | | Originally committed as revision 22752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix FFM-based streaming from ffmpeg to ffserver. The basic problem is thatRonald S. Bultje2010-03-31
| | | | | | | | | | | we'd memset() the codec context to zero, thereby setting audio input to U8 and video to YUV420P. For most video encoders, that actually works, but for most audio codecs, it doesn't. This patch changes defaults to those set by avcodec_context_get_defaults() and have ffmpeg figure out the optimal encoding format itself if not set explicitely (as it does for the non-ffserver-cases also). Originally committed as revision 22751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avcodec_copy_context().Ronald S. Bultje2010-03-31
| | | | Originally committed as revision 22750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add entry for the addition of av_match_ext() to the public API.Stefano Sabatini2010-03-31
| | | | Originally committed as revision 22749 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
* Replace some "m" constraints by MANGLE to avoid issues with some compilers notReimar Döffinger2010-03-31
| | | | | | being able to compile it and deduplicate the code at the same time. Originally committed as revision 30978 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix a few typos/grammar nits from r22739.Jai Menon2010-03-31
| | | | Originally committed as revision 22747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix likely typo in r15937.Carl Eugen Hoyos2010-03-31
| | | | Originally committed as revision 22746 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