- 19 Apr, 2015 7 commits
-
-
Vittorio Giovara authored
Inspired by a patch from Ferdinand Oeinck <ferdo@demon.nl>. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
In preparation for multithreaded decoding.
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
This applies to every library where performance is not critical.
-
Vittorio Giovara authored
And deprecate av_dlog macro.
-
- 18 Apr, 2015 1 commit
-
-
Thomas Guillem authored
CC: libav-stable@libav.org Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 15 Apr, 2015 4 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Luca Barbato authored
-
Luca Barbato authored
-
- 14 Apr, 2015 5 commits
-
-
Stephen Hutchinson authored
The AVSC_API changes in the new headers mean that the 2.6 alphas are just as incompatible as 2.5 is. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Stephen Hutchinson authored
In order to safely exit when the user tries to use AviSynth 2.5, the continue_on_fail value for 2.6's functions need to be set to 1. Otherwise, the library loader fails before the 'upgrade to 2.6' log message appears. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
wm4 authored
They seem to sometimes trigger with old AVI files. They are just confusing, do not help anyone, and use sloppy language. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
wm4 authored
This is optional, but ensures that linking with -Wl,--as-needed does not drop the library containing the MMAL VC driver. The driver normally "registers" itself in the library constructor, but since no symbols are explicitly referenced, the linker could remove it with --as-needed enabled. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
wm4 authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 13 Apr, 2015 1 commit
-
-
Vittorio Giovara authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 12 Apr, 2015 2 commits
-
-
Himangi Saraogi authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Himangi Saraogi authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 11 Apr, 2015 2 commits
-
-
James Almer authored
Based on code from libavcodec/libx264.c Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Michael Kostylev authored
-
- 10 Apr, 2015 1 commit
-
-
Martin Storsjö authored
These headers can't be included in any arbitrary order. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 09 Apr, 2015 8 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
Also reshuffle headers into canonical order where appropriate.
-
Anders Nystrom authored
Handle error return from ff_listen_bind without leaking file descriptors. Signed-off-by: Anders Nystrom <anders.nystrom@southpole.se> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Ferdinand Oeinck authored
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
Although it's not allowed to use only allows 'nclc' in ISOM files, there are samples that do not always respect this rule. This change prevents atom overread and a spurious color range initialization. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
-
- 08 Apr, 2015 2 commits
-
-
Diego Biurrun authored
-
wm4 authored
Generally, libavformat exports cover art pictures as video streams with 1 packet and AV_DISPOSITION_ATTACHED_PIC set. Only matroskadec exported it as attachment with codec_id set to AV_CODEC_ID_MJPEG. Obviously, this should be consistent, so change the Matroska demuxer to export a AV_DISPOSITION_ATTACHED_PIC pseudo video stream. Matroska muxing is probably incorrect too. I know that it can create broken files with an audio track and just 1 video frame when e.g. remuxing mp3 with APIC to mkv. But for now this commit does not change anything about muxing, and also continues to write attachments with AV_CODEC_ID_MJPEG should the muxer application have special knowledge that the Matroska is broken in this way. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 07 Apr, 2015 1 commit
-
-
Luca Barbato authored
And use it in libavformat. Based on a similar patch by Stefano Sabatini <stefasab@gmail.com>.
-
- 06 Apr, 2015 1 commit
-
-
Luca Barbato authored
The strptime implementation is supposed to support whitespace and %T.
-
- 05 Apr, 2015 5 commits
-
-
Anton Khirnov authored
They are no longer initialized in ff_h264_decode_init() since 43fd3dd8, so svq3 needs to initialize the manually. Fixes svq3 decoding, broken since 43fd3dd8.
-
Martin Storsjö authored
The previous documentation was very vague and almost misleading. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Anton Khirnov authored
The generic code copies the main context's private data to all the others. However that is quite dangerous, as it might end up copying some pointers that are or will become invalid. Since everything we actually need will be copied later in update_thread_context(), it's safest to zero the private data in init_thread_copy(), so it works the same way as init for the main context.
-
Anton Khirnov authored
-