summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* table fixKostya Shishkov2007-02-05
| | | | Originally committed as revision 7819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* useless as this file wont be compiled if this is not trueMichael Niedermayer2007-02-04
| | | | Originally committed as revision 7816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Save frame header info in context variablesKostya Shishkov2007-02-04
| | | | Originally committed as revision 7815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set frame rate from extradataKostya Shishkov2007-02-04
| | | | Originally committed as revision 7814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize switch_buffer()Michael Niedermayer2007-02-03
| | | | Originally committed as revision 7813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of takethat.mp3Michael Niedermayer2007-02-03
| | | | Originally committed as revision 7812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* These messages are just for debug purposesKostya Shishkov2007-02-03
| | | | Originally committed as revision 7811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set codec dimensions if provided by extradataKostya Shishkov2007-02-03
| | | | Originally committed as revision 7810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VC-1 parserKostya Shishkov2007-02-03
| | | | Originally committed as revision 7809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 0x00000103 is not an escape markerKostya Shishkov2007-02-02
| | | | Originally committed as revision 7807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FIXMEMichael Niedermayer2007-02-02
| | | | Originally committed as revision 7804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* General approach to parsing chunks in VC-1 APKostya Shishkov2007-02-02
| | | | Originally committed as revision 7803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some (probably exploitable) out of array write fixesMichael Niedermayer2007-02-02
| | | | Originally committed as revision 7802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* missed a redundant loadMåns Rullgård2007-02-02
| | | | Originally committed as revision 7801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert accidental checkinMåns Rullgård2007-02-01
| | | | Originally committed as revision 7800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* save one cycleMåns Rullgård2007-02-01
| | | | Originally committed as revision 7799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant loadsMåns Rullgård2007-02-01
| | | | Originally committed as revision 7798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for out-of-bounds accessKostya Shishkov2007-02-01
| | | | Originally committed as revision 7797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decode_end method to bmp decoder. Patch by Michel Bardiaux,Michel Bardiaux2007-02-01
| | | | | | mbardiaux mediaxim dot be. Originally committed as revision 7796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly set profile/level for hdBaptiste Coudurier2007-02-01
| | | | Originally committed as revision 7795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Activate guards in avcodec_default_get_buffer. Patch by Michel Bardiaux,Michel Bardiaux2007-02-01
| | | | | | mbardiaux mediaxim dot be. Originally committed as revision 7794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimize IDCT of rows with mostly zero coefficientsMåns Rullgård2007-01-31
| | | | Originally committed as revision 7790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move lzo decompression to libavutilReimar Döffinger2007-01-31
| | | | Originally committed as revision 7789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure we do not accidentially "fix" cnt to something < 0Reimar Döffinger2007-01-31
| | | | Originally committed as revision 7788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify checks, use that we know that cnt will not be < 0Reimar Döffinger2007-01-31
| | | | Originally committed as revision 7787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove boundary checks that are actually done "well enough"Reimar Döffinger2007-01-31
| | | | | | in copy function Originally committed as revision 7786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Documentation fix: Copy functions should "work" fine for cnt == 0Reimar Döffinger2007-01-31
| | | | Originally committed as revision 7785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize LZO copy operationsReimar Döffinger2007-01-31
| | | | Originally committed as revision 7784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memcpy out-of-bounds.Michel Bardiaux2007-01-31
| | | | | | patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another >> vs >Michael Niedermayer2007-01-31
| | | | Originally committed as revision 7779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simpify state and make code 2% fasterMichael Niedermayer2007-01-31
| | | | | | reimar, dont hesitate to flame me for not sending patches and feel free to revert any or all of my changes to lzo.c if you dont like them Originally committed as revision 7778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add two extra needed bounds checksReimar Döffinger2007-01-31
| | | | Originally committed as revision 7777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace if(x>>b) by if(x>C) as shifts are slow on some cpus and i have my ↵Michael Niedermayer2007-01-31
| | | | | | doubts that gcc can replace the shifts as x is signed, it could in theory but well its gcc ... Originally committed as revision 7776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add code to testcode to ease comparing with liblzo.Reimar Döffinger2007-01-31
| | | | Originally committed as revision 7775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make BMP decoder use bytestream. Patch by Michel BardiauxMichel Bardiaux2007-01-31
| | | | | | mbardiaux mediaxim dot be. Originally committed as revision 7773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the getbe16 functions and use the AV_RB16 macro instead. Patch by IanPanagiotis Issaris2007-01-30
| | | | | | Caulfield, ian dot caulfield gmail dot com. Originally committed as revision 7768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a bug in the DVD subtitle decoder where subtitles with odd heights would notIan Caulfield2007-01-30
| | | | | | | have the last line decoded, leaving the bottom line of the bitmap array uninitialised. Patch by Ian Caulfield, ian dot caulfield gmail dot com. Originally committed as revision 7767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the const specifier as needed to reduce the number of warnings.Panagiotis Issaris2007-01-30
| | | | Originally committed as revision 7764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fix by Dmitry Antipov dmantipov =a= yandex =d= ruMåns Rullgård2007-01-29
| | | | Originally committed as revision 7763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoretically save one cycleMåns Rullgård2007-01-29
| | | | Originally committed as revision 7762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix BI-frames decoding for Adv. profileKostya Shishkov2007-01-29
| | | | Originally committed as revision 7758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix segfault in bmp decoder. Patch by Michel Bardiaux mbardiaux mediaxim dot be.Michel Bardiaux2007-01-29
| | | | Originally committed as revision 7757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that js_vlc_bits from the extradata is in a valid range.Benjamin Larsson2007-01-29
| | | | Originally committed as revision 7756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of the COOKextradata struct. And use valid C to parse the extradata.Benjamin Larsson2007-01-29
| | | | Originally committed as revision 7755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Kill a warning and don't use modulus.Benjamin Larsson2007-01-29
| | | | Originally committed as revision 7754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decode_subpacket cleanup by Ian Braithwaite ian braithwaite dot dk.Benjamin Larsson2007-01-29
| | | | Originally committed as revision 7753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARMv6 SIMD IDCTMåns Rullgård2007-01-28
| | | | Originally committed as revision 7752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LZO optimization: check input buffer bounds less frequently if paddedReimar Döffinger2007-01-28
| | | | Originally committed as revision 7747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sort out the diffrent cook versions.Benjamin Larsson2007-01-28
| | | | Originally committed as revision 7739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.Benjamin Larsson2007-01-28
| | | | | | ian at braithwaite dot dk. Originally committed as revision 7738 to svn://svn.ffmpeg.org/ffmpeg/trunk