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
2009-08-24Add necessary #include for config.h.Diego Biurrun
Originally committed as revision 19692 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23Remove useless #include <unistd.h> from many filesMåns Rullgård
Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29blackfin: disable broken dsputil functionsMåns Rullgård
Originally committed as revision 18977 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29blackfin: add missing const in function prototypesMåns Rullgård
Originally committed as revision 18976 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29blackfin: use optimised (I)DCT only when ctx->(i)dct_algo is autoMåns Rullgård
Originally committed as revision 18975 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-29blackfin: use DCT function pointer in dct_quantize_bfin()Måns Rullgård
Originally committed as revision 18974 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-09Remove file name from file headers.Diego Biurrun
It provides no useful information and breaks on renames. Originally committed as revision 17097 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-03Delete unnecessary 'extern' keywords.Diego Biurrun
Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-16Convert asm keyword into __asm__.Diego Pettenò
Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Globally rename the header inclusion guard names.Stefano Sabatini
Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-16FLAT objects cannot have multiple sections, so using the L1 attributes breaksMike Frysinger
linking. The FDPIC relocs also break for any other format. Thus check the compiler environment and select the appropriate sections/relocs. patch by Mike Frysinger, vapier.adi a gmail d com Originally committed as revision 12125 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun
Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add missing multiple inclusion guards.Diego Biurrun
Originally committed as revision 10763 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-05license header consistency cosmetics.Diego Biurrun
Originally committed as revision 10668 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-05blackfin optimized vp3 transform and infastructure for idctMarc Hoffman
Originally committed as revision 10667 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17blackfin vsad primitivesMarc Hoffman
Originally committed as revision 10521 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-17properly tell the compiler that A0 and A1 are clobberedMarc Hoffman
Originally committed as revision 10520 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-31Use a consistent multiple inclusion guard.Diego Biurrun
Originally committed as revision 10267 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-30Blackfin 32bit multiplication primitives MULH MUL16Marc Hoffman
Originally committed as revision 10262 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-13special handling for vp3 idct, use the c referenceMarc Hoffman
Originally committed as revision 10105 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-22removing dependency on bfin_sram.h, which is not used right nowMarc Hoffman
Originally committed as revision 9388 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-22renaming L1CODE to attribute_l1_text, which is defined in dsputil_bfin.hMarc Hoffman
Originally committed as revision 9387 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-13removing underscores from block profiling renaming to xx_Marc Hoffman
Originally committed as revision 9303 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12Blackfin dct_quantize_bfin routineMarc Hoffman
2x performance boost in performing quantization for mpeg encoding Originally committed as revision 9293 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12Blackfin IDCT has no special permutation it uses normal orderMarc Hoffman
Originally committed as revision 9292 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-16Add libavcodec to compiler include flags in order to simplify headerRonald S. Bultje
include paths in the source files. mostly from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net Originally committed as revision 9034 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-14Blackfin DSP utilities: add DEFUN_ENDMarc Hoffman
DEFUN_END macro adds the size information to the symbol table. This is introduces no functionnal change, it's only meant to simplify e.g. debugging Patch by Marc Hoffman %mmh A pleasantst P com% Original thread: Date: May 5, 2007 12:26 PM Subject: [FFmpeg-devel] PATCH Blackfin DSP utilities, DEFUN_END added Originally committed as revision 9019 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-03Remove #if 0 code.Diego Biurrun
Originally committed as revision 8605 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-02bfin dsputils, basic pixel operations sads, diffs, motion compensationMarc Hoffman
and standard IEEE 8x8 block transforms patch by Marc Hoffman, mmh pleasantst com Originally committed as revision 8594 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-17ADI Blackfin optimizationsMichael Benjamin
patch by Michael Benjamin, neuroptik gmail com Originally committed as revision 6282 to svn://svn.ffmpeg.org/ffmpeg/trunk