- 04 Oct, 2013 1 commit
-
-
Clément Bœsch authored
See b2bed932.
-
- 04 Sep, 2013 1 commit
-
-
Nicolas George authored
Some parts of the code have been known to react badly to empty frames; they should not, but there is no need to take risks.
-
- 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 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes regression Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 30 Aug, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 12 Jun, 2012 1 commit
-
-
Paul B Mahol authored
Also fix build dependencies while here. Reviewed-by:
Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-