- Mar 30, 2011
-
-
Michael Niedermayer authored
This reverts commit cb48e245. Reason being we like pressing "q" to quit ffmpeg. Conflicts: ffmpeg.c Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Gwenole Beauchesne authored
-
Gwenole Beauchesne authored
-
Gwenole Beauchesne authored
-
- Mar 29, 2011
-
-
Mans Rullgard authored
Stripping is generally best left to package management tools, and since unstripped copies are kept in the build tree, any arguments about saving space (no matter how insignificant) are void. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Gwenole Beauchesne authored
-
Gwenole Beauchesne authored
Signed-off-by:
Philip Langdale <philipl@overt.org>
-
- Mar 28, 2011
-
-
Stefano Sabatini authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- Mar 27, 2011
-
-
Brad authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- Mar 26, 2011
-
-
Philip Langdale authored
This reverts commit e44073ca.
-
Philip Langdale authored
As previously discussed, the CrystalHD hardware returns exceptionally useless information about interlaced h.264 content - to the extent that it's not possible to distinguish MBAFF and PAFF content until it's too late. This change introduces use of the h264_parser to help bridge the gap; it can indicate if the input data is PAFF fields or not. With this clarity, some of heuristics can be removed from the code, making this less convoluted. Finally, I found an MBAFF clip that acts like non h.264 content so I had to make allowances for that. Note that I still cannot distinguish between two forms of PAFF, where the hardware either returns individual fields or a field-pair. It's not clear that there's even a spec relevant difference between the two forms, as opposed to hardware ideosyncracies.
-
- Mar 25, 2011
-
-
Mans Rullgard authored
This fixes some library tests when --as-needed is in effect. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Stefano Sabatini authored
-
Stefano Sabatini authored
The address recently changed from ffmpeg-user@mplayerhq.hu to ffmpeg-user@ffmpeg.org.
-
- Mar 24, 2011
-
-
Diego Elio Pettenò authored
When -std=c99 is used, GCC defines __STRICT_ANSI__ to hide non-ANSI interfaces; on MinGW32, when this macro is defined, some functions that are part of POSIX but not of Windows APIs are disabled, including strcasecmp(). Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Mans Rullgard authored
This moves the check for --as-needed linker support before all library tests, ensuring consistent behaviour between the checks and the actual link step. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Martin Storsjö authored
The normal dependency tracking system disables them just fine.
-
Martin Storsjö authored
It is automatically disabled on both mingw and dos due to the lack of fork.
-
Martin Storsjö authored
-
- Mar 23, 2011
-
-
Mans Rullgard authored
ICC lies about the version of gcc it emulates, which results in unsupported attributes sometimes being used. The warning is an annoyance and should be disabled. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This fixes shared library versioning after 3dd851c4. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Martin Storsjö authored
The correct machine name for dlltool is arm-wince. Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- Mar 22, 2011
-
-
Dave Yeo authored
Conio.h is a non-standard header and may not have kbhit() prototyped. This fixes compile on OS/2 where the EMX version (we're using a fork) of conio.h only has getch() and getche(). Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Mar 21, 2011
-
-
Martin Storsjö authored
This is required for the generated .lib file to actually be usable by MSVC. Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
That fixes .lib creation for the win64 target.
-
- Mar 20, 2011
-
-
Panagiotis H.M. Issaris authored
Remove usage of tcgetattr and tcsetattr to modify terminal parameters, and rely on ctrl-c to stop instead of pressing 'q'. On systems with conio.h, keep the old behavior. Changing the terminal settings causes problems if multiple instances are running asynchronously on the same terminal, such as during a parallel FATE run, or if the process crashes before restoring the terminal. In both cases, the terminal state is messed up requiring a manual reset. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
These windows do not really belong in fft/mdct files and were easily confused with the similarly named tables used by rdft. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Mar 19, 2011
-
-
Mans Rullgard authored
This makes existing pkg-config uses as well as the libsdl checks use the new pkg-config helper functions, which should be more robust against broken systems. Signed-off-by:
Mans Rullgard <mans@mansr.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Mans Rullgard authored
This adds helper functions for checking packages with pkg-config and managing the associated flags. Note that pkg-config use is still discouraged due to widespread poor practices resulting in broken flags in many situations. A few badly designed packages require flags only obtainable using pkg-config, and these functions are intended for those cases. Signed-off-by:
Mans Rullgard <mans@mansr.com> (cherry picked from commit 3f8040db) Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Mans Rullgard authored
This makes it possible to pass a space-separated list of functions to check_func_headers and check_lib2. If any function is missing, none are enabled as available, so this should only be used for all-or-nothing sets, i.e. groups in which none will be used if any one is missing. Signed-off-by:
Mans Rullgard <mans@mansr.com> (cherry picked from commit edaf1ae2) Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Luca Barbato authored
This way building ffmpeg on mingw won't require windows specific tools
-
Luca Barbato authored
This avoids the main/SDL_main declaration clash caused by SDL on Windows and other platforms.
-
Mans Rullgard authored
Since initially committed in 2004, this codec has only been touched for maintenanance. Functionally, it contains no novel ideas and its intended audience is better served by existing mature codecs. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Mar 18, 2011
-
-
Konstantin Pavlov authored
This fixes ugliness when configure outputs its (empty) results on HPUX (maybe some other UNIXes too): Enabled indevs: pr: -- empty file Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Mar 17, 2011
-
-
Michael Niedermayer authored
This reverts commit 070c5d0f.
-
Michael Niedermayer authored
This reverts commit 29ba0911.
-
Michael Niedermayer authored
This reverts commit a03be6e1.
-
- Mar 16, 2011
-
-
Sean McGovern authored
Avoids the linker warning: ld: warning: -read_only_relocs cannot be used with x86_64 Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Janne Grunau authored
-