- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 31 Jul, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 15 May, 2013 1 commit
-
-
Martin Storsjö authored
This is required if we return other error codes than explicitly -1, which so far has been the only other possible return value besides 0. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 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
-
- 07 Mar, 2013 1 commit
-
-
Diego Biurrun authored
-
- 15 Feb, 2013 1 commit
-
-
Anton Khirnov authored
-
- 21 Jan, 2013 1 commit
-
-
Ronald S. Bultje authored
This allows us to get rid of them on the next major bump. All of the above are functionally irrelevant, and most of them are unused, except the vp3 one, which is used wrongly in the bfin arch optimizations.
-
- 06 Jan, 2013 1 commit
-
-
Anton Khirnov authored
-
- 04 Dec, 2012 2 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.
-
- 11 Nov, 2012 3 commits
-
-
Alberto Delmás authored
The alternative to zeroing on init is setting the corrupted flag in all cases where pal_pic is not fully written, at the cost of added complexity. Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
Kostya Shishkov authored
-
Alberto Delmás authored
Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 06 Sep, 2012 2 commits
-
-
Alberto Delmás authored
It calculates the sum of power of two series, which can be done in one step. Suggested by Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
Alberto Delmás authored
Reported by Michael Niedermayer <michaelni@gmx.at> Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
- 03 Sep, 2012 2 commits
-
-
Alberto Delmás authored
Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
Alberto Delmás authored
Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
- 31 Aug, 2012 2 commits
-
-
Alberto Delmás authored
This way it won't interfere with WMV9 initialisation inside MSS2 decoder and avplay will play it fine. Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
Alberto Delmás authored
Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-