- 09 Dec, 2013 2 commits
-
-
Lenny Wang authored
Reviewed-by:
Wei Gao <highgod0401@gmail.com> Reviewed-by:
Stefano Sabatini <stefasab@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Vittorio Giovara authored
-
- 30 Nov, 2013 1 commit
-
-
Timothy Gu authored
Also the libavutil/ffversion.h will be installed. Rationale: * Applications might want to know FFmpeg's version besides the individual libraries'. * Avoids file name clash between FFmpeg's ./version.h and lib*/version.h when a library source file includes both and is compiled on an out-of-tree build. Fixes #1769. Signed-off-by:
Timothy Gu <timothygu99@gmail.com> Reviewed-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 26 Nov, 2013 1 commit
-
-
John Stebbins authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 22 Nov, 2013 1 commit
-
-
Stefano Sabatini authored
-
- 20 Nov, 2013 1 commit
-
-
Ben Boeckel authored
Signed-off-by:
Ben Boeckel <mathstuf@gmail.com> Reveiwed-by: wm4 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 14 Nov, 2013 4 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
We will likely want to add new fields to it in the future, so this is needed to avoid breaking ABI.
-
Anton Khirnov authored
Based on the code by Rémi Denis-Courmont <remi@remlab.net> from VLC.
-
- 04 Nov, 2013 2 commits
-
-
Jan Ekström authored
Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
Michael Niedermayer authored
fopen() on windows uses UTF-16, we use UTF-8 everywhere, this function bridges the gap by using avpriv_open() Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 31 Oct, 2013 1 commit
-
-
John Stebbins authored
This can be optionally disabled whith the "output_corrupt" flags option. When in "output_corrupt" mode, incomplete frames are signalled through AVFrame.flags FRAME_FLAG_INCOMPLETE_FRAME. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 27 Oct, 2013 3 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Marton Balint authored
This patch adds CODEC_CAP_DELAY support to avcodec_decode_subtitle2. For DVB teletext decoding, a single teletext packet can contain multiple teletext pages. In order to support that, the teletext decoder may buffer some pages. Signed-off-by:
Marton Balint <cus@passwd.hu> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
-
- 17 Oct, 2013 1 commit
-
-
Stefano Sabatini authored
The new type is compatible with AV_OPT_TYPE_INT64, but allows to specify channel layouts using the format accepted by av_get_channel_layout().
-
- 06 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
Suggested-by: Ronald S. Bultje Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 03 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
Reviewed-by:
Stefano Sabatini <stefasab@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
previously only codec_ids could be forced, which did not allow forcing a specific implementation like libopenjpeg vs jpeg2000. Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 28 Sep, 2013 1 commit
-
-
Anton Khirnov authored
-
- 21 Sep, 2013 1 commit
-
-
Kieran Kunhya authored
Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 19 Sep, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 18 Sep, 2013 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 17 Sep, 2013 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Luca Barbato authored
Also fix the typo in the last entry version.
-
- 16 Sep, 2013 1 commit
-
-
Luca Barbato authored
-
- 04 Sep, 2013 3 commits
-
-
Clément Bœsch authored
Sorry, I'm too lazy to fix the rest.
-
Clément Bœsch authored
See previous commit.
-
Clément Bœsch authored
The purpose of this commit is to make error management simpler and less error prone, just like av_free() which is safe with NULL.
-
- 28 Aug, 2013 1 commit
-
-
Stefano Sabatini authored
-
- 15 Aug, 2013 1 commit
-
-
Michael Niedermayer authored
This allows specifying more dither algorithms without using up flags and without ambiguities. Also initialize the new field based on the flags and use it. Note, improving the logic of the checks is left to subsequent commits, this here only switches from flags to enum. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 11 Aug, 2013 2 commits
-
-
Reimar Döffinger authored
Using VDPAU correctly means checking for preemption and possibly regenerating the context all the time. With the current API there is no context or other user-defined pointer and thus this in not possible during decoding unless using some hack like global variables. The need to reinitialize both surfaces and even function pointers makes handling preemption even more difficult. This patch introduces a new render2 function that gets both the AVCodecContext and AVFrame in addition, in both the user can store additional opaque data. This allows even advanced approaches like keeping a "generation counter" for the surfaces so they can be regenerated on the fly and efficiently. In addition, the function has a return value that will be passed through all the way instead of being silently ignored as for the current render function. Unfortunately the HWAccel API has no way of providing API/ABI compatibility, so a currently disallowed state (render pointer being NULL) is used to extend it. Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
Reimar Döffinger authored
Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 10 Aug, 2013 1 commit
-
-
Luca Barbato authored
Provide a clean way to manipulate packets.
-
- 05 Aug, 2013 3 commits
-
-
Rémi Denis-Courmont authored
The bitstream buffers are now private and freed by libavcodec. For backward compatibility, the hold bitstream buffer pointer is left NULL (applications were supposed to av_freep() it). Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Rémi Denis-Courmont authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Rémi Denis-Courmont authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 02 Aug, 2013 1 commit
-
-
Yusuke Nakamura authored
Set output_picture_number in H.264 parser. Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 23 Jul, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-