summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix DESTDIR handling. DESTDIR got prepended twice for $(DESTDIR)$libdirDiego Biurrun2006-07-15
| | | | | | and similar since $libdir contained $prefix, which contained $(DESTDIR).. Originally committed as revision 5754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set defaults before showing helpMåns Rullgård2006-07-15
| | | | Originally committed as revision 5753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid double copying of left border in luma predictionStefan Gehrer2006-07-14
| | | | Originally committed as revision 5752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace run by run+1 in VLC tablesStefan Gehrer2006-07-14
| | | | Originally committed as revision 5751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2006-07-14
| | | | Originally committed as revision 5750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change partition flags SYM -> FWD|SYMStefan Gehrer2006-07-14
| | | | Originally committed as revision 5749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set mvP2 also in PSKIP macroblockStefan Gehrer2006-07-14
| | | | Originally committed as revision 5748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optionally (use_lpc=2) support Cholesky factorization for finding the lpc ↵Michael Niedermayer2006-07-14
| | | | | | | | | | | | | | | | | coeficients this will find the coefficients which minimize the sum of the squared errors, levinson-durbin recursion OTOH is only strictly correct if the autocorrelation matrix is a toeplitz matrix which it is only if the blocksize is infinite, this is also why applying a window (like the welch winodw we currently use) improves the lpc coefficients generated by levinson-durbin recursion ... optionally (use_lpc>2) support iterative linear least abs() solver using cholesky factorization with adjusted weights in each iteration compression gain for both is small, and multiple passes are of course dead slow Originally committed as revision 5747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid overflows of qp and pic_typeStefan Gehrer2006-07-14
| | | | Originally committed as revision 5746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Properly handle vhook build flags for platforms that require special handling.Diego Biurrun2006-07-14
| | | | | | Removes one of the last FIXMEs from the build system. Originally committed as revision 5745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reorder some entries for more consistency and readability.Diego Biurrun2006-07-14
| | | | Originally committed as revision 5744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unneeded #includeMichael Niedermayer2006-07-14
| | | | Originally committed as revision 5743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: the ${prefix} variable should not be expanded when setting path defaults.Diego Biurrun2006-07-14
| | | | Originally committed as revision 5742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adding a \ so we can add more lines without having to do a "cosmetic" change ↵Michael Niedermayer2006-07-14
| | | | | | in the previous line Originally committed as revision 5741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* linear least squares solver using cholesky factorizationMichael Niedermayer2006-07-14
| | | | Originally committed as revision 5740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMåns Rullgård2006-07-14
| | | | Originally committed as revision 5739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMåns Rullgård2006-07-14
| | | | Originally committed as revision 5738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMåns Rullgård2006-07-14
| | | | Originally committed as revision 5737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove impossible #ifdef caseMåns Rullgård2006-07-14
| | | | Originally committed as revision 5736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove old msvc cruftMåns Rullgård2006-07-13
| | | | Originally committed as revision 5735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant #include <math.h>Måns Rullgård2006-07-13
| | | | Originally committed as revision 5734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace -D_GNU_SOURCE with -D_ISOC9X_SOURCE to avoid accidental useMåns Rullgård2006-07-13
| | | | | | of gnu extensions Originally committed as revision 5733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup suggested by Michael NiedermayerMåns Rullgård2006-07-13
| | | | Originally committed as revision 5732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move adler32 to libavutilMåns Rullgård2006-07-13
| | | | Originally committed as revision 5731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify the setting of some defaults.Diego Biurrun2006-07-13
| | | | Originally committed as revision 5730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add loop_input to AVFormatContext, getting rid of old hackVíctor Paesa2006-07-13
| | | | | | patch by Víctor Paesa <wzrlpy at arsystel com> Originally committed as revision 5729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add/improve PPC64 support. On such machines, "uname -m" returns "ppc64,Guillaume Poirier2006-07-13
| | | | | | so recognize them as such. Originally committed as revision 5728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dither lpc cpeffsMichael Niedermayer2006-07-13
| | | | Originally committed as revision 5727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add lost raw pcm input/output formatsMåns Rullgård2006-07-13
| | | | Originally committed as revision 5726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename AMR config variables to CONFIG_AMR*Måns Rullgård2006-07-12
| | | | Originally committed as revision 5725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* static libvorbis needs -loggMåns Rullgård2006-07-12
| | | | Originally committed as revision 5724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove MPlayer-specific include option hacks.Diego Biurrun2006-07-12
| | | | Originally committed as revision 5723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split compile and link in check_ldMåns Rullgård2006-07-12
| | | | | | based on patch by Graham Booker <ffmpeglist at cod3r com> Originally committed as revision 5722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nut needs crc.oMåns Rullgård2006-07-12
| | | | Originally committed as revision 5721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård2006-07-12
| | | | Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also remove versioned .so files on make clean.Diego Biurrun2006-07-11
| | | | Originally committed as revision 5719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use justDiego Biurrun2006-07-11
| | | | | | CONFIG_MINGW or __MINGW32__ instead. Originally committed as revision 5718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify list processingMåns Rullgård2006-07-11
| | | | Originally committed as revision 5717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tidy up option parsingMåns Rullgård2006-07-11
| | | | Originally committed as revision 5716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another round of cola, pleaseMåns Rullgård2006-07-11
| | | | Originally committed as revision 5715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* log stderr of test programs in check_exec()Måns Rullgård2006-07-11
| | | | Originally committed as revision 5714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* find all codecs, even the ones with numbersMåns Rullgård2006-07-11
| | | | Originally committed as revision 5713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l to Diego for disabling all codecsMåns Rullgård2006-07-11
| | | | Originally committed as revision 5712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split CODEC_LIST into ENCODER_LIST AND DECODER_LIST.Diego Biurrun2006-07-11
| | | | Originally committed as revision 5711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix indentation after last commit.Diego Biurrun2006-07-11
| | | | Originally committed as revision 5710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old MSVC remnants.Diego Biurrun2006-07-11
| | | | Originally committed as revision 5709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_AIFF_DEMUXER vs CONFIG_AIFF_MUXER typoDiego Biurrun2006-07-11
| | | | Originally committed as revision 5708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-10
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Not every 64 bit SPARC is an UltraSPARC so optimize for v9 instead.Diego Biurrun2006-07-10
| | | | | | hint by Derek E. Lewis, dlewis_at_solnetworks net Originally committed as revision 5706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make libswscale build system similar to the libav* oneLuca Abeni2006-07-10
| | | | Originally committed as revision 18994 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale