summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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
* Don't include byteswap.h anymore.Carl Eugen Hoyos2008-10-12
| | | | Originally committed as revision 15603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variablesDavid Conrad2008-10-12
| | | | Originally committed as revision 15602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace sed trickery in the gcc dependency generation command by use ofDiego Biurrun2008-10-12
| | | | | | the -MT option as suggested by Ramiro. Originally committed as revision 15601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix inconsistent indent.Stefano Sabatini2008-10-12
| | | | Originally committed as revision 15600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert the merger of LC_ALL declaration and export.Diego Biurrun2008-10-12
| | | | | | This part of the configure script might be run by non-POSIX shells. Originally committed as revision 15599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check requirement for libx264 version in configure usingStefano Sabatini2008-10-12
| | | | | | require_cpp_condition(). Originally committed as revision 15598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement CPP condition check support in configure.Stefano Sabatini2008-10-12
| | | | Originally committed as revision 15597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nellymoserenc: flush PutBitContext after use.Ramiro Polla2008-10-11
| | | | Originally committed as revision 15596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aac_parser: fix strict aliasing violationMåns Rullgård2008-10-11
| | | | Originally committed as revision 15595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only special-case absolute DOS paths on systems that support them.Ramiro Polla2008-10-10
| | | | Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make configure --help return 0.Stefano Sabatini2008-10-09
| | | | Originally committed as revision 15593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document libavfilter filters options in configure -h.Stefano Sabatini2008-10-09
| | | | Originally committed as revision 15592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_pixels_sse2, ~+12% performance compared to mmxBaptiste Coudurier2008-10-09
| | | | Originally committed as revision 15591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Limit discontinuity handling to containers that allow discontinuities.Michael Niedermayer2008-10-09
| | | | Originally committed as revision 15590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark some symbols in swscale.c as constant.Diego Pettenò2008-10-09
| | | | | | | These are only used in swscale_template.c (and thus don't need to be made extern), and can be declared as ASM constants. Originally committed as revision 27737 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Mark dither_2x2_{8,4} static to swscale.cDiego Pettenò2008-10-09
| | | | | | | These two tables are not used outside swscale.c even though they are declared also in yuv2rgb.c. Originally committed as revision 27736 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale