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
2008-03-22typo: occured --> occurredDiego Biurrun
Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-19Remove redundant ARCH_POWERPC #ifdef around HAVE_ALTIVEC.Diego Biurrun
Originally committed as revision 12495 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-18simplify ALIGN_MASK definitionMåns Rullgård
Originally committed as revision 12483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-18get register names from x86_cpu.hMåns Rullgård
Originally committed as revision 12482 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-15typo fixesDiego Biurrun
Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-15typosDiego Biurrun
Originally committed as revision 12443 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-13typo fixesDiego Biurrun
Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-10misc spelling fixesDiego Biurrun
Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08cosmetics: Remove useless empty line.Diego Biurrun
Originally committed as revision 12365 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.Diego Biurrun
Originally committed as revision 12364 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-07simplify library version handlingMåns Rullgård
Originally committed as revision 12362 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-06consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentMåns Rullgård
Originally committed as revision 12354 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-26less preprocessor magic in version number macrosMåns Rullgård
Originally committed as revision 12246 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Install headers in $prefix/include/$libnameMåns Rullgård
Install each library's headers in $prefix/include/$libname. The installed headers use #include "lib*/*.h"; applications are expected to do the same. Specify only $prefix/include in .pc files. Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20#include avutil.h in postprocess.hMåns Rullgård
Originally committed as revision 12155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-20Clean up lib* version definitionsMåns Rullgård
Updating version numbers now requires changing only one place. Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-03constMichael Niedermayer
Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-02Make src const.Michael Niedermayer
Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-02void arithmeticMichael Niedermayer
Originally committed as revision 11812 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-30Missed a variable in postprocess.c that should use DECLARE_ASM_CONST as wellReimar Döffinger
Originally committed as revision 11670 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-30Simplify: use DECLARE_ASM_CONSTReimar Döffinger
Originally committed as revision 11669 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-14Build both static and shared libs from the same object.Diego Pettenò
This makes libpostproc consistent with all the other libraries. patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com Originally committed as revision 11526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10unusedMichael Niedermayer
Originally committed as revision 11492 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10Make MMX vectors constants.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11488 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10Make pp_help a constant array of characters to move it to .rodata.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11487 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10Reduce the size of the replaceTable entries.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-09Remove clip_table as it is not used anymore.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò (flameeyes gmail com) Originally committed as revision 11468 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-07Make the av_class member of PPContext a poiner to constant AVClass.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11445 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04Make pp_help a constant pointer to constant characters, moves it partiallyDiego Pettenò
in .rodata (the actual string) and partially in .data.relro (the pointer), but doesn't change ABI. Patch by Diego 'Flameeyes' Pettenò flameeyes at gmail com Originally committed as revision 11390 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-03Make pp_get_mode_by_name_and_quality accept a constant string.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes at gmail com Originally committed as revision 11381 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-03Make filterDelimiters and optionDelimiters two static constant array ofDiego Pettenò
characters, should move them to .rodata. Patch by Diego 'Flameeyes' Pettenò flameeyes § gmail dot com Originally committed as revision 11380 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02spellingVitor Sessak
Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-30Declare libpostproc prerequisites directly instead of using a layer ofDiego Biurrun
indirection. This moves build system workarounds closer to libpostproc where they are really needed. Originally committed as revision 10874 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-17Use filename as multiple inclusion guard.Diego Biurrun
Originally committed as revision 10760 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-24Move Apple gcc AltiVec vector declaration syntax to libavutil.Diego Biurrun
Originally committed as revision 10207 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-23Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).Diego Biurrun
Originally committed as revision 10190 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-21Uppercase variable overlooked in last commit.Diego Biurrun
Originally committed as revision 9777 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-06Remove mangle.h, it is just a duplicate of parts of libavutil/internal.h.Diego Biurrun
Originally committed as revision 9500 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05license header consistency cosmeticsDiego Biurrun
Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-02Remove leading underscores from specifiers, they are reserved.Diego Biurrun
Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-02Fix 'make checkheaders'.Diego Biurrun
Originally committed as revision 9460 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17add a comment to indicate which #endif belong to which #defineGuillaume Poirier
Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17add multiple inclusion guards to headersMåns Rullgård
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc typo fixesDiego Biurrun
Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc spelling fixesDiego Biurrun
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-11Move libpostproc-specific uninstallation command to the libpostproc Makefile.Diego Biurrun
Originally committed as revision 9277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-28Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.Diego Biurrun
Originally committed as revision 9145 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-17Use DECLARE_ALIGNED for alignment in libpostprocessReimar Döffinger
Originally committed as revision 9043 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-16Remove extern C declarations for C++.Diego Biurrun
FFmpeg is pure C and not all public headers have the declarations. Originally committed as revision 9037 to svn://svn.ffmpeg.org/ffmpeg/trunk