- 10 Jul, 2013 2 commits
-
-
Luca Barbato authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
Luca Barbato authored
-
- 15 Mar, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 13 Mar, 2013 1 commit
-
-
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 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 29 Jan, 2013 1 commit
-
-
Piotr Bandurski authored
Fixes ticket #2197. Signed-off-by: Peter Ross <pross@xvid.org>
-
- 27 Jan, 2013 1 commit
-
-
Paul B Mahol authored
Fixes #2193. Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 26 Jan, 2013 2 commits
-
-
Anton Khirnov authored
-
Paul B Mahol authored
Fixes #2192. Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 11 Dec, 2012 1 commit
-
-
Peter Ross authored
-
- 04 Dec, 2012 3 commits
-
-
Anton Khirnov authored
It's got_frame, not data size
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
Peter Ross authored
Signed-off-by: Peter Ross <pross@xvid.org>
-
- 29 Nov, 2012 1 commit
-
-
Piotr Bandurski authored
-
- 26 Nov, 2012 2 commits
-
-
Peter Ross authored
Signed-off-by: Peter Ross <pross@xvid.org>
-
Peter Ross authored
Signed-off-by: Peter Ross <pross@xvid.org> Reviewed-by: Paul B Mahol <onemda@gmail.com>
-
- 25 Nov, 2012 1 commit
-
-
Peter Ross authored
The palette is organised into 'hold' and 'modify' pairs, hence why the first palette entry is pal[1]. Fixes ticket #1701. Signed-off-by: Peter Ross <pross@xvid.org> Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 23 Nov, 2012 1 commit
-
-
Michael Niedermayer authored
The first parameter is a pointer and NULL is more correct Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 19 Nov, 2012 1 commit
-
-
Peter Ross authored
Fixes ticket #1046. Signed-off-by: Peter Ross <pross@xvid.org>
-
- 18 Nov, 2012 1 commit
-
-
Piotr Bandurski authored
Fixes ticket #967. Reviewed-by: Peter Ross
-
- 09 Nov, 2012 2 commits
-
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 30 Oct, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 12 Oct, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 24 Jul, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 23 Jul, 2012 2 commits
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
Peter Ross authored
This addresses the problem that some HAM pictures were decoded with complete transparency as described in the 'iff: ANIM suppport ' thread on ffmpeg-devel. The decoder was already setting alpha correctly for CMAP palettes, just not HAM palettes.
-
- 17 Jun, 2012 1 commit
-
-
Paul B Mahol authored
Saves few bytes if only some of them in same file are enabled. Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 30 May, 2012 1 commit
-
-
Paul B Mahol authored
Fixes #1368. Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 28 May, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket1362 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 22 Apr, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 06 Apr, 2012 1 commit
-
-
Martin Storsjö authored
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 29 Mar, 2012 1 commit
-
-
Piotr Bandurski authored
Based on fix by Peter Ross for ticket #1054. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 19 Mar, 2012 1 commit
-
-
Carl Eugen Hoyos authored
-
- 13 Mar, 2012 1 commit
-
-
Peter Ross authored
This prevents the segfault reported by ticket #1054
-
- 12 Mar, 2012 1 commit
-
-
ami_stuff authored
more robust Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 09 Mar, 2012 1 commit
-
-
Piotr Bandurski authored
Fixes trac #1045. Thanks to Peter Ross for his help with this patch. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-