- 07 Dec, 2015 4 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
EOVERFLOW seems to be unavailable on certain platforms.
-
Ganesh Ajjanagadde authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Ganesh Ajjanagadde authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 06 Dec, 2015 18 commits
-
-
Anton Khirnov authored
Checking the codec context parameters to find out this information is far too unreliable to be useful, so it is safer to assume B-frames are always present.
-
Anton Khirnov authored
Also, stop using AVCodecContext for storing the stream parameters.
-
Anton Khirnov authored
Do not access the encoder options, since it makes no sense when the AVStream codec context is not the encoding context.
-
Anton Khirnov authored
Do not access the encoder options, since it makes no sense when the AVStream codec context is not the encoding context.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Deprecate AVCodecContext.vbv_delay
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
This is similar to what is done for AVStream.
-
Anton Khirnov authored
-
Anton Khirnov authored
Fall back to maximum DPB size if the level is unknown. This should be more spec-compliant and does not depend on the caller setting has_b_frames before opening the decoder. The old behaviour, when the delay is supplied by the caller setting has_b_frames, can still be obtained by setting strict_std_compliance below normal.
-
Anton Khirnov authored
That is a more appropriate place for it, since it is not allowed to change between slices.
-
Anton Khirnov authored
According to the spec, the reference list for a slice should be constructed by first generating an initial (what we now call "default") reference list and then optionally applying modifications to it. Our code has an optimization where the initial reference list is constructed for the first inter slice and then rebuilt for other slices if needed. This, however, adds complexity to the code, requires an extra 2.5kB array in the codec context and there is no reason to think that it has any positive effect on performance. Therefore, simplify the code by generating the reference list from scratch for each slice.
-
- 05 Dec, 2015 11 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Currently, the frame stride is passed in bytes, while the MC buffer size is in int16_t elements, This can be confusing, so pass both strides in bytes.
-
Anton Khirnov authored
This should allow for more efficient SIMD.
-
Anton Khirnov authored
This should allow for more efficient SIMD.
-
Anton Khirnov authored
This should allow for more efficient SIMD. Keep the C versions as they are now, to allow the compiler to inline the interpolation coefficients.
-
Luca Barbato authored
Avoid the warning `-Wempty-body`.
-
Luca Barbato authored
The end-marked was typoed in f7edcac0
-
Luca Barbato authored
-
Luca Barbato authored
Bug-Id: 761
-
Luca Barbato authored
Unbreak make check.
-
- 03 Dec, 2015 1 commit
-
-
Martin Storsjö authored
This fixes builds with --disable-vda, which previously failed with undefined references to CVImageBuffer* and CVPixelBuffer* functions. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 02 Dec, 2015 5 commits
-
-
Kylie McClain authored
While pr is a valid POSIX.1 command, its usage in configure is a little borderline and is possible to replace it with printf. Bug-Id: 913 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
It amounts to about 1/2 of the warnings generated and does not help spotting anything useful.
-
Michael Niedermayer authored
Avoid false positives while syncing. Bug-Id: ffmpeg/4086 Bug-Id: 879 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
avio_tell returns an int64_t.
-
- 30 Nov, 2015 1 commit
-
-
Vittorio Giovara authored
Bug-Id: CID 1339818
-