summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* cosmetics: be sure all lines fit into 79 charactersAlex Beregszaszi2007-08-03
| | | | Originally committed as revision 9875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indent correctlyAlex Beregszaszi2007-08-03
| | | | Originally committed as revision 9874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use getCachedContext instead getContext to support resolution change. Patch ↵Glenn A. Serre2007-08-03
| | | | | | by Glenn A. Serre Originally committed as revision 9873 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
* move code which adds a AVPacket into the packet buffer into its own functionMichael Niedermayer2007-08-03
| | | | Originally committed as revision 9871 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
* correct order of fixedpoint in CONFIG listMarc Hoffman2007-08-02
| | | | Originally committed as revision 9869 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
* --enable-fixedpoint, for configuring fixedpoint optimizations, this is just ↵Marc Hoffman2007-08-02
| | | | | | the config aspect Originally committed as revision 9866 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
* replace some "disabled" calls with "! enabled"Måns Rullgård2007-08-01
| | | | Originally committed as revision 9859 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
* alphabetical orderDiego Biurrun2007-08-01
| | | | Originally committed as revision 9854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant variable declarations.Diego Biurrun2007-08-01
| | | | Originally committed as revision 9853 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
* move gray so as to not introduce further misorderingMichael Niedermayer2007-08-01
| | | | Originally committed as revision 9851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded gray="no"Michael Niedermayer2007-08-01
| | | | Originally committed as revision 9850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adding myself to the CREDITSMarc Hoffman2007-08-01
| | | | Originally committed as revision 9849 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
* fill title, author, copyright and comment fields by parsing udta atomBenoit Fouet2007-07-31
| | | | Originally committed as revision 9840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deal with the case where one of pts,dts has wrapped but the other has notMichael Niedermayer2007-07-31
| | | | Originally committed as revision 9839 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
* kill antiwrapping code, i do not think this did anything goodMichael Niedermayer2007-07-30
| | | | | | | fixes decoding of rete4.ps closes issue44 Originally committed as revision 9835 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
* treat NONE as U8 to fix qtNONE/000_0032.MOV, this should not any have side ↵Baptiste Coudurier2007-07-30
| | | | | | effect since if bps is 16 in stsd, codec will be changed to s16be, just yell if this breaks any sample Originally committed as revision 9832 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