summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* 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
* warn user if max=bitrate && max > minMichael Niedermayer2007-07-29
| | | | Originally committed as revision 9829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support raw 4bpp aviMichael Niedermayer2007-07-29
| | | | | | | fixes dance1.avi closes issue40 Originally committed as revision 9828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make the reference code use double instead of float where it is easyMichael Niedermayer2007-07-29
| | | | Originally committed as revision 9827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print max and mseMichael Niedermayer2007-07-29
| | | | Originally committed as revision 9826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make bicubic interpolation standard compliantChristophe Gisquet2007-07-29
| | | | | | | | | Patch by Christophe GISQUET (echo -e "christophe\056gisquet\100 (antonym to malloc()) \056fr") Thread [PATCH] Binary identicity for ffvc1 (was Re: [PATCH] VC-1 MMX DSP functions) Originally committed as revision 9825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify stereo rematrixingJustin Ruggles2007-07-29
| | | | Originally committed as revision 9824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change 2 fields from context to local variablesJustin Ruggles2007-07-29
| | | | Originally committed as revision 9823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* BLOCK_SIZE is not used properly, just use numbers instead to avoid confusionJustin Ruggles2007-07-28
| | | | Originally committed as revision 9822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove broken downmixing. will add new implementation later.Justin Ruggles2007-07-28
| | | | Originally committed as revision 9821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take care of some renames (Doxygen and function name) after the previous ↵Panagiotis Issaris2007-07-28
| | | | | | pure rename patch. Originally committed as revision 9820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename h264dsp.c to h264dspenc.cPanagiotis Issaris2007-07-28
| | | | Originally committed as revision 9819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ahem, fix typos overlooked in last commit.Diego Biurrun2007-07-28
| | | | Originally committed as revision 9816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: misc typo fixesDiego Biurrun2007-07-28
| | | | Originally committed as revision 9815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace a return of -1 with ENOMEM.Panagiotis Issaris2007-07-27
| | | | Originally committed as revision 9813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* detect voxware (closes issue39)Michael Niedermayer2007-07-27
| | | | Originally committed as revision 9809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove "Advanced Prediction Mode not supported" spamMichael Niedermayer2007-07-26
| | | | Originally committed as revision 9805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* also support DEBUG_PICT_INFO for h263iMichael Niedermayer2007-07-26
| | | | Originally committed as revision 9804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move show_pict_info() to its own functionMichael Niedermayer2007-07-26
| | | | Originally committed as revision 9803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove wrong const qualifierAurelien Jacobs2007-07-25
| | | | Originally committed as revision 9795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* have less functions as inlineStefan Gehrer2007-07-25
| | | | Originally committed as revision 9792 to svn://svn.ffmpeg.org/ffmpeg/trunk