- 12 May, 2011 22 commits
-
-
Marton Balint authored
Yet another fix for the code originally designed for use without related_stream. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Michael Niedermayer authored
Calculate quality value once per stream in print_report(). Also fix segfault, as coded_frame can be NULL. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
Format detection and internal frame initialization is moved to a separate init_image() function, which is called when all the tags have been read, and so both BitsPerSample and SamplesPerPixel information has been collected. This fixes decoding of the file 11.tiff from roundup issue #1925. Based on a patch by Kostya Shishkov <kostya.shishkov@gmail.com>. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Stefano Sabatini authored
This is safer and helps debugging. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Yusuke Nakamura authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Måns Rullgård authored
Enabling libpostproc automatically should give it more compile coverage and save the FATE box maintainers some configuration hassles.
-
Clément Bœsch authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Clément Bœsch authored
This avoids the creation of a new AVStream instead of replacing it when a stream reset occurs (track change with some webradios for example). Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Aurelien Jacobs authored
Signed-off-by: Aurelien Jacobs <aurel@gnuage.org> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Baptiste Coudurier authored
Fixes private options. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Baptiste Coudurier authored
yuv range: full 1 / normal 2 Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Alex Converse authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Baptiste Coudurier authored
Fix issue #2624. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
Replace "codec (id=%d)" with "codec with id %d", slightly more readable. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Peter Ross authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Diego Biurrun authored
The _fast integer types provide no realworld benefits, but may introduce portability issues and are just plain ugly.
-
Diego Biurrun authored
int/unsigned is the natural memory access type for CPUs, using sized types for temporary variables, counters and similar just increases code size and can possibly cause a slowdown.
-
Diego Biurrun authored
Adding _POSIX_C_SOURCE to CPPFLAGS globally produces all sorts of problems since it causes certain system functions to be hidden on some (BSD) systems. The solution is to only add the flag on systems that really require it, i.e. glibc-based ones. This change makes BSD systems compile out-of-the-box without the need for adding specific flags manually. It also allows dropping a number of flags set manually on a file-per-file basis, but were only present to work around breakage introduced by the presence of _POSIX_C_SOURCE. Also add _XOPEN_SOURCE to CPPFLAGS for glibc systems. We use XSI extensions in several places already, so it is preferable to define it globally instead of littering source files with individual #defines only needed for glibc.
-
Thierry Foucu authored
If an MP3 file contains the string NSVs, the NSV probe will confuse it for an NSV file. Check for 0xBEEF after a Video/Audio chunk to achieve more accuracy. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Clément Bœsch authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Clément Bœsch authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 11 May, 2011 18 commits
-
-
Ronald S. Bultje authored
Fix handling of input if not in native endianness, and add support for 9/10-bit output. This allows us to force endianness of YUV420P 9/10bit in the H264/10bit fate tests, which should fix them on big-endian systems.
-
Jason Garrett-Glaser authored
Also delete some unused deblock asm macros.
-
Baptiste Coudurier authored
-
Anatoly Nenashev authored
Problem description, preliminary review discussion at http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/127731
-
Ronald S. Bultje authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
default_val was recently changes from double to a union, current code wasn't updated for that.
-
Anton Khirnov authored
-
Reinhard Tartler authored
On cygwin, math.h needs to be included before float.h because of a bug in the system headers. Including libavutil/libm.h first works around this issue. Longer discussion of the topic: http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/128582
-
Baptiste Coudurier authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
Fix decoding of file b.tif, trac issue #168. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
The softfloat functionality is unused, not installed and incomplete. On platforms without floating point units, the compiler provides a softfloat implementation so there is no point in carrying this code around locally.
-
Ronald S. Bultje authored
Tested to fix Haiku H264/10bit fate failures, may also fix others.
-
Diego Biurrun authored
-
Diego Biurrun authored
This fixes the warnings: tests/rotozoom.c:252: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result tests/rotozoom.c:254: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-