- 04 Oct, 2013 1 commit
-
-
Clément Bœsch authored
See b2bed932.
-
- 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.
-
- 13 Feb, 2013 1 commit
-
-
Nicolas George authored
-
- 09 Dec, 2012 1 commit
-
-
Clément Bœsch authored
This should fix build (include is necessary for ff_get_buffer).
-
- 20 Dec, 2011 2 commits
-
-
Nicolas George authored
This supersedes commit 154c0a8c. The bug was also reported by Rafaël Carré.
-
Michael Niedermayer authored
This unbreaks compilation Found by: jb Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 03 Dec, 2011 1 commit
-
-
Nicolas George authored
Original fix by Michael Niedermayer. Slightly modified to avoid the now redundant multiplications and divisions in the main code path.
-
- 25 Oct, 2011 2 commits
-
-
Nicolas George authored
The situation was not clear when support was added but it is now: CELT and Opus are really two different codecs. The current code supports CELT via libcelt, not Opus. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Nicolas George authored
-
- 24 Oct, 2011 1 commit
-
-
Nicolas George authored
This fixes a regression introduced by the merging of patch fc2dd2c7. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 23 Apr, 2011 2 commits
-
-
Carl Eugen Hoyos authored
Fixes ticket #97.
-
Carl Eugen Hoyos authored
-
- 20 Apr, 2011 1 commit
-
-
Nicolas George authored
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
-