summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* dnxhd 120 progressive supportBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dnxhd 185 interlaced supportBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9900 to svn://svn.ffmpeg.org/ffmpeg/trunk
* no need to duplicate cid table vars in contextBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, use correct cid tableBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add coding unit size for interlaced decodingBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* should be more correctBaptiste Coudurier2007-08-04
| | | | Originally committed as revision 9896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2007-08-04
| | | | Originally committed as revision 9894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: use braces when it makes the code easier to read.Justin Ruggles2007-08-04
| | | | Originally committed as revision 9893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change AC3DecodeContext variable to local variableJustin Ruggles2007-08-04
| | | | Originally committed as revision 9892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use array instead of bitmaskJustin Ruggles2007-08-04
| | | | Originally committed as revision 9891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MPEG-1/2 decoder work with the libmpeg2-style bitstream reader.Michael Niedermayer2007-08-04
| | | | Originally committed as revision 9890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use table for converting dynamic range codes to scale factorsJustin Ruggles2007-08-04
| | | | Originally committed as revision 9889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use floating-point mantissa dequantization tablesJustin Ruggles2007-08-04
| | | | Originally committed as revision 9888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationJustin Ruggles2007-08-04
| | | | Originally committed as revision 9887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dither zero-bit mantissas by default. remove dithering only if it's ↵Justin Ruggles2007-08-04
| | | | | | explicitly turned off. Originally committed as revision 9886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify coefficient decodingJustin Ruggles2007-08-04
| | | | Originally committed as revision 9884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge decoding of coupling channel coefficients and regular channel coefficientsJustin Ruggles2007-08-04
| | | | Originally committed as revision 9883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split out coupling coefficient reconstruction into a separate functionJustin Ruggles2007-08-03
| | | | Originally committed as revision 9882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce Theora decoder verbosity.Diego Biurrun2007-08-03
| | | | Originally committed as revision 9872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* output last frame if seq end code is encounteredMichael Niedermayer2007-08-02
| | | | | | | fixes video decoding of AC3TEST.vob closes issue19 Originally committed as revision 9870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2007-08-02
| | | | Originally committed as revision 9868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify s->mv_dir initMichael Niedermayer2007-08-02
| | | | Originally committed as revision 9867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of mb_type_lenMichael Niedermayer2007-08-01
| | | | Originally committed as revision 9865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* exchange the values of MV_DIR_FORWARD and MV_DIR_BACKWARD (this is more sane,Michael Niedermayer2007-08-01
| | | | | | matches the order of some other stuff and allows some simplifications) Originally committed as revision 9864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* exchange if() and for() in the MT_FIELD caseMichael Niedermayer2007-08-01
| | | | | | 18 cpu cycles faster for matrixbench Originally committed as revision 9863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* exchange for() and if() order in the MT_FRAME caseMichael Niedermayer2007-08-01
| | | | | | safes 24 cpu cycles Originally committed as revision 9862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* making reference models have the same APIMarc Hoffman2007-08-01
| | | | Originally committed as revision 9861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changeMichael Niedermayer2007-08-01
| | | | | | | | | | | | | | | | | for(){ if(){ switch(){ to switch(){ for(){ if(){ this halfs the number of times the switch is executed in bidir blocks, in other blocks the number is the same 25 cpu cycles less with matrixbench on duron Originally committed as revision 9860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge another 2 if() to save a few cpu cyclesMichael Niedermayer2007-08-01
| | | | Originally committed as revision 9858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reorder if() so that the condition can be simplifiedMichael Niedermayer2007-08-01
| | | | | | saves another 4 cpu cycles Originally committed as revision 9857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge/simplify 2 if()Michael Niedermayer2007-08-01
| | | | | | ~4 cpu cylces faster for the matrixbench video Originally committed as revision 9856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge 2 if()Michael Niedermayer2007-08-01
| | | | | | this safes 1-2 cpu cycles Originally committed as revision 9855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use buf_ptr to correctly decode second fieldBaptiste Coudurier2007-08-01
| | | | Originally committed as revision 9852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* align array used in mdct. fixes segfault.Justin Ruggles2007-08-01
| | | | Originally committed as revision 9848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ENABLE_GRAYMichael Niedermayer2007-08-01
| | | | Originally committed as revision 9847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make grayscale only decoding checks in inner loops compiletime killableMichael Niedermayer2007-08-01
| | | | Originally committed as revision 9846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some code which was executed for every skipped MB so it is only executedMichael Niedermayer2007-07-31
| | | | | | for the first skipped mb in a run Originally committed as revision 9845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of a useless variableMichael Niedermayer2007-07-31
| | | | Originally committed as revision 9844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid 2 additions (1 cpu cycle) per MBMichael Niedermayer2007-07-31
| | | | Originally committed as revision 9843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* chroma_qscale seems not used anywhere for mpeg1/2 so do not waste cpu time ↵Michael Niedermayer2007-07-31
| | | | | | setting it Originally committed as revision 9842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typoPanagiotis Issaris2007-07-31
| | | | Originally committed as revision 9841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mem leakDaniel Kristjansson2007-07-31
| | | | | | | | | patch by Daniel Kristjansson: [danielk cuymedia net] Original thread: [FFmpeg-devel] [PATCH] alloc_picture needs to free buffer when it's not going to use it Date: 07/20/2007 07:27 PM Originally committed as revision 9838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Identifiers starting with underscores are reserved.Diego Biurrun2007-07-31
| | | | Originally committed as revision 9837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix cabac decoding with some Blue-Ray sourcesAndreas Öman2007-07-30
| | | | | | | | | Patch by Andreas Öman %andreas A olebyn P nu% Original thread: Date: Jul 7, 2007 1:23 AM Subject: [FFmpeg-devel] Corrupted blocks and seeking issues in H264 disc sources Originally committed as revision 9836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replacing the use of deprecated unaligned*() routines by LD64 and AV_RB32Roman Shaposhnik2007-07-30
| | | | Originally committed as revision 9834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle malloc failurePanagiotis Issaris2007-07-30
| | | | Originally committed as revision 9833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support silly PCM variant used by zork nemesisMichael Niedermayer2007-07-30
| | | | | | fixes audio decoding of T000A11C.AVI Originally committed as revision 9831 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent assert failure with negative quant_offsetMichael Niedermayer2007-07-29
| | | | Originally committed as revision 9830 to svn://svn.ffmpeg.org/ffmpeg/trunk