- 02 Jul, 2012 2 commits
-
-
Clément Bœsch authored
Enable it by default with FATE. limitation: not random, and not supported with realloc.
-
Michael Niedermayer authored
Fixes Ticket1481 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 30 Jun, 2012 1 commit
-
-
Martin Storsjö authored
We need to include winsock2.h here, to make sure we have the real pollfd struct definition, if one exists, before defining the fallback poll function. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 29 Jun, 2012 1 commit
-
-
Ronald S. Bultje authored
It is included for the open/read/write/close functions. On MSVC, where this header does not exist, the same functions are provided by io.h, which is already included. On windows, these functions are provided by io.h. Make sure io.h is included if it exists, regardless of the setmode function. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 27 Jun, 2012 3 commits
-
-
Martin Storsjö authored
Based on an original patch by Stephen D'Angelo <SDAngelo@evertz.com>. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Ronald S. Bultje authored
Apparently, some build environments require dxva.h even for dxva2, while others lack this header entirely. Including it conditionally allows building in both cases. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 26 Jun, 2012 2 commits
-
-
Mans Rullgard authored
This adds a fallback for cbrtf() using powf(x, 1/3). Since powf() with a non-integer exponent requires a non-negative base, special handling of negative inputs is needed. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Ronald S. Bultje authored
Apparently this include is needed on some systems for building the poll fallback (for the timeval struct for select?), but it isn't available on all systems. Thus only include it if it exists. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 24 Jun, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: uau Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 22 Jun, 2012 1 commit
-
-
Mans Rullgard authored
This function implements a delay using the first available of the following functions: - nanosleep() - usleep() - Sleep() (Windows) The conditional #includes in time.c are simplified by including unistd.h and windows.h whenever they are available rather than having these lines triggered by specific functions. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 21 Jun, 2012 2 commits
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Janne Grunau authored
Add -D_XOPEN_SOURCE=600 to host cflags to make the constants in math.h available. Include math.h where necessary and remove redundant M_PI defines.
-
- 20 Jun, 2012 1 commit
-
-
Mans Rullgard authored
Based on patch by Ronald S. Bultje. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 19 Jun, 2012 2 commits
-
-
Carl Eugen Hoyos authored
Found, analysed and tested by trac user Jamal. Fixes ticket #1465.
-
Ronald S. Bultje authored
The check uses check_func_header, since this function is conditionally available depending on the targeted MSVCRT version. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 18 Jun, 2012 2 commits
-
-
Martin Storsjö authored
The library is 3-clause BSD licensed. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Only these three libraries were out of order, the rest was already neatly sorted. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 17 Jun, 2012 2 commits
-
-
Samuel Pitoiset authored
This adds two protocols, but one of them is an internal implementation detail just used as an abstraction layer/generalization in the code. The RTMPT protocol implementation uses rtmphttp:// as an alternative to the tcp:// protocol. This allows moving most of the lower level logic out from the higher level generic rtmp code. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Pavel Koshevoy authored
Add atempo audio filter for adjusting audio tempo without affecting pitch. This filter implements WSOLA algorithm with fast cross correlation calculation in frequency domain. Signed-off-by:
Pavel Koshevoy <pavel@homestead.aragog.com> Signed-off-by:
Stefano Sabatini <stefasab@gmail.com>
-
- 16 Jun, 2012 1 commit
-
-
Ronald S. Bultje authored
Defining restrict results - for some compilers - in changing other uses of the restrict keyword also, e.g. __declspec(restrict) gets changed to __declspec(__restrict) on MSVC. This causes compilation failures. Therefore, using a private namespace macro instead is more reliable and robust. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 15 Jun, 2012 1 commit
-
-
Paul B Mahol authored
It is generally bad idea even if codecs use same code. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 14 Jun, 2012 2 commits
-
-
David Hill authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
David Hill authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Jun, 2012 3 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Sean McGovern authored
Fixes Bugzilla #279. Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 11 Jun, 2012 1 commit
-
-
Nedeljko Babic authored
AMR NB and WB decoders are optimized for MIPS architecture. Appropriate Makefiles are changed accordingly. Cnfigure script is changed in order to support optimizations. Optimizations are enabled by default when compiling is done for mips architecture. Appropriate cflags are automatically set. Support for several mips CPUs is added in configure script. New ffmpeg options are added for disabling optimizations. The FFMPEG option --disable-mipsfpu disables MIPS floating point optimizations. The FFMPEG option --disable-mips32r2 disables MIPS32R2 optimizations. The FFMPEG option --disable-mipsdspr1 disables MIPS DSP ASE R1 optimizations. The FFMPEG option --disable-mipsdspr2 disables MIPS DSP ASE R2 optimizations. Signed-off-by:
Nedeljko Babic <nbabic@mips.com> Reviewed-by:
Vitor Sessak <vitor1001@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 10 Jun, 2012 1 commit
-
-
Kostya Shishkov authored
-
- 09 Jun, 2012 1 commit
-
-
James Zern authored
defines 'max-intra-rate' in line with vpxenc param Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 08 Jun, 2012 3 commits
-
-
Carl Eugen Hoyos authored
Found and analysed by trac user Jamal. Fixes the remaining part of ticket #1428.
-
Carl Eugen Hoyos authored
Found, analysed and tested by trac user Jamal. Fixes part of ticket #1428.
-
Carl Eugen Hoyos authored
Found, analysed and tested by trac user Jamal. Fixes part of ticket #1428.
-
- 04 Jun, 2012 1 commit
-
-
Clément Bœsch authored
Based on the shotdetect algorithm (http://shotdetect.nonutc.fr/ by Johan MATHE johan.mathe tremplin-utc.net).
-
- 03 Jun, 2012 1 commit
-
-
Mans Rullgard authored
This allows creating random configurations which is useful for testing purposes. Signed-off-by:
Mans Rullgard <mans@mansr.com> Conflicts: configure Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 Jun, 2012 2 commits
-
-
Jindrich Makovicka authored
This adds the avoption mpegts_flags and converts the existing resend_headers option into a flag, keeping the old option as fallback for now. Signed-off-by:
Jindrich Makovicka <makovick@gmail.com> Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Jindrich Makovicka authored
This removes the dependency on adts.c internals, and simplifies adding other packetization formats. Signed-off-by:
Jindrich Makovicka <makovick@gmail.com> Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 01 Jun, 2012 2 commits
-
-
Carl Eugen Hoyos authored
They are needed since 16e25ef3.
-
Carl Eugen Hoyos authored
Do not disable ffmpeg with --disable-everything.
-
- 29 May, 2012 1 commit
-
-
Anton Khirnov authored
This is done by automatically inserting a setpts filter.
-