- 23 Jun, 2014 1 commit
-
-
Diego Biurrun authored
-
- 09 Jun, 2014 2 commits
-
-
Michael Niedermayer authored
The max depth is 3 Found-by: Christophe Gisquet <christophe.gisquet@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Carl Eugen Hoyos authored
Fixes a regression since fb3e3808 similar to ticket #2661, reported by fluffrabbit at aol dot com. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 01 Apr, 2014 1 commit
-
-
Diego Biurrun authored
This avoids compiler warnings about argument and specifier type mismatch.
-
- 22 Mar, 2014 1 commit
-
-
Diego Biurrun authored
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 21 Jun, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes regression / Ticket2661 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 10 Jun, 2013 4 commits
-
-
Michael Niedermayer authored
Thanks-to: Paranoialmaniac Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Stephen Hutchinson authored
Also prevents an error since the native decoder (if enabled) is always used to probe Ut Video-encoded files, even if the user forces libutvideo to be the decoder. Without this patch, the probe would fail, and the video wouldn't get properly handed over, resulting in failure to set codec parameters. When the native decoder is disabled, libutvideo can probe and initialize decoding without issues. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Yusuke Nakamura authored
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-
Yusuke Nakamura authored
Signed-off-by: Kostya Shishkov <kostya.shishkov@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
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It's got_frame, not data size
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 24 Aug, 2012 1 commit
-
-
Jan Ekström authored
Put the zero length check in place of code that was never used during decoding, as zero-length slices were generally refused in decode_frame(). Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-
- 20 Aug, 2012 1 commit
-
-
Jan Ekström authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 17 Aug, 2012 1 commit
-
-
Jan Ekström authored
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 22 Jun, 2012 2 commits
-
-
Hendrik Leppkes authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Carl Eugen Hoyos authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 21 Jun, 2012 1 commit
-
-
Hendrik Leppkes authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 18 Jun, 2012 1 commit
-
-
Carl Eugen Hoyos authored
Fixes ticket #1215
-
- 20 Apr, 2012 1 commit
-
-
Jan Ekström authored
General cosmetics, such as keeping lines under 80 characters, fixing a couple of typos (predition -> prediction) and a general style fix that was pointed out by Derek when I was having my sliced multithreading patch in review by him. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 15 Apr, 2012 2 commits
-
-
Derek Buitenhuis authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Derek Buitenhuis authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 24 Mar, 2012 2 commits
-
-
Ronald S. Bultje authored
Fixes crash during slice size reading if slice_end goes negative. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
Kostya Shishkov authored
Spotted by Антон.
-
- 15 Feb, 2012 2 commits
-
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 06 Feb, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 28 Jan, 2012 1 commit
-
-
Alex Converse authored
-
- 08 Jan, 2012 1 commit
-
-
Aneesh Dogra authored
>> time ./avconv -i file.avi -f null - Before : real 0m7.784s After : real 0m3.662s Tested on a Intel Core i3 Processor (2 cores, 4 threads). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 03 Jan, 2012 1 commit
-
-
Kostya Shishkov authored
-
- 05 Nov, 2011 1 commit
-
-
Reimar Döffinger authored
I am not sure these new values are correct, not am I sure the semantics are a good idea since we do not seem to make any use of them but they caused a lot of confusion, but this seems to make things closer to matching the documentation. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 29 Oct, 2011 2 commits
-
-
Kostya Shishkov authored
If the frame is filled with the same colour, encoder may produce no data and the fill value is indicated by zero code length (the rest of symbols will have 0xFF for code length, meaning invalid). So such Huffman trees should be treated specially. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Kostya Shishkov authored
Luma slices in YUV420 colourspace should have height in multiple of two since they have the same line of chrominance data corresponding to pair of them. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 19 Oct, 2011 1 commit
-
-
Kostya Shishkov authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-