diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-05-08 20:41:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-05-08 20:41:20 +0000 |
commit | 3fe1ec39c6eeba3348e3824df0d185525c321d57 (patch) | |
tree | b3adbecf0ab4d8158bc9b7a9e7e6c7a5046aaab2 /libavutil/log.h | |
parent | c12caa32b2d9fd8f76b4268a835731935b1cd794 (diff) | |
download | ffmpeg-3fe1ec39c6eeba3348e3824df0d185525c321d57.tar.gz |
Add means to adjust the log level per context.
Originally committed as revision 23059 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 1c3e490139..d4bc7554b3 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -56,6 +56,12 @@ typedef struct { */ int version; + + /** + * Offset in the structure where log_level_offset is stored. + * 0 means there is no such variable + */ + int log_level_offset_offset; } AVClass; /* av_log API */ |