summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* indentationMåns Rullgård2006-11-01
| | | | Originally committed as revision 6857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CODEC_CAP_DELAY supportMåns Rullgård2006-11-01
| | | | Originally committed as revision 6856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reenable AMD64 optimizations for cabac accidentially disabled in r6852Reimar Döffinger2006-11-01
| | | | Originally committed as revision 6853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ARCH_X86_32 as a new define for 32 bit x86 architectures and changeDiego Biurrun2006-11-01
| | | | | | the semantics of ARCH_X86 to mean both 32 and 64 bits. Originally committed as revision 6852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 1/0 b frames + CBR bugMichael Niedermayer2006-10-31
| | | | Originally committed as revision 6850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Restore alphabetical order.Diego Biurrun2006-10-31
| | | | Originally committed as revision 6848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* coded line size is a multiple of 4Måns Rullgård2006-10-30
| | | | Originally committed as revision 6844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix for disabling vorbis decoder but enabling vorbis encoderOded Shimon2006-10-30
| | | | Originally committed as revision 6841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Init vlc tables as staticKostya Shishkov2006-10-30
| | | | Originally committed as revision 6840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IMC decoderKostya Shishkov2006-10-30
| | | | Originally committed as revision 6839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVPicture has 4 planes, not 3Luca Abeni2006-10-30
| | | | Originally committed as revision 6838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont set the sampling rate just because 1 mp3 packet header says so (fixes ↵Michael Niedermayer2006-10-30
| | | | | | playback speed on some old mencoder generated avis which where then dumped to mp3) Originally committed as revision 6837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid random noise on damaged framesMichael Niedermayer2006-10-30
| | | | Originally committed as revision 6836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with PIC enabled, BRANCHLESS_GET_CABAC is defined underDiego Biurrun2006-10-29
| | | | | | !PIC but gets used without a check for !PIC. Originally committed as revision 6834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update copyright year, it looks odd otherwise :)Michael Niedermayer2006-10-28
| | | | Originally committed as revision 6830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CANDIDATE_MB_TYPE_INTER heuristic doesnt work at really low quality where ↵Michael Niedermayer2006-10-28
| | | | | | the distortion becomes less relevant then the overhead of intra blocks Originally committed as revision 6829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* I hope noone minds, adding myself to eval.c copyright...Oded Shimon2006-10-28
| | | | Originally committed as revision 6827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lambda* should be unsignedMichael Niedermayer2006-10-28
| | | | Originally committed as revision 6824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent overflow if lambda2 is "too" largeMichael Niedermayer2006-10-28
| | | | Originally committed as revision 6823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use lambda/lmax instead of qscale/qmax as end check for vbv retryMichael Niedermayer2006-10-28
| | | | Originally committed as revision 6822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ignore whitespace in ff_evalOded Shimon2006-10-28
| | | | Originally committed as revision 6821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sample rate fixAndrew Voznytsa2006-10-28
| | | | | | patch by Andrew Voznytsa andrew.voznytsa gmail com Originally committed as revision 6820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing 'e->value * 'Oded Shimon2006-10-28
| | | | Originally committed as revision 6819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* shut gcc warning, also makes sense for NAN to be returned if the loop was ↵Oded Shimon2006-10-28
| | | | | | never executed Originally committed as revision 6818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename dvdsub.c to dvdsubdec.c.Diego Biurrun2006-10-27
| | | | Originally committed as revision 6815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for while() loops again ugly syntax while(condition, statements) ↵Michael Niedermayer2006-10-27
| | | | | | but very simple implementation Originally committed as revision 6814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support seperating expressons by ;Michael Niedermayer2006-10-27
| | | | | | support variables, the syntax isnt beautifull (st(a,b) means var[a]=b and ld(a) var[a]) but for a mere 19 lines of code its fairly simple, if anyone wants to write real variables support with names for variables and = and [] then that would of course be welcome but only if it doesnt bloat the code up terribly...) Originally committed as revision 6813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix obvious typo, BGR555 was missingReynaldo H. Verdejo Pinochet2006-10-27
| | | | Originally committed as revision 6812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* possible bug of 'gte' being read as 'gt', same with 'lte'Oded Shimon2006-10-27
| | | | Originally committed as revision 6811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor simplificationMichael Niedermayer2006-10-27
| | | | Originally committed as revision 6810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize AVEvalExpr alloc and initMichael Niedermayer2006-10-27
| | | | Originally committed as revision 6809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update ratecontrol to new ff_eval APIOded Shimon2006-10-27
| | | | Originally committed as revision 6808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adds missing rgb/bgr 565 codec->fmt mappings, ok'ed by MichaelReynaldo H. Verdejo Pinochet2006-10-27
| | | | Originally committed as revision 6807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adds missing rgb/bgr 555 codec->fmt mappings, ok'ed by MichaelReynaldo H. Verdejo Pinochet2006-10-27
| | | | Originally committed as revision 6806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new optimized eval method, by seperating parsing and runtimeOded Shimon2006-10-27
| | | | Originally committed as revision 6803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LZW decoder as separate module plus TIFF LZW supportKostya Shishkov2006-10-26
| | | | Originally committed as revision 6795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l predictor should not skip first lineKostya Shishkov2006-10-26
| | | | Originally committed as revision 6794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't include inttypes.h/stdint.h directly, there is an abstraction inSteve L'Homme2006-10-24
| | | | | | | libavutil/common.h for platforms with no inttypes.h. patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reverse my last change, it was wrong and brokenMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove map variableMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize update state outMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFMAXMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* common subexpression eliminationMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge 8 and 16bit functions, they are identical except the data typeMichael Niedermayer2006-10-24
| | | | Originally committed as revision 6783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set v_edge_pos correctly for field picture mpeg2Michael Niedermayer2006-10-24
| | | | Originally committed as revision 6782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* JPEG-LS 16-bit gray supportKostya Shishkov2006-10-24
| | | | Originally committed as revision 6781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PGM 16-bit gray supportKostya Shishkov2006-10-24
| | | | Originally committed as revision 6780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PNG 16-bit gray decoding supportKostya Shishkov2006-10-24
| | | | Originally committed as revision 6779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 16-bit grayscale supportKostya Shishkov2006-10-24
| | | | Originally committed as revision 6778 to svn://svn.ffmpeg.org/ffmpeg/trunk