Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
42ba1c51
Commit
42ba1c51
authored
Apr 03, 2014
by
Luca Barbato
Committed by
Vittorio Giovara
Apr 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log: Document AV_LOG_C usage
And move outside the wrong doxygen group.
parent
28b9ac4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
log.h
libavutil/log.h
+8
-6
No files found.
libavutil/log.h
View file @
42ba1c51
...
@@ -144,16 +144,18 @@ typedef struct AVClass {
...
@@ -144,16 +144,18 @@ typedef struct AVClass {
#define AV_LOG_DEBUG 48
#define AV_LOG_DEBUG 48
/**
/**
* 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
* Send the specified message to the log if the level is less than or equal
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment