- 01 Mar, 2014 1 commit
-
-
Michael Niedermayer authored
The new function has the ability to allocate the structure, allowing it to grow without needing major bumps Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 15 Feb, 2014 1 commit
-
-
Tim Walker authored
-
- 29 Jan, 2014 1 commit
-
-
John Stebbins authored
Amplification of quiet sounds is enhanced. Inspired by gbooker's A52Decoder.
-
- 19 Jan, 2014 3 commits
-
-
Tim Walker authored
Values 0-2 are reserved, 3 (-1.5dB) should be used instead.
-
Tim Walker authored
-
Tim Walker authored
Deduplicates some code.
-
- 05 Jan, 2014 2 commits
-
-
Tim Walker authored
-
Tim Walker authored
-
- 09 Dec, 2013 1 commit
-
-
John Stebbins authored
The a52 spec suggests that "partial compression" should scale the drc value in this manner. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 25 Nov, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes out of array read Fixes assertion failure Fixes asan_static-oob_16431c0_8036_rio_bravo_mono_64_spx.ac3 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 23 Nov, 2013 2 commits
-
-
Tim Walker authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 22 Nov, 2013 2 commits
-
-
Tim Walker authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Tim Walker authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 19 Nov, 2013 1 commit
-
-
Tim Walker authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 28 Oct, 2013 2 commits
-
-
Michael Niedermayer authored
Fixes corrupt data errors when downmixing in the AC-3 decoder. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Justin Ruggles <justin.ruggles@gmail.com> CC:libav-stable@libav.org
-
Anton Khirnov authored
Just crccheck prints a warning, crccheck+explode returns an error. Also document this behavior.
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 27 Aug, 2013 2 commits
-
-
Luca Barbato authored
-
Luca Barbato authored
-
- 17 Jul, 2013 1 commit
-
-
Christophe Gisquet authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 15 Jul, 2013 1 commit
-
-
Martin Storsjö authored
This was handled properly in the normal return case at the end of the function, but not in this special case. Returning a value larger than the input packet size can cause problems for certain library users. Returning the actual input buffer size unconditionally, since it is not guaranteed that frame_size is set to a sensible value at this point. Cc: libav-stable@libav.org Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 13 Jul, 2013 2 commits
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
If the channel mapping map multiple output channels to one input channel, we should only increment the actual pointer once. Cc: libav-stable@libav.org Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 18 May, 2013 1 commit
-
-
Christophe Gisquet authored
It was previously declared as int. Does not change fate results for x86. Conflicts: libavcodec/ppc/fmtconvert_altivec.c Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 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
-
- 01 Mar, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 23 Feb, 2013 1 commit
-
-
Justin Ruggles authored
Damaged frames can lead to a mismatch, which can cause a segfault due to using an incorrect channel mapping. CC:libav-stable@libav.org
-
- 12 Feb, 2013 1 commit
-
-
Justin Ruggles authored
-
- 21 Jan, 2013 1 commit
-
-
Michael Niedermayer authored
Use a noise range of -0.707 to 0.707 instead of -0.5 to 0.5 Based on patch by: Mathias Rauen <madshi@gmail.com> and commit by Justin Ruggles (04ea5491) Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 20 Jan, 2013 1 commit
-
-
Mathias Rauen authored
Use a noise range of -0.707 to 0.707 instead of -0.5 to 0.5 Signed-off-by:
Justin Ruggles <justin.ruggles@gmail.com>
-
- 16 Jan, 2013 1 commit
-
-
Justin Ruggles authored
Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 04 Jan, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 20 Dec, 2012 1 commit
-
-
Diego Biurrun authored
-
- 17 Dec, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes decoding regression Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 12 Dec, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 10 Dec, 2012 1 commit
-
-
Michael Niedermayer authored
This fixes potentially exploitable out of array writes. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 09 Dec, 2012 1 commit
-
-
Mans Rullgard authored
-