mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 10:22:10 +00:00
Merge commit '42ba1c51d9e843135772a3b9e5cf036a37b28bdb'
* commit '42ba1c51d9e843135772a3b9e5cf036a37b28bdb': log: Document AV_LOG_C usage Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
d9ac00ca7a
@ -187,18 +187,20 @@ typedef struct AVClass {
|
||||
|
||||
#define AV_LOG_MAX_OFFSET (AV_LOG_DEBUG - AV_LOG_QUIET)
|
||||
|
||||
/**
|
||||
* Sets additional colors for extended debugging sessions.
|
||||
* Requires 256color terminal support. Use outside debugging is not
|
||||
* recommended.
|
||||
*/
|
||||
|
||||
#define AV_LOG_C(x) (x << 8)
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets additional colors for extended debugging sessions.
|
||||
* @code
|
||||
av_log(ctx, AV_LOG_DEBUG|AV_LOG_C(134), "Message in purple\n");
|
||||
@endcode
|
||||
* Requires 256color terminal support. Uses outside debugging is not
|
||||
* recommended.
|
||||
*/
|
||||
#define AV_LOG_C(x) (x << 8)
|
||||
|
||||
/**
|
||||
* Send the specified message to the log if the level is less than or equal
|
||||
* to the current av_log_level. By default, all logging messages are sent to
|
||||
|
Loading…
Reference in New Issue
Block a user