From 19c9eedc2c90130697144191419556429ae7a28b Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Tue, 13 Apr 2010 22:11:21 +0000 Subject: Plug librtmp logging into av_log. patch by Howard Chu, hyc highlandsun com Originally committed as revision 22875 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/librtmp.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'libavformat/librtmp.c') diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c index b3d78f354d..46aeaffd3a 100644 --- a/libavformat/librtmp.c +++ b/libavformat/librtmp.c @@ -29,6 +29,22 @@ #include #include +static void rtmp_log(int level, const char *fmt, va_list args) +{ + switch (level) { + default: + case RTMP_LOGCRIT: level = AV_LOG_FATAL; break; + case RTMP_LOGERROR: level = AV_LOG_ERROR; break; + case RTMP_LOGWARNING: level = AV_LOG_WARNING; break; + case RTMP_LOGINFO: level = AV_LOG_INFO; break; + case RTMP_LOGDEBUG: level = AV_LOG_VERBOSE; break; + case RTMP_LOGDEBUG2: level = AV_LOG_DEBUG; break; + } + + av_vlog(NULL, level, fmt, args); + av_log(NULL, level, "\n"); +} + static int rtmp_close(URLContext *s) { RTMP *r = s->priv_data; @@ -69,6 +85,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) case AV_LOG_DEBUG: rc = RTMP_LOGDEBUG2; break; } RTMP_LogSetLevel(rc); + RTMP_LogSetCallback(rtmp_log); RTMP_Init(r); if (!RTMP_SetupURL(r, s->filename)) { -- cgit v1.2.3