Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-08Remove some non-compiling debug messages.Diego Biurrun
2011-06-08H264: x86 predict init cosmetics.Daniel Kang
Change indentation and whitespace; also move HAVE_YASM blocks. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-08ac3enc: Fix linking of AC-3 encoder without the E-AC-3 encoder.Diego Biurrun
The AC-3 encoder unconditionally references some symbols from the E-AC-3 encoder; make those references conditional to fix linking.
2011-06-07Move E-AC-3 encoder functions to a separate eac3enc.c file.Justin Ruggles
2011-06-07ac3enc: remove convenience macro, #define DEBUGJustin Ruggles
2011-06-07ac3enc: remove unused #defineJustin Ruggles
2011-06-07vc1: re-initialize tables after width/height change.John Stebbins
read_sequence_header can change width/height; therefore, re-initialize all tables if width/height changed Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-06-07iirfilter: fix biquad filter coefficients.Justin Ruggles
The current filter implementation should only have the cx coefficients divided by gain in order to give the correct output scale.
2011-06-07shorten: Remove stray DEBUG #define and corresponding av_dlog statement.Diego Biurrun
2011-06-07vorbisdec: Restore mistakenly removed debug output.Diego Biurrun
2011-06-07Replace some av_log/printf + #ifdef combinations by av_dlog.Diego Biurrun
2011-06-07Replace some nonstandard DEBUG_* preprocessor directives by plain DEBUG.Diego Biurrun
2011-06-07svq1dec: Fix debug statements that referenced non-existing context.Diego Biurrun
2011-06-07Drop unnecessary directory prefixes from #include directives.Diego Biurrun
2011-06-06s302m: fix resampling for 16 and 24bits.Baptiste Coudurier
2011-06-06ARM: remove MUL64 and MAC64 inline asmMans Rullgard
Current GCC versions know how to generate these instructions properly and avoiding inline asm gives better code. The MULH function for ARMv5 uses the same instruction and is also not needed any more. The MLS64 macro remains since negating an input would normally not be allowed as it would fail for INT_MIN. In our uses, the inputs never have this value and thus negating is safe. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-06utils.c: fix crash with threading enabled.Ronald S. Bultje
2011-06-06Add x86 assembly for some 10-bit H.264 intra predict functions.Daniel Kang
Parts are inspired from the 8-bit H.264 predict code in Libav. Other parts ported from x264 with relicensing permission from author. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-05Skip tableprint.h during 'make checkheaders'.Diego Biurrun
It is only used on the host and may not compile on the target.
2011-06-05Drop explicit filenames from @file Doxygen tags.Diego Biurrun
The filename is unnecessary and brittle across file renames.
2011-06-05Skip generated table headers during 'make checkheaders'.Diego Biurrun
2011-06-05lavf,lavc: free avoptions in a generic way.Anton Khirnov
It's simpler and less error-prone. Fixes some memleaks along the way.
2011-06-05tableprint: Restore mistakenly deleted common.h #include for FF_ARRAY_ELEMS.Diego Biurrun
This fixes the build with hardcoded tables enabled. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-05tiff: print log in case of unknown / unsupported tag.Stefano Sabatini
Helps debugging. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-06-05tiff: fix linesize for mono-white/black formats.Stefano Sabatini
Fix decoding of file Test_1bpp.tif Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-06-05Fix build of eval-test programMans Rullgard
eval.c has moved to libavutil, move the TESTPROGS entry too. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-05ac3enc: extract all exponents for the frame at onceJustin Ruggles
2011-06-05ARM: remove MULL inline asmMans Rullgard
Reasonable gcc versions get this one right on their own. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04mathops: use MUL64 macro where it forms part of other opsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04Skip headers not designed to work standalone during 'make checkheaders'.Diego Biurrun
2011-06-04Add missing #includes to make headers self-contained.Diego Biurrun
This fixes 'make checkheaders'.
2011-06-04musepack: remove unnecessary #include from mpcdata.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-04musepack: remove extraneous mpcdata.h inclusionsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03mpegvideoenc: fix multislice fate tests with threading disabled.Ronald S. Bultje
The MPEG encoding code assumes that n_threads == n_slices, and thus it should use n_slices even if threading itself is disabled.
2011-06-03Mark some variables with av_unusedMans Rullgard
Most of these variables are only used in av_dlog statements, some are required but not used by other macros. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini
This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-03svq3: Check negative mb_type to fix potential crash.Baptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-03svq3: Move svq3-specific fields to their own context.Baptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-03Remove unused get_psnr() prototypeVladimir Pantelic
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun
2011-06-03vorbis: Remove non-compiling debug statement.Diego Biurrun
2011-06-03vorbis: Remove pointless DEBUG #ifdef around debug output macros.Diego Biurrun
2011-06-03cook: Remove non-compiling debug output.Diego Biurrun
random_state was changed from an int to a struct and can no longer be printed as easily as before.
2011-06-03Remove pointless #ifdefs around function declarations in a header.Diego Biurrun
2011-06-03Replace #ifdef + av_log() combinations by av_dlog().Diego Biurrun
2011-06-03Replace custom debug output functions by av_dlog().Diego Biurrun
2011-06-03cook: Remove unused debug functions.Diego Biurrun
2011-06-03targa: fix big-endian buildMans Rullgard
2011-06-02Remove unused variablesMans Rullgard
2011-06-02H264/MPEG frame-level multi-threading.Alexander Strange
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>