summaryrefslogtreecommitdiffstats
path: root/libavutil/log.h
Commit message (Collapse)AuthorAgeFilesLines
* misc typo, style and wording fixesDiego Biurrun2012-12-181-5/+6
|
* log.h: make AVClass a named structJindrich Makovicka2011-10-121-1/+1
| | | | | | | | 'struct AVClass' is used in the code since 641c7afe3c17334b81e3e2eef88f1751eb68f89f, but AVClass is typedeffed as an anonymous struct. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVOptions: add new API for enumerating children.Anton Khirnov2011-10-121-4/+12
| | | | | | | | | This will allow the caller to enumerate child contexts in a generic way and since the API is recursive, it also allows for deeper nesting (e.g. AVFormatContext->AVIOContext->URLContext) This will also allow the new setting/reading API to transparently apply to children contexts.
* Use av_printf_format to check the usage of printf style functionsMartin Storsjö2011-06-231-5/+2
| | | | | | | | This helps catching cases where the format string doesn't match what is passed in, or injection bugs where user data is passed in as format string. Signed-off-by: Martin Storsjö <martin@martin.st>
* AVOptions: add av_opt_find() as a replacement for av_find_opt.Anton Khirnov2011-06-161-0/+7
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace dprintf with av_dlogLuca Barbato2011-01-291-0/+11
| | | | dprintf clashes with POSIX.1-2008
* 2nd try to fix av_log() repeated detectionMichael Niedermayer2010-09-241-0/+11
| | | | Originally committed as revision 25174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add parameter names to av_log/av_vlog function declarations.Diego Biurrun2010-07-021-3/+3
| | | | | | Doxygen gets confused without an explicit parameter name. Originally committed as revision 23972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-301-2/+2
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make it possible for a log context to keep track of its parent context.Michael Niedermayer2010-05-191-0/+8
| | | | | | | This is usefull to keep track and display relations where things are a bit more complex (like AVProtocols or demuxers used by demuxers and such) Originally committed as revision 23199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_default_item_name() so Simply AVClasses need 1 function less.Michael Niedermayer2010-05-191-0/+1
| | | | Originally committed as revision 23198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add means to adjust the log level per context.Michael Niedermayer2010-05-081-0/+6
| | | | Originally committed as revision 23059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Jai Menon2010-04-281-1/+1
| | | | Originally committed as revision 22988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer2010-04-281-0/+8
| | | | | | ABI issues. Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless definition of struct AVCLASS.Stefano Sabatini2009-07-121-3/+2
| | | | Originally committed as revision 19402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini2009-06-061-1/+1
| | | | | | | | 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
* Remove all remaining code that was disabled through the major version bump.Diego Biurrun2009-03-091-14/+0
| | | | Originally committed as revision 17903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IIIDiego Biurrun2009-01-281-7/+7
| | | | Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IIDiego Biurrun2009-01-281-7/+7
| | | | Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add the necessary include for LIBAV*_VERSION_*Aurelien Jacobs2009-01-131-0/+1
| | | | Originally committed as revision 16571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-311-3/+3
| | | | | | | | | 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
* minor wording fixDiego Biurrun2008-05-061-1/+1
| | | | Originally committed as revision 13068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor spelling fixDiego Biurrun2008-05-061-2/+2
| | | | Originally committed as revision 13066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enhance documentation for AVClassStefano Sabatini2008-04-241-5/+19
| | | | | | Patch by Stefano Sabatini stefanodotsabatini-lalaatpostedotit Originally committed as revision 12934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless extern keyword.Stefano Sabatini2008-04-111-7/+7
| | | | | | patch by Stefano Sabatini: stefano sabatini-lala poste it Originally committed as revision 12790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_log_get/set_level()Måns Rullgård2007-12-121-4/+3
| | | | Originally committed as revision 11209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-171-3/+3
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the unaltered Doxygen docs from the log source code to the accompanyingPanagiotis Issaris2007-03-041-0/+14
| | | | | | header file. Originally committed as revision 8225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase the av_log() levels, and add some documentation for themLuca Abeni2007-01-211-0/+39
| | | | Originally committed as revision 7614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to uninstall a custom log callbackAxel Holzinger2007-01-131-0/+1
| | | | | | | | | patch by Axel Holzinger % aholzinger A gmx P de % original thread: date: Jan 11, 2007 4:54 PM subject: [Ffmpeg-devel] [PATCH] uninstall custom log callback Originally committed as revision 7446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make option field constBaptiste Coudurier2006-11-161-1/+1
| | | | Originally committed as revision 7093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add official LGPL license headers to the files that were missing them.Diego Biurrun2006-09-101-0/+18
| | | | Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removing redundant mess next time we break compatiilityMichael Niedermayer2006-07-201-0/+5
| | | | Originally committed as revision 5804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_log() & friends to libavutilLuca Abeni2006-07-181-0/+37
Originally committed as revision 5781 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud