aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* av_logifyLuca Barbato2007-01-281-8/+9
| | | | Originally committed as revision 22047 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* simplify conditionDiego Biurrun2007-01-281-1/+1
| | | | Originally committed as revision 7751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Seeking support in WavPackKostya Shishkov2007-01-281-3/+42
| | | | Originally committed as revision 7750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a function for repeated AltiVec output and condition check.Diego Biurrun2007-01-281-21/+13
| | | | Originally committed as revision 7749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wrong condition check in the memalign error output.Diego Biurrun2007-01-281-1/+1
| | | | Originally committed as revision 7748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LZO optimization: check input buffer bounds less frequently if paddedReimar Döffinger2007-01-282-13/+23
| | | | Originally committed as revision 7747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling and formatting cosmeticsDiego Biurrun2007-01-281-17/+17
| | | | Originally committed as revision 7746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ! disabled() where appropriate.Diego Biurrun2007-01-281-3/+3
| | | | Originally committed as revision 7745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use disabled() to check for GPL.Diego Biurrun2007-01-281-1/+1
| | | | Originally committed as revision 7744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make use of enabled_any().Diego Biurrun2007-01-281-2/+2
| | | | Originally committed as revision 7743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make use of disabled(), disabled_all() and enabled_all().Diego Biurrun2007-01-281-3/+2
| | | | Originally committed as revision 7742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add disabled_any() and disabled_all() functions.Diego Biurrun2007-01-281-0/+12
| | | | Originally committed as revision 7741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add disabled() function and make use of it.Ramiro Polla2007-01-281-10/+14
| | | | | | patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sort out the diffrent cook versions.Benjamin Larsson2007-01-281-7/+7
| | | | Originally committed as revision 7739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cook stereo (MONO_COOK2) bugfix, by Ian Braithwaite.Benjamin Larsson2007-01-281-24/+74
| | | | | | ian at braithwaite dot dk. Originally committed as revision 7738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* an alloc func failing should give ENOMEM anyway.François Revol2007-01-281-1/+1
| | | | Originally committed as revision 7737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* proper error handling in file size retrieval, patch by Ronald S. Bultje ↵Ronald S. Bultje2007-01-281-1/+3
| | | | | | rbultje at ronald bitfreak net Originally committed as revision 7736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of one warning.Benjamin Larsson2007-01-271-1/+1
| | | | Originally committed as revision 7735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify and avoid a warning (should be faster on Cell and certain G4 revisions)Luca Barbato2007-01-271-4/+2
| | | | Originally committed as revision 7734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Coded residual in WavPack may be > 0xFFFFKostya Shishkov2007-01-271-2/+2
| | | | Originally committed as revision 7733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix _LZO_H vs. LZO_H typoReimar Döffinger2007-01-271-1/+1
| | | | Originally committed as revision 7732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix buffer end checks in lzo copy code to work in all cases.Reimar Döffinger2007-01-271-4/+4
| | | | Originally committed as revision 7731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nobody uses TARGET_CMOVMåns Rullgård2007-01-271-1/+0
| | | | Originally committed as revision 7730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename CMOV_IS_FAST to HAVE_FAST_CMOV and simplify configureMåns Rullgård2007-01-272-11/+8
| | | | Originally committed as revision 7729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify setting of TARGET_* variablesMåns Rullgård2007-01-271-23/+16
| | | | Originally committed as revision 7728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add lzo test codeReimar Döffinger2007-01-271-0/+32
| | | | Originally committed as revision 7727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix warnings and simplify/reorder the codeLuca Barbato2007-01-271-20/+11
| | | | Originally committed as revision 7726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stealing a few field names from mplayers asf demuxerMichael Niedermayer2007-01-271-15/+15
| | | | Originally committed as revision 7725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change occurences of 'test $foo != "no"' to 'enabled foo' forRamiro Polla2007-01-271-7/+7
| | | | | | | values which can only be set to "no" or "yes". patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change one occurence of 'test $foo = yes -o test $bar = yes' toRamiro Polla2007-01-271-2/+2
| | | | | | | | 'enabled_any foo bar', and one occurence of 'test $foo = yes && test $bar = yes' to 'enabled_all foo bar'. patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change all straight 'test $foo = "yes"' to 'enabled foo'.Ramiro Polla2007-01-271-36/+36
| | | | | | patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Segregate code common to BMP decoder and future encoderMichel Bardiaux2007-01-272-12/+33
| | | | | | patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set aspect ratio if present (for AP only)Kostya Shishkov2007-01-271-2/+4
| | | | Originally committed as revision 7720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for ARMv6 instruction set supportMåns Rullgård2007-01-271-0/+14
| | | | Originally committed as revision 7719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix inifnite loop with http://sam.zoy.org/zzuf/lol-mplayer.mpgMichael Niedermayer2007-01-261-1/+1
| | | | Originally committed as revision 7718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TypoPanagiotis Issaris2007-01-261-1/+1
| | | | Originally committed as revision 7717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove void * used in arithmetic warningsBaptiste Coudurier2007-01-262-4/+4
| | | | Originally committed as revision 7716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics / remove #if 0 codeMichael Niedermayer2007-01-261-29/+1
| | | | Originally committed as revision 7715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add waveformatextensible supportBaptiste Coudurier2007-01-251-11/+19
| | | | Originally committed as revision 7714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add -Wno-pointer-sign to CFLAGSMåns Rullgård2007-01-251-0/+1
| | | | Originally committed as revision 7713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update gcc sections.Diego Biurrun2007-01-251-6/+4
| | | | Originally committed as revision 7712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence GCC when incorrectly complaining that the "line" variable could be usedPanagiotis Issaris2007-01-251-1/+1
| | | | | | without having been initialized. Originally committed as revision 7711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not run (broken) ffserver test by default and warn about its brokenness.Diego Biurrun2007-01-251-1/+5
| | | | Originally committed as revision 7710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove installstrip in favor of explicit strip; better for cross-compilation.Ramiro Polla2007-01-253-8/+3
| | | | | | patch by Ramiro Ribeiro Polla, ramiro lisha.ufsc br Originally committed as revision 7709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* comment typoDiego Biurrun2007-01-251-1/+1
| | | | Originally committed as revision 7708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use more portable PRIu64Guillaume Poirier2007-01-251-1/+1
| | | | Originally committed as revision 7707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bring down the number of snow.c warnings from 27 to 17 by using the constPanagiotis Issaris2007-01-251-20/+20
| | | | | | keyword. Originally committed as revision 7706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not force output audio channelsBaptiste Coudurier2007-01-251-7/+1
| | | | Originally committed as revision 7705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Brings down the number of snow.c warnings from 33 to 27 by putting parenthesesPanagiotis Issaris2007-01-251-6/+6
| | | | | | around + or - inside shift. Originally committed as revision 7704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flash screen video encoding support.Benjamin Larsson2007-01-251-1/+1
| | | | Originally committed as revision 7703 to svn://svn.ffmpeg.org/ffmpeg/trunk