- 04 May, 2016 1 commit
-
-
Vittorio Giovara authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 22 Mar, 2016 1 commit
-
-
Ganesh Ajjanagadde authored
The idea is to use ffmath.h for internal implementations of math functions. Currently, it is used for variants of libm functions, but is by no means limited to such things. Note that this is not exported; use lavu/mathematics for such purposes. Reviewed-by:
Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by:
Ganesh Ajjanagadde <gajjanag@gmail.com>
-
- 18 Feb, 2016 1 commit
-
-
Diego Biurrun authored
-
- 25 Dec, 2015 1 commit
-
-
Ganesh Ajjanagadde authored
Signed-off-by:
Ganesh Ajjanagadde <gajjanagadde@gmail.com>
-
- 27 Jul, 2015 3 commits
-
-
Vittorio Giovara authored
Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
Express bitfields more simply. Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
Convert doxygen to multiline and express bitfields more simply. Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 10 Jul, 2015 2 commits
-
-
Andreas Cadhalpun authored
flcoeffs2[pos] should be the log2 of flcoeffs1[pos]. flcoeffs1[0] can be 0 here, thus flcoeffs2[pos] gets set to -inf, causing problems further down. This seems to have been copied from imc_decode_level_coefficients in commit 4eb4bb3a without updating the position. Reviewed-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
Andreas Cadhalpun authored
flcoeffs2[pos] should be the log2 of flcoeffs1[pos]. flcoeffs1[0] can be 0 here, thus flcoeffs2[pos] gets set to -inf, causing problems further down. This seems to have been copied from imc_decode_level_coefficients in commit 4eb4bb3a without updating the position. Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 09 Jun, 2015 1 commit
-
-
Janne Grunau authored
Fixes stack buffer overflow errors detected by address sanitizer in fate-imc. CC: libav-stable@libav.org
-
- 19 Apr, 2015 1 commit
-
-
Vittorio Giovara authored
-
- 14 Feb, 2015 1 commit
-
-
Diego Biurrun authored
-
- 17 Dec, 2014 1 commit
-
-
Michael Niedermayer authored
Fixes use of uninitialized memory Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 04 Dec, 2014 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Christophe Gisquet authored
The "faulty" samples actually sound fine when ignoring this issue. For ticket #3886, more samples are decoded. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 20 Nov, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 15 Oct, 2014 1 commit
-
-
Vittorio Giovara authored
Reported-by:
Ruoyu <liangry@ucweb.com>
-
- 22 Aug, 2014 1 commit
-
-
Michael Niedermayer authored
Fixes buffer overread Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 21 Aug, 2014 1 commit
-
-
Christophe Gisquet authored
With huge sampling rates, the table derivation method does not converge fast enough. While fixing it using e.g. Newton-Rhapson-like methods (the curve is nicely convex) is possible, it is much simpler to reject these cases. The value of 96000 was arbitrarily chosen as a realistic value, though 1000000 would still work and converge. Fixes ticket #3868. Suggested-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 23 Jun, 2014 1 commit
-
-
Diego Biurrun authored
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 27 Sep, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes infinite loop Fixes Ticket2996 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 26 Aug, 2013 1 commit
-
-
Kostya Shishkov authored
-
- 09 Jul, 2013 2 commits
-
-
Luca Barbato authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Reviewed-by: Kostya Shishkov Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Luca Barbato authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
- 13 Mar, 2013 2 commits
-
-
Diego Biurrun authored
-
Clément Bœsch authored
Coccinelle profile used: @@ expression r, ctx, f, loglevel, str, flags; @@ -if ((r = ff_get_buffer(ctx, f, flags)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_get_buffer(ctx, f, flags)) < 0) + return r; @@ expression r, ctx, f, loglevel, str; @@ -if ((r = ff_reget_buffer(ctx, f)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_reget_buffer(ctx, f)) < 0) + return r; @@ expression r, ctx, f, loglevel, str, flags; @@ -if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) + return r; ...along with some manual patches for the remaining ones.
-
- 08 Mar, 2013 1 commit
-
-
Anton Khirnov authored
-
- 12 Feb, 2013 1 commit
-
-
Justin Ruggles authored
-
- 08 Feb, 2013 1 commit
-
-
Diego Biurrun authored
-
- 22 Jan, 2013 1 commit
-
-
Ronald S. Bultje authored
This makes wmadec/enc, twinvq and mpegaudiodec (i.e. mp2/mp3) independent of dsputil.
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- 25 Nov, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket1899 Based on code by ami_stuff Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Nov, 2012 1 commit
-
-
Michael Niedermayer authored
This fixes undefined behavior Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 11 Nov, 2012 1 commit
-
-
Justin Ruggles authored
Also reorder some other #include when applicable.
-
- 01 Nov, 2012 1 commit
-
-
Justin Ruggles authored
-
- 01 Oct, 2012 3 commits
-
-
Justin Ruggles authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- 09 Sep, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-