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
2014-04-04log: Unbreak windows supportLuca Barbato
Add the missing define.
2014-04-03log: Do not assume the TERM variable is always setLuca Barbato
2014-04-03log: Remove undefined behaviourLuca Barbato
2014-04-03log: Support for 256color terminalsLuca Barbato
And provide extended coloring capabilities for debugging. The default colors do not change in 256 more to keep supporting people using Black on White, White on Black and Solarized terminals. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2014-02-12log: Have function parameter names match between .c and .h fileDiego Biurrun
This fixes two related Doxygen warnings.
2013-07-04log: pass the correct parameters to missing_feature_sampleLuca Barbato
CC:libav-stable@libav.org
2013-03-13Add av_log_{ask_for_sample|missing_feature} replacements to libavutilDiego Biurrun
This allows reporting missing features and requesting samples from all libraries in a standard way; with a simplified API.
2012-12-05Remove pointless #undefs of previously forbidden functions.Anton Khirnov
2012-11-30avutil: Use a configure check to enable windows console functionsMartin Storsjö
Not all versions or API subsets of windows have these functions. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-11-30avutil: Include io.h with a separate condition from windows console functionsMartin Storsjö
Not all versions of windows have the console color functions, while io.h might be needed for isatty (which can be found in unistd.h or io.h). Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-26log: Include io.h on windowsRonald S. Bultje
This is required for isatty, which exists on MSVC and is found by configure, but is provided by io.h instead of unistd.h. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-24log: Only include unistd.h if configure found itMartin Storsjö
MSVC has isatty (in io.h), but not unistd.h. (isatty isn't called at all for windows, since there's a special case block for that.) Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-22log: include unistd.h only when neededMans Rullgard
The only symbol this file uses from unistd.h is isatty(). By including the header only when this function is used, the file can be built on systems without unistd.h (which presumably also lack isatty). Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-26log: make colored output more colorful.Anton Khirnov
Green for verbose, cyan for debug.
2011-12-04Code clean-up for crc.c, lfg.c, log.c, random_see.d, rational.c and tree.c.Yordan Makariev
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-11-02Replace some forgotten FFmpeg references by Libav.Diego Biurrun
2011-05-09log: Fix an oob array read.Alex Converse
2011-05-04Replace strncpy() with av_strlcpy().Alex Converse
2011-04-30Fix races in default av_log handlerReinhard Tartler
Prevent competing threads from overwriting (shared) buffers. Original patch by: Michael Niedermayer <michaelni@gmx.at>
2011-04-20Remove a version check in av_log made unnecessary by the big bump.Diego Biurrun
2011-04-19lavu: remove misc disabled cruftAnton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-01Recognize FFMPEG_FORCE_NOCOLOR environment variable on Win32Daniel Verkamp
Fixes issue 2461 Originally committed as revision 26186 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Introduce FFMPEG_FORCE_NOCOLOR, with the same meaning and use ofStefano Sabatini
NO_COLOR (but properly prefixed for avoiding namespace conflicts). Originally committed as revision 25899 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-05Allow to force colored output.Etienne Buira
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
2010-09-24indentMichael Niedermayer
Originally committed as revision 25178 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24Cosmetic (rename detect_repeats to is_atty which matches the truth)Michael Niedermayer
Originally committed as revision 25177 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-242nd try to fix av_log() repeated detectionMichael Niedermayer
Originally committed as revision 25174 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-14Limit av_log repeat detection to terminals so as to avoid filling files withMichael Niedermayer
lots of mess. Originally committed as revision 25117 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-28Make sure "Last message repeated" is printed.Michael Niedermayer
Originally committed as revision 24573 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-25Print a space after the AVClass prefix.Jai Menon
This improves readability a bit. Originally committed as revision 23767 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-14Fix compilation on windows CEMartin Storsjö
Originally committed as revision 23600 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-09log.c: Use parameter passed to macro instead of the equivalent local variableRamiro Polla
in the only function that uses the macro. Originally committed as revision 23555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-09Add win32 console color output.Ramiro Polla
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
2010-06-09Move ansi color array to outside of av_log_default_callback(). Do not passRamiro Polla
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
2010-06-09Rename use_ansi_color to use_color so it is not ANSI-specific.Ramiro Polla
Originally committed as revision 23552 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-20Print parent log context too, if available.Michael Niedermayer
Originally committed as revision 23200 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-20av_default_item_name() so Simply AVClasses need 1 function less.Michael Niedermayer
Originally committed as revision 23198 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-09Add means to adjust the log level per context.Michael Niedermayer
Originally committed as revision 23059 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-244th try at getting ansi colors working with a default of color=yes_please.Michael Niedermayer
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
2010-04-23Trying _WIN32 for win32 detection.Michael Niedermayer
Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Merge the 2 ANSI ESC codes.Michael Niedermayer
Originally committed as revision 22952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Reenable ANSI colors, use method from VLC as suggested by ramiro.Michael Niedermayer
Please tell us asap if this breaks for your platform & terminal. Originally committed as revision 22951 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Disable ANSI color code until we figured out how to detect ANSI support inMichael Niedermayer
the used terminal. Originally committed as revision 22948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Coloring the log with ANSI.Michael Niedermayer
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
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-12-03Make av_log_level static at next lavu major version bump.Ramiro Polla
Originally committed as revision 20721 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-22Compact repeated messages to "Last message repeated x times".Michael Niedermayer
Originally committed as revision 17531 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