- 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
-
- 22 Apr, 2012 1 commit
-
-
Michael Niedermayer authored
The new lowres support is limited to decoders where lowres decoding is possible in high quality. I was not able to measure any speed difference, but if one is found the 2-3 lines that might affect speed can be made compile time conditional Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 21 Apr, 2012 1 commit
-
-
Mans Rullgard authored
This feature is complex, of questionable utility, and slows down normal decoding. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 16 Apr, 2012 2 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- 06 Apr, 2012 1 commit
-
-
Martin Storsjö authored
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 28 Mar, 2012 1 commit
-
-
Diego Biurrun authored
dvdec.c uses nothing from dv_tablegen.h. As a welcome side-effect, this fixes compilation of that file with hardcoded tables enabled.
-
- 27 Mar, 2012 1 commit
-
-
Diego Biurrun authored
-