- 01 Aug, 2011 5 commits
-
-
Dustin Brody authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Alex Converse authored
-
Alex Converse authored
-
Anton Khirnov authored
It doesn't work and is therefore useless.
-
Anton Khirnov authored
It's unused an serves no purpose.
-
- 31 Jul, 2011 3 commits
-
-
Dustin Brody authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Yu-Jie Lin authored
Draw the current grabbing region for indication. Signed-off-by: Yu-Jie Lin <livibetter@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Yu-Jie Lin authored
-follow_mouse centered|PIXELS move grabbing region to where mouse pointer at the center; or only move when pointer reaches within PIXELS to the edge. Signed-off-by: Yu-Jie Lin <livibetter@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 30 Jul, 2011 2 commits
-
-
Kostya Shishkov authored
When converting RGB format to RGB format with the same bits per sample, unscaled path performs conversion on the whole buffer at once. For non-multiple-of-16 BGR24 to RGB24 conversion it means that padding at the end of line will be converted too. Since it may be of arbitrary length (e.g. 8 bytes), operating on the whole buffer produces obviously wrong results. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Luca Barbato authored
The link target was missing $(EXAMPLES)
-
- 29 Jul, 2011 7 commits
-
-
Alex Converse authored
This prevents out of bounds reads when extradata is being decoded.
-
Jason Garrett-Glaser authored
-
Alex Converse authored
A loop control variable was shadowed inside the loop and never updated.
-
Mike Williams authored
mpegts_read_header is used by both mpegts and mpegtsraw, so this erro check is no longer valid. Signed-off-by: Mike Williams <mike@mikebwilliams.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Dustin Brody authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
It's more readable and less prone to breakage.
-
Mans Rullgard authored
This fixes build with clang. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 28 Jul, 2011 10 commits
-
-
Dustin Brody authored
h263dec: Propagate AV_LOG_ERRORs from slice decoding through frame decoding with sufficient error recognition Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Mans Rullgard authored
Inspection of compiled code shows gcc handles these fine on its own. Benchmarking also shows no measurable speed difference. Removing the remaining cases in get_cabac_bypass_sign_x86() does cause more substantial changes to the compiled code with uncertain impact. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Jason Garrett-Glaser authored
-
Ronald S. Bultje authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Stefano Sabatini authored
Avoid brittle and obfuscating reference to a global. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
- 27 Jul, 2011 9 commits
-
-
Mans Rullgard authored
This is already set by dsputil_init_ppc() and is best done in only one place. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
The functions and tables initialised in this function rely on an initialised DSPContext. Make sure they always have one. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Mans Rullgard authored
Apparently the gcc warning doesn't trigger on these. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Kostya Shishkov authored
Since IDCT transforming 32-bit input to 8-bit output is unusual and unpractical for most codecs, move Bink IDCT into separate context. Get rid of an additional permutation table while at it since SIMD support for Bink IDCT is unlikely to be implemented in foreseeable future. Quantisation tables also have to change type to signed for proper dequantisation of DCT coefficients. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 26 Jul, 2011 3 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Mans Rullgard authored
The upcoming gcc 4.7 has more advanced constant propagation resulting some inline asm operands becoming constants and thus emitted as literals, sometimes in contexts where this results in invalid instructions. This patch changes the constraints of the relevant operands to "rm" thus forcing a valid type. While obviously suboptimal, this is what older gcc versions already did, and there is no change to the code generated with these. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 25 Jul, 2011 1 commit
-
-
Diego Biurrun authored
-