summaryrefslogtreecommitdiff
path: root/libavutil/log.c
Commit message (Collapse)AuthorAge
* log: make colored output more colorful.Anton Khirnov2012-05-26
| | | | Green for verbose, cyan for debug.
* Code clean-up for crc.c, lfg.c, log.c, random_see.d, rational.c and tree.c.Yordan Makariev2011-12-03
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Replace some forgotten FFmpeg references by Libav.Diego Biurrun2011-11-02
|
* log: Fix an oob array read.Alex Converse2011-05-08
|
* Replace strncpy() with av_strlcpy().Alex Converse2011-05-03
|
* Fix races in default av_log handlerReinhard Tartler2011-04-29
| | | | | | Prevent competing threads from overwriting (shared) buffers. Original patch by: Michael Niedermayer <michaelni@gmx.at>
* Remove a version check in av_log made unnecessary by the big bump.Diego Biurrun2011-04-20
|
* lavu: remove misc disabled cruftAnton Khirnov2011-04-19
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Recognize FFMPEG_FORCE_NOCOLOR environment variable on Win32Daniel Verkamp2011-01-01
| | | | | | Fixes issue 2461 Originally committed as revision 26186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce FFMPEG_FORCE_NOCOLOR, with the same meaning and use ofStefano Sabatini2010-12-06
| | | | | | NO_COLOR (but properly prefixed for avoiding namespace conflicts). Originally committed as revision 25899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to force colored output.Etienne Buira2010-12-05
| | | | | | Patch by Etienne Buira, etienne d buira d lists a free d fr Originally committed as revision 25888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2010-09-24
| | | | Originally committed as revision 25178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic (rename detect_repeats to is_atty which matches the truth)Michael Niedermayer2010-09-24
| | | | Originally committed as revision 25177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2nd try to fix av_log() repeated detectionMichael Niedermayer2010-09-24
| | | | Originally committed as revision 25174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Limit av_log repeat detection to terminals so as to avoid filling files withMichael Niedermayer2010-09-14
| | | | | | lots of mess. Originally committed as revision 25117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure "Last message repeated" is printed.Michael Niedermayer2010-07-28
| | | | Originally committed as revision 24573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a space after the AVClass prefix.Jai Menon2010-06-25
| | | | | | This improves readability a bit. Originally committed as revision 23767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation on windows CEMartin Storsjö2010-06-14
| | | | Originally committed as revision 23600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* log.c: Use parameter passed to macro instead of the equivalent local variableRamiro Polla2010-06-09
| | | | | | in the only function that uses the macro. Originally committed as revision 23555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add win32 console color output.Ramiro Polla2010-06-09
| | | | | | Based on patches by James Darnley <james dot darnley at gmail dot com>. Originally committed as revision 23554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ansi color array to outside of av_log_default_callback(). Do not passRamiro Polla2010-06-09
| | | | | | | ansi color code to colored_fputs(), and pass instead the error level so the proper color code may be used. Originally committed as revision 23553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename use_ansi_color to use_color so it is not ANSI-specific.Ramiro Polla2010-06-09
| | | | Originally committed as revision 23552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print parent log context too, if available.Michael Niedermayer2010-05-19
| | | | Originally committed as revision 23200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_default_item_name() so Simply AVClasses need 1 function less.Michael Niedermayer2010-05-19
| | | | Originally committed as revision 23198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add means to adjust the log level per context.Michael Niedermayer2010-05-08
| | | | Originally committed as revision 23059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4th try at getting ansi colors working with a default of color=yes_please.Michael Niedermayer2010-04-23
| | | | | | Colors will only be used if the TERM env var is set and NO_COLOR is not set. Originally committed as revision 22957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Trying _WIN32 for win32 detection.Michael Niedermayer2010-04-23
| | | | Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the 2 ANSI ESC codes.Michael Niedermayer2010-04-23
| | | | Originally committed as revision 22952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reenable ANSI colors, use method from VLC as suggested by ramiro.Michael Niedermayer2010-04-23
| | | | | | Please tell us asap if this breaks for your platform & terminal. Originally committed as revision 22951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable ANSI color code until we figured out how to detect ANSI support inMichael Niedermayer2010-04-22
| | | | | | the used terminal. Originally committed as revision 22948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Coloring the log with ANSI.Michael Niedermayer2010-04-22
| | | | | | | | Ive checked this on black and white background and found no problem in terms of readability. flames welcome. Originally committed as revision 22946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | 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
* Make av_log_level static at next lavu major version bump.Ramiro Polla2009-12-03
| | | | Originally committed as revision 20721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compact repeated messages to "Last message repeated x times".Michael Niedermayer2009-02-22
| | | | Originally committed as revision 17531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | 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
* spelling/grammar/consistency review part IIIDiego Biurrun2009-01-28
| | | | Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* C files should #include the header files of the same name.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a useless directive.Benoit Fouet2008-08-06
| | | | Originally committed as revision 14645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentationBenoit Fouet2008-08-06
| | | | Originally committed as revision 14644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print the address of the AVCodecContext in av_log().Alexander Strange2008-07-15
| | | | | | | This makes debug output much easier to read when the same codec is open more than once. Originally committed as revision 14237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_log_get/set_level()Måns Rullgård2007-12-12
| | | | Originally committed as revision 11209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the unaltered Doxygen docs from the log source code to the accompanyingPanagiotis Issaris2007-03-04
| | | | | | header file. Originally committed as revision 8225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adds Doxygen docs for the av_log function.Panagiotis Issaris2007-02-20
| | | | Originally committed as revision 8040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to uninstall a custom log callbackAxel Holzinger2007-01-13
| | | | | | | | | 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
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removing redundant mess next time we break compatiilityMichael Niedermayer2006-07-20
| | | | Originally committed as revision 5804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_log() & friends to libavutilLuca Abeni2006-07-18
Originally committed as revision 5781 to svn://svn.ffmpeg.org/ffmpeg/trunk