- 02 Oct, 2016 27 commits
-
-
Mark Thompson authored
This is required for 10-bit surfaces.
-
Mark Thompson authored
A decoder may need this to be set correctly to output frames in the right order.
-
Mark Thompson authored
This was not observed earlier because the only syntax element which it normally misses with the current setup is slice_qp_delta, but that is always going to be zero (in IDR frames QP isn't varied on the slice) which will always exp-golomb code as a single 1 bit. The immediately following part is the byte alignment, which is always a 1 bit followed by 0s which are ignored, so as long as the bitstream is never aligned at that point we will never notice because the only difference is that an ignored bit is a 1 instead of a 0.
-
Mark Thompson authored
-
Mark Thompson authored
-
Mark Thompson authored
This was always too late; several fields related to it have been incorrectly zero since the encoder was added.
-
Anton Khirnov authored
It has been replaced by C11 stdatomic.h and is now unused.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Current code uses a plain int in a racy way, which is UB.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Adapted from the code by Rémi Denis-Courmont from VLC
-
Anton Khirnov authored
Adapted from the code by Rémi Denis-Courmont from VLC
-
Anton Khirnov authored
Adapted from the code by Rémi Denis-Courmont from VLC
-
Anton Khirnov authored
Adapted from the code by Rémi Denis-Courmont from VLC
-
Anton Khirnov authored
Adapted from the code by Rémi Denis-Courmont from VLC
-
Anton Khirnov authored
Since this is a C11 feature, it requires -std=c11. Not actually used for anything yet, that will be added in the following commits.
-
Luca Barbato authored
Confirmed to work by checkasm.
-
Luca Barbato authored
-
Alexandra Hájková authored
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Anton Khirnov authored
Errors during decoding are currently considered non-fatal and do not terminate transcoding, so even if parts of the data are corrupted, the rest may be decodable. However, that should apply only to the actual decoding calls, not to the failures elsewhere (e.g. configuring filters).
-
Anton Khirnov authored
The filtergraph's existence is used in several places to mean that the filtergraph is fully configured. This causes problems if it's allocated, but the initialization fails (e.g. if a non-existent filter is specified).
-
Anton Khirnov authored
-
Anton Khirnov authored
Bug-Id: 966
-
Anton Khirnov authored
The Intel binary iHD driver does not support the VASurfaceAttribMemoryType, so surface allocation will fail when using it.
-
- 30 Sep, 2016 7 commits
-
-
Justin Ruggles authored
Adds a wrapper function for downmixing which detects channel count changes and updates the selected downmix function accordingly. Simplification and porting to current x86inc infrastructure by Diego Biurrun. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Justin Ruggles authored
This is about 200% faster for in-decoder downmixing of 5.0 and 5.1 content. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Justin Ruggles authored
Also use (float **) instead of (float (*)[2]). This matches the matrix layout in libavresample so we can reuse assembly code between the two. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Anton Khirnov authored
-
Anton Khirnov authored
Move the doxy above the definition, change the value itself to the (1 << n) pattern, which is more readable for flags.
-
Anton Khirnov authored
It is supposed to be a flag. The only currently defined value is AVIO_SEEKABLE_NORMAL, but other ones may be added in the future. However all the current lavf code treats this field as a bool (mainly for historical reasons). Change all those cases to properly check for AVIO_SEEKABLE_NORMAL.
-
Hendrik Leppkes authored
This fixes decoding corruption on 64 bit windows. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 29 Sep, 2016 6 commits
-
-
Diego Biurrun authored
This avoids SIMD-optimized functions having to sign-extend their stride argument manually to be able to do pointer arithmetic.
-
Diego Biurrun authored
ptrdiff_t is the correct type for array strides and similar.
-
Diego Biurrun authored
ptrdiff_t is the correct type for array strides and similar.
-
Diego Biurrun authored
ptrdiff_t is the correct type for array strides and similar.
-
Diego Biurrun authored
This avoids SIMD-optimized functions having to sign-extend their stride argument manually to be able to do pointer arithmetic.
-
Diego Biurrun authored
ptrdiff_t is the correct type for array strides and similar.
-