- 21 Aug, 2014 3 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
The asserts check struct members that are not referenced in guess_mv() and one of them fails to compile.
-
Diego Biurrun authored
-
- 19 Aug, 2014 7 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
This avoids an unused variable warning with MSVC since the variable is only used in a debug mode printf statement.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
The defines were added long ago when MinGW still lacked them.
-
Diego Biurrun authored
This is cleaner and avoids an uninitialized variable warning with MSVC.
-
- 18 Aug, 2014 7 commits
-
-
Christophe Gisquet authored
The packet buffer allocation considers the alpha channel as DCT-coded, while it is actually run-coded and thus requires a larger buffer. CC: libav-stable@libav.org Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Christophe Gisquet authored
The buffer allocation may be incorrect (e.g. with an alpha plane), and currently causes the buffer to be set to NULL by init_put_bits, causing a crash later on. So, detect that situation, and if detected, reallocate the buffer and ask for a sample that shows the problem. CC: libav-stable@libav.org Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Christophe Gisquet authored
If the allocated size, despite best efforts, is too small, exit with the appropriate error. CC: libav-stable@libav.org Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Christophe Gisquet authored
Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Diego Elio Pettenò authored
The LZMA support is a semi-official extension supported by libtiff 4.0.0 and later. Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Gabriel Dume authored
A function declaration is the prototype. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Reinhard Tartler authored
-
- 17 Aug, 2014 4 commits
-
-
Luca Barbato authored
Update mxf_set_audio_pts to use the container-provided information. The UL is marked as "to be changed in the future", but the current samples in the wild do use it.
-
Luca Barbato authored
-
Luca Barbato authored
And use it to print non-parsed ULs.
-
Luca Barbato authored
Leftover from fbc0b865. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 15 Aug, 2014 9 commits
-
-
Luca Barbato authored
And convert it to Markdown.
-
Gabriel Dume authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Gabriel Dume authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
The file does not require atomic.h. Also kills function redefinition warnings.
-
Diego Biurrun authored
This avoids annoying warnings about unused functions. The compatibility wrapper is designed to provide a complete (stub) API, so some functions being unused by some files is natural and no reason for a warning.
-
Diego Biurrun authored
Also fixes an unused variable warning with zlib disabled.
-
- 14 Aug, 2014 7 commits
-
-
John Stebbins authored
ff_MPV_common_init requires the frame dimensions which get parsed in h261_decode_picture_header.
-
John Stebbins authored
ff_MPV_common_init requires the frame dimensions which get parsed in *_decode_picture_header.
-
John Stebbins authored
One step in untangling the mpegvideo code and fixing some problems in the order that initialization is being done in h263dec and h261dec.
-
Nidhi Makhijani authored
Also fix some comment typos. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Nidhi Makhijani authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
-
Edgar Hucek authored
Fixes VAAPI decoding artefacts. CC:libav-stable@libav.org Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 13 Aug, 2014 3 commits
-
-
Luca Barbato authored
Prevent out of array writes. Similar to what Michael Niedermayer did to address the same issue. Bug-Id: CVE-2014-2263 CC: libav-stable@libav.org Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
-
Anton Khirnov authored
It is basically a wrapper around av_get_audio_frame_duration(), with a fallback to AVCodecContext.frame_size. However, that field is set only when the stream codec context is actually used for encoding or decoding, which is discouraged. For muxing, it is generally the responsibility of the caller to set the packet duration. For demuxing, if the duration is not stored at the container level, it should be set by the parser. Therefore, removing the frame_size fallback should not break any important case.
-