- 19 Nov, 2013 1 commit
-
-
Tim Walker authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 20 Sep, 2013 1 commit
-
-
Martin Storsjö authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 22 Jul, 2013 2 commits
-
-
Ben Avison authored
This does most of the work formerly carried out by the static function qmf_32_subbands() in dcadec.c. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Ben Avison authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 17 Jul, 2013 1 commit
-
-
Christophe Gisquet authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 12 Jul, 2013 2 commits
-
-
Luca Barbato authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
Luca Barbato authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
- 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>
-
- 24 Apr, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 27 Mar, 2013 1 commit
-
-
Diego Biurrun authored
This makes the DCA parser and decoder independent.
-
- 15 Mar, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 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
-
- 25 Feb, 2013 1 commit
-
-
Diego Biurrun authored
-
- 12 Feb, 2013 1 commit
-
-
Justin Ruggles authored
-
- 08 Feb, 2013 1 commit
-
-
Diego Biurrun authored
-
- 14 Dec, 2012 1 commit
-
-
Michael Niedermayer authored
Fix null pointer dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- 02 Dec, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 01 Dec, 2012 1 commit
-
-
Michael Niedermayer authored
Fix out of array accesses Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 27 Nov, 2012 1 commit
-
-
Michael Niedermayer authored
When the extra rear channel is present but unused, the s->channel_order_tab[] value for that channel is -1. The QMF can be skipped for the extra channel, and doing so avoids an out-of-array read on s->samples_chanptr[]. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Justin Ruggles <justin.ruggles@gmail.com>
-
- 23 Nov, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Nov, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes out of array accesses 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
-
- 31 Oct, 2012 1 commit
-
-
Nick Brereton authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 29 Oct, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Oct, 2012 1 commit
-
-
Justin Ruggles authored
The output AVFrame buffer only has data for the downmix channels. Fixes a segfault when decoding dca with request_channels == 2.
-
- 01 Oct, 2012 2 commits
-
-
Justin Ruggles authored
-
Diego Biurrun authored
-
- 19 Sep, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 01 Aug, 2012 1 commit
-
-
Diego Biurrun authored
-
- 31 Jul, 2012 2 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
This will allow adding dca.c with tables used from other files.
-
- 16 Jul, 2012 2 commits
-
-
Nick Brereton authored
Reviewed-by:
Benjamin Larsson <benjamin@southpole.se> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Nick Brereton authored
Reviewed-by:
Benjamin Larsson <benjamin@southpole.se> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 12 Jul, 2012 1 commit
-
-
Hendrik Leppkes authored
This fixes decoding of certain 7.1 DTS-HD HRA files, as well as matches the spec better. Table 6-22 in the DTS spec labels the two channels "Left/Right surround on side", and not rear. Reviewed-by:
Benjamin Larsson <benjamin@southpole.se> Reviewed-by:
Nick Brereton <nick@nbrereton.net> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-