diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-20 21:48:03 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-20 21:48:03 +0000 |
commit | 1790d3b330800e8ec6844392aa501fb558ae25e1 (patch) | |
tree | eb0d148b691cdee96aae8b836c8dc144584465be /cmdutils.h | |
parent | 4792d1e792788ea3bab2e9aed9d345fe9c9c7ba2 (diff) | |
download | ffmpeg-1790d3b330800e8ec6844392aa501fb558ae25e1.tar.gz |
Move log_callback_help to cmdutils.[hc], for allowing sharing.
Originally committed as revision 25149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index d48abab30e..68a29b4033 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -45,6 +45,12 @@ extern AVFormatContext *avformat_opts; extern struct SwsContext *sws_opts; /** + * Trivial log callback. + * Only suitable for show_help and similar since it lacks prefix handling. + */ +void log_callback_help(void* ptr, int level, const char* fmt, va_list vl); + +/** * Fallback for options that are not explicitly handled, these will be * parsed through AVOptions. */ |