- 23 Oct, 2016 2 commits
-
-
Matt Oliver authored
Further simplifications by Martin Storsjö, to minimize the diff. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Instead use our own struct, which we already use when using gcrypt and gnutls. In OpenSSL 1.1, the DH struct has been made opaque. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 22 Oct, 2016 4 commits
-
-
Diego Biurrun authored
sigaction is not defined in standards as a struct starting with another struct. Some *BSD variants do however, resulting in a warning from the zero initialization, which this change eliminates. This partially reverts a92be9b8.
-
Alexandra Hájková authored
-
Pierre Edouard Lepere authored
Initially written by Pierre Edouard Lepere <Pierre-Edouard.Lepere@insa-rennes.fr>, extended by James Almer <jamrial@gmail.com>. Signed-off-by: Alexandra Hájková <alexandra@khirnov.net>
-
Diego Biurrun authored
-
- 21 Oct, 2016 6 commits
-
-
Vittorio Giovara authored
For 'nclx', the latest edition of the standard switched from JPEG XR to 23001-8, which matches the current order of our entries. Bounds are preserved as a sanity check. For 'nclc', qtff edition 2016-09-13 introduced a few new entries. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
-
Anton Khirnov authored
It didn't take into account the new pattern used for bitstream filters and protocols.
-
Anton Khirnov authored
-
Anton Khirnov authored
Those values are decoder-independent and are also use by the VA-API encoder.
-
Anton Khirnov authored
Avoids superfluous error message spam after 8e2ea691
-
- 19 Oct, 2016 3 commits
-
-
Diego Biurrun authored
Its single forward declaration can be moved to the only place it is used, like is done for all other dsp init files.
-
Diego Biurrun authored
-
Diego Biurrun authored
libavcodec/x86/videodsp.asm:128: warning: signed dword value exceeds bounds
-
- 18 Oct, 2016 4 commits
-
-
Luca Barbato authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Martin Storsjö authored
x29 (FP) is a callee saved register and should be restored on return. Instead of backing up x29 and restoring it here, back up sp in a register that we are allowed to overwrite. This fixes crashes in checkasm on aarch64 since f1b3e131. For some reason, gcc builds didn't crash, but clang builds do. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Diego Biurrun authored
-
Michael Niedermayer authored
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 17 Oct, 2016 7 commits
-
-
Diego Biurrun authored
The variable needs to be reset for each subdirectory.
-
Diego Biurrun authored
-
Mark Thompson authored
Only works if packed headers are supported, where we can know the output before generating the first frame.
-
Mark Thompson authored
The include was changed correctly in 4abe3b04 but then mistakenly changed back by c359d624 (it's not just the NAL unit types which are used).
-
Diego Biurrun authored
This fixes many warnings of the sort warning: label alone on a line without a colon might be in error
-
Diego Biurrun authored
They only contain one line and will never contain more.
-
Diego Biurrun authored
And move the asm recipe to the top-level Makefile next to the other local pattern rules for .o files.
-
- 16 Oct, 2016 12 commits
-
-
Martin Storsjö authored
This, combined with clobbering the stack space prior to the call, increases the chances of finding cases where 32 bit parameters are erroneously treated as 64 bit. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Even if MAX_ARGS - 2 (for arm) or MAX_ARGS - 7 (for aarch64) parameters are passed on the stack to checkasm_checked_call, we actually only need to store MAX_ARGS - 4 (for arm) or MAX_ARGS - 8 (for aarch64) parameters on the stack when calling the tested function. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
This also fixes a minor bug introduced in the codecpar conversion, where the termination condition for extracting the extradata does not match the actual extradata setting code. As a result, the packet durations made up by lavf go back to their values before the codecpar conversion. That is of little consequence since that code should eventually be dropped completely.
-
Anton Khirnov authored
This is intended as a replacement for the 'split' function exported by some parsers.
-
Anton Khirnov authored
This code is independent from the decoder, so it makes more sense for it to to have its own header.
-
Anton Khirnov authored
This will be useful in the following commits.
-
Anton Khirnov authored
-
Anton Khirnov authored
This way they can be reused by other code without including the whole decoder-specific hevcdec.h Also, add the HEVC_ prefix to them, since similarly named values exist for H.264 as well and are sometimes used in the same code.
-
Anton Khirnov authored
This is more consistent with the rest of libav and frees up the hevc.h name for decoder-independent shared declarations.
-
James Almer authored
The spec says 9: Interlaced with bottom field displayed first and top field stored first 14: Interlaced with top field displayed first and bottom field stored first And avcodec.h states AV_FIELD_TB, //< Top coded first, bottom displayed first AV_FIELD_BT, //< Bottom coded first, top displayed first Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
This is consistent with what file_open() does. CC: libav-stable@libav.org
-
- 14 Oct, 2016 2 commits
-
-
Martin Storsjö authored
According to the public RTMP specification, these 4 bytes should be zero. librtmp in server mode assumes that the RTMPE (FP9) handshake is used if these bytes are nonzero. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
When acting as server, the server can include a "clientid" property in some status messages. But this should be a unique number identifying the client session, not identifying the server itself. In practice, omitting it works just as well as including this incorrect field. Signed-off-by: Martin Storsjö <martin@martin.st>
-