- 10 Jan, 2016 1 commit
-
-
Michael Niedermayer authored
Fixes: dvdec_left_shift.avi Found-by: Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 04 Oct, 2015 1 commit
-
-
Vittorio Giovara authored
Silence a warning due to frame assignment in dvenc. All uses of the reference in dvdec are read only, except the ones in the main decoding function, so use the frame pointer directly there.
-
- 27 Jul, 2015 2 commits
-
-
Vittorio Giovara authored
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
Vittorio Giovara authored
Express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 25 Jul, 2015 1 commit
-
-
Michael Niedermayer authored
avcodec/dvdec: only attempt to conceal errors based on STA inconsistencies when error_concealment is set This allows the user to disable it in the hypothetical case that STA values are wrong Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 24 Jul, 2015 2 commits
-
-
Michael Niedermayer authored
Fixes Ticket1589 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Improves decoding of Ticket1589 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 19 Apr, 2015 1 commit
-
-
Vittorio Giovara authored
-
- 27 Feb, 2015 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 15 Nov, 2014 1 commit
-
-
Luca Barbato authored
The buffer is always valid. Bug-Id: CID 700682
-
- 26 Oct, 2014 1 commit
-
-
Christophe Gisquet authored
The encoder has its own tables and does not access the idct_factor member of the DVVideoContext structure. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 15 Oct, 2014 1 commit
-
-
Anton Khirnov authored
When decoding, this field holds the inverse of the framerate that can be written in the headers for some codecs. Using a field called 'time_base' for this is very misleading, as there are no timestamps associated with it. Furthermore, this field is used for a very different purpose during encoding. Add a new field, called 'framerate', to replace the use of time_base for decoding.
-
- 19 Sep, 2014 1 commit
-
-
James Almer authored
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
-
- 09 Sep, 2014 1 commit
-
-
Gabriel Dume authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 05 Sep, 2014 1 commit
-
-
Diego Biurrun authored
This avoids a trillion warnings from MSVC.
-
- 02 Aug, 2014 1 commit
-
-
Diego Biurrun authored
-
- 09 Jul, 2014 1 commit
-
-
Anton Khirnov authored
-
- 02 Jul, 2014 1 commit
-
-
Michael Niedermayer authored
Fixes CID700682 again Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 30 Jun, 2014 1 commit
-
-
Diego Biurrun authored
-
- 27 Jun, 2014 1 commit
-
-
Diego Biurrun authored
-
- 20 Jun, 2014 2 commits
-
-
Justin Ruggles authored
-
Anton Khirnov authored
Instead, store them in the context and compute on each parameter change.
-
- 09 Dec, 2013 1 commit
-
-
Anton Khirnov authored
-
- 15 Nov, 2013 1 commit
-
-
Diego Biurrun authored
This is necessary to avoid target config settings bleeding into the host compilation process with hardcoded tables and the DV VLC tables no longer present as static tables in a header file.
-
- 31 Oct, 2013 1 commit
-
-
Anton Khirnov authored
-
- 28 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
fixes reading out of an empty bitstream Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 31 Mar, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket2390 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 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 1 commit
-
-
Anton Khirnov authored
-
- 08 Feb, 2013 1 commit
-
-
Diego Biurrun authored
-
- 23 Jan, 2013 1 commit
-
-
Diego Biurrun authored
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 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.
-
- 15 Oct, 2012 2 commits
-
-
Tomas Härdin authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Tomas Härdin authored
This allows the next commit to parse the FS flag. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 03 Aug, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 06 May, 2012 1 commit
-
-
Diego Biurrun authored
libavcodec/dvdec.c:344:12: warning: assignment discards ‘const’ qualifier from pointer target type
-