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
2013-10-15tableprint: Fix use of a size_t print with MSVCDerek Buitenhuis
%zu was introduced in C99, so MSVC has its own way to handle it, namely %Iu. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2011-12-07doxygen: Replace '\' by '@' in Doxygen markup tags.Diego Biurrun
2011-07-02doxygen: Prefer member groups over grouping into modulesReinhard Tartler
Before this, almost all module groups have been used for grouping functions and fields in structures semantically. This causes them to not appear properly in the file documentation and needlessly clutters up the "Modules" index. Additionally, this commit streamlines some spelling and appearances.
2011-06-24doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun
Signed-off-by: Diego Biurrun <diego@biurrun.de>
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-04Add missing #includes to make headers self-contained.Diego Biurrun
This fixes 'make checkheaders'.
2011-05-19Collapse tableprint.c into tableprint.h.Diego Biurrun
tableprint.c serves little purpose on its own and removing it allows building the table generator programs with the normal HOSTPROGS Makefile rules.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-06-27tablegen: implement and use WRITE_ARRAY macrosDiego Pettenò
Two macros (WRITE_ARRAY and WRITE_ARRAY_2D) take the prefix (modifiers) (not all tables are static, and they might not be constant either), the type, and the name of the array. It'll be copied with same name and type, and with the correct size of the currently-defined object. Originally committed as revision 23821 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-27tableprint: use the type name as-is for the functions' names.Diego Pettenò
This drops one parameter from the functions' macros, and require structures to be typedeffed, but ensures that it is possible to map 1-to-1 the type to the function name. Originally committed as revision 23820 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Support writing 2d float arrays.Michael Kostylev
Patch by Michael Kostylev, michael D kostylev A gmail Originally committed as revision 23105 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-01Change/simplify the tableprint/tablegen API.Reimar Döffinger
Originally committed as revision 22761 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-21Extend and move macros to create table printing functions to header.Reimar Döffinger
Simplifies creating custom functions for printing DV VLC-related tables. Originally committed as revision 22621 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-14Add some more table-printing functions needed for future patches.Reimar Döffinger
Originally committed as revision 22524 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-09Add support for hard-coded MDCT-related ff_sine_windows tables.Reimar Döffinger
Originally committed as revision 21108 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-27Add support for hardcoding the motionpixels rgb to yuv table.Reimar Döffinger
Originally committed as revision 20627 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-28Add support for hardcoding the mpegaudiodec tables.Reimar Döffinger
Reduces .bss size by about 194 kB. Originally committed as revision 20400 to svn://svn.ffmpeg.org/ffmpeg/trunk