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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-04Add LGPL license boilerplate to files lacking it.Diego Biurrun
2011-05-21multiple inclusion guard cleanupDiego Biurrun
Add missing multiple inclusion guards; clean up #endif comments; add missing library prefixes; keep guard names consistent.
2011-04-21lavc: provide the opt.h header until the next bumpAnton Khirnov
AVOptions were moved to libavutil only recently.
2011-04-19lavc: remove the FF_API_SET_STRING_OLD cruft.Anton Khirnov
2011-04-19lavc: remove the FF_API_OPT_SHOW cruft.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-10-01add FF_API_SET_STRING_OLD define to disable the deprecated av_set_string APIAurelien Jacobs
Originally committed as revision 25276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Move AVOptions from libavcodec to libavutilMichael Niedermayer
Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24Deprecate av_opt_show() in favor of a new function av_opt_show2(),Stefano Sabatini
which allows to specify only a subset of all the options to show. Originally committed as revision 25166 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-16Add an experimental AVOption2 that uses an union instead of double for ↵Michael Niedermayer
default_val. Originally committed as revision 20248 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-06Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini
improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?". Originally committed as revision 19122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-14Document av_set_string3() returned error codes.Stefano Sabatini
Originally committed as revision 18829 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-13add the necessary include for LIBAV*_VERSION_*Aurelien Jacobs
Originally committed as revision 16571 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-20Put under #if LIBAVCODEC_VERSION_MAJOR < 53 the deprecated functionsStefano Sabatini
av_set_string() and av_set_string2(), they will be dropped at the next major bump. Originally committed as revision 16243 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-17Implement av_set_string3().Stefano Sabatini
Originally committed as revision 16175 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-13s/#AVClass/AVClass/, consistent with the rest of the doxy.Stefano Sabatini
Originally committed as revision 16085 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-07-28Complete documentation for av_set_string().Stefano Sabatini
Originally committed as revision 14436 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-09Fix the av_set_string() free / alloc issue.Michael Niedermayer
Originally committed as revision 14134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-06Document av_find_opt().Stefano Sabatini
Originally committed as revision 14083 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-01Clarify/simplify documentation for the default_val field in AVOption.Stefano Sabatini
Originally committed as revision 14043 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-23Fix typo in libavcodec/opt.h.Stefano Sabatini
Originally committed as revision 13912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-21Extend documentation for AVOption.Stefano Sabatini
Originally committed as revision 13854 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-06minor spelling/grammar fixesDiego Biurrun
Originally committed as revision 13669 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
2007-12-17Add FF_OPT_TYPE_BINARY and use it to add a cryptokey optionReimar Döffinger
Originally committed as revision 11250 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-07-13Replace non-existing @fixme doxygen tags with @todo.İsmail Dönmez
patch by Ismail Dönmez, ismail pardus.org tr Originally committed as revision 9625 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17include all prerequisites in header filesMåns Rullgård
Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07add av_opt_set_defaults2() which sets just defaults from AVOptions whos ↵Michael Niedermayer
flags match a user specified & mask = flags Originally committed as revision 8280 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07make av_find_opt() available to the public and add a mask+flags parameter to ↵Michael Niedermayer
search for specific AVOptions Originally committed as revision 8279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-21Constantize AVOption, solve few warnings, patch from flameeyes@gentoo.org ↵Luca Barbato
aka "the other Diego" Originally committed as revision 7601 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-11make AVOptions default value field work.Panagiotis Issaris
Patch by Panagiotis Issaris % takis P issaris A uhasselt P be % Original thread: Date: Sep 8, 2006 3:22 PM Subject: [Ffmpeg-devel] [PATCH 1/2] Enable usage of AVOption default value Originally committed as revision 6224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-10Add official LGPL license headers to the files that were missing them.Diego Biurrun
Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-09-12avoid stdio.hMichael Niedermayer
Originally committed as revision 4585 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-09-11flags and named constants with type checking of course for AVOptionMichael Niedermayer
spliting AVOption specific stuff out of avcodec.h into opt.h Originally committed as revision 4581 to svn://svn.ffmpeg.org/ffmpeg/trunk