- 19 Aug, 2014 4 commits
-
-
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 9 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.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
It more accurately describes what this function does
-
Felix Abecassis authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Martin Storsjö authored
The cur_*auth_type variables were set before the http_connect call prior to 6a463e7f - their sole purpose is to record the authentication type used to do the latest request, since parsing the http response sets the new type in the auth state. CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
-
Andrew Stone authored
Originally, AVFormatContext and a metadata dict were provided to ff_vorbis_comment(), but this presented issues if an AVStream was being updated or the metadata on AVFormatContext wasn't actually being updated. To remedy this, ff_vorbis_stream_comment() explicitly updates a stream's metadata and sets any necessary flags. ff_vorbis_comment() does not modify any flags, and any calls to it that update AVFormatContext's metadata (just a single call) must also update AVFormatContext.event_flags after detecting any metadata changes to the provided dictionary, as signaled by a positive return value. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-