summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* RV3 and RV4 decoders set some deblocking coefs for each macroblock,Kostya Shishkov2008-10-20
| | | | | | so store them in the context and register a function to calculate them. Originally committed as revision 15651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark some of RV3/4 block types as having separate DC subblockKostya Shishkov2008-10-20
| | | | Originally committed as revision 15650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing sys/select.h #include, fixes compilation on FreeBSD 7.0.Alexis Ballier2008-10-20
| | | | | | patch by Alexis Ballier, alexis.ballier gmail com Originally committed as revision 15649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: Kill warning in bswap_32()Måns Rullgård2008-10-20
| | | | Originally committed as revision 15648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert typeof keyword into __typeof__; this is a gcc extension and the ↵David Conrad2008-10-19
| | | | | | former is not accepted in C99 without GNU extensions enabled (e.g. via -fasm). This fixes compilation on PPC. Originally committed as revision 27805 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* fix configure with libx264 disabledMåns Rullgård2008-10-19
| | | | Originally committed as revision 15647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the ugly and unnecessary require_cpp_condition() function.Stefano Sabatini2008-10-19
| | | | Originally committed as revision 15646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make more clear the error message for the libx264 version check.Stefano Sabatini2008-10-19
| | | | Originally committed as revision 15645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentDavid Conrad2008-10-19
| | | | Originally committed as revision 15644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Combine non-bitexact sectionsDavid Conrad2008-10-19
| | | | Originally committed as revision 15643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP3 loop filter is mmx2 not mmxDavid Conrad2008-10-19
| | | | Originally committed as revision 15642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for pts==dts on I/P frames in the presence of non low delay decoding andMichael Niedermayer2008-10-19
| | | | | | | discard these invalid timestamps. fixes issue171. Originally committed as revision 15641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move code setting delay and presentation_delayed a little up soMichael Niedermayer2008-10-18
| | | | | | that the variables are available sooner. Originally committed as revision 15640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix issue 68:Víctor Paesa2008-10-18
| | | | | | Warn that the forum look is no excuse from following the FFmpeg netiquette. Originally committed as revision 15639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Save some backslashes.Diego Biurrun2008-10-18
| | | | Originally committed as revision 15638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide more context to the opt_preset() error messages, printing theStefano Sabatini2008-10-18
| | | | | | name of the preset file where the error occurred. Originally committed as revision 15637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg abort if a preset file contains an invalid option orStefano Sabatini2008-10-18
| | | | | | argument. Originally committed as revision 15636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide more context for the error message issued when no preset fileStefano Sabatini2008-10-18
| | | | | | is found. Originally committed as revision 15635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Append read data onto the buffer instead of overwriting, this ensuresMichael Niedermayer2008-10-18
| | | | | | | that the whole buffer is available for seeking back. Fixes issue480 Originally committed as revision 15634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Nellymoser 8KHZ flv muxing fix, patch by Alexander Wichers development at ↵Alexander Wichers2008-10-18
| | | | | | wichersdot nu Originally committed as revision 15633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 8HZ -> 8KHZ, cosmetics patch by Alexander Wichers development at wichersdot nuAlexander Wichers2008-10-18
| | | | Originally committed as revision 15632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Assume mono if no other information for raw.Michael Niedermayer2008-10-18
| | | | | | Should fix issue687 Originally committed as revision 15631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX VP3 Loop FilterDavid Conrad2008-10-17
| | | | Originally committed as revision 15630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove -fasm CFLAGS check, it is no longer needed.Diego Biurrun2008-10-16
| | | | Originally committed as revision 15629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update DEPEND_CMD comment to better explain why we postprocess gcc output.Diego Biurrun2008-10-16
| | | | Originally committed as revision 15628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-16
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is not part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 synta. Originally committed as revision 27778 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Convert asm keyword into __asm__.Diego Pettenò2008-10-16
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CONFIG_* macros in cmdutils.c for consistency.Diego Pettenò2008-10-16
| | | | Originally committed as revision 15626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r15615: Enable AC-3 decoding regression tests.Carl Eugen Hoyos2008-10-15
| | | | | | | AC-3 decoding regression test fails with gcc 2.95.3 because of missing SSE support. Originally committed as revision 15625 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support absolute DOS paths for preset parametersRamiro Polla2008-10-15
| | | | Originally committed as revision 15624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump minor version after addition of FF_ARRAY_ELEMS macro.Benoit Fouet2008-10-15
| | | | Originally committed as revision 15623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use of new bitstream in vorbis_enc.c.Bartłomiej Wołowiec2008-10-15
| | | | | | Patch by Bartłomiej Wołowiec b wolowiec AT students mimuw edu pl Originally committed as revision 15622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix indentation after previous commit.Benoit Fouet2008-10-15
| | | | Originally committed as revision 15621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a flag to avoid calling vorbis_analysis_wrote twice with an empty buffer.Nicolas George2008-10-15
| | | | | | Patch by Nicolas George: name surname normalesup org Originally committed as revision 15620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a macro to get the number of elements in a table.Benoit Fouet2008-10-15
| | | | Originally committed as revision 15619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include zlib.h as it is needed for watermark support,Michael Niedermayer2008-10-14
| | | | | | patch by baptiste based on reverse engineering work by chrono. Originally committed as revision 15618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export svq1_packet_checksum() that is needed for svq3 watermarks,Michael Niedermayer2008-10-14
| | | | | | patch by baptiste that is based on reverse engineering work by chrono. Originally committed as revision 15617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add variable to hold the svq3 watermarking key,Michael Niedermayer2008-10-14
| | | | | | patch by baptiste that is based on reverse engineering by chrono. Originally committed as revision 15616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable AC-3 decoding regression tests.Carl Eugen Hoyos2008-10-13
| | | | Originally committed as revision 15615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Jason Garrett-Glaser as libx264 maintainer.Benoit Fouet2008-10-13
| | | | Originally committed as revision 15614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a space between frequencies and their units.Benoit Fouet2008-10-13
| | | | Originally committed as revision 15613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mem leak.Ralf Terdic2008-10-13
| | | | | | Patch by Ralf Terdic contact >AT< jswiff com Originally committed as revision 15612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some icc warnings by using enum PixelFormat instead of int where ↵Carl Eugen Hoyos2008-10-13
| | | | | | appropriate. Originally committed as revision 15611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp6dec: ensure we don't try to use a buffer with negative sizeAurelien Jacobs2008-10-13
| | | | | | | this should never happen in valid vp6 bitstream fix issue684 Originally committed as revision 15610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable FAST_UNALIGNED on ARM variants that support itMåns Rullgård2008-10-12
| | | | Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable FAST_UNALIGNED on PPCMåns Rullgård2008-10-12
| | | | Originally committed as revision 15608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Replace sed trickery in the gcc dependency generation command"Måns Rullgård2008-10-12
| | | | | | | This made dependencies entirely non-functional, and also the syntax is not supported by gcc 2.95. Originally committed as revision 15607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify PPC dcbzl checkMåns Rullgård2008-10-12
| | | | Originally committed as revision 15606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add preset options documentation strings.Stefano Sabatini2008-10-12
| | | | Originally committed as revision 15605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PIX_FMT_NONE instead of -1 in AVCodec.pix_fmts.Carl Eugen Hoyos2008-10-12
| | | | Originally committed as revision 15604 to svn://svn.ffmpeg.org/ffmpeg/trunk