diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-03 10:09:03 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-03 15:46:16 +0200 |
commit | a91943bcef8c0220e43dcc52007249aa2b1a78a3 (patch) | |
tree | e845a42a0ea0934e6a7788c8c568af5f09dce5a1 /libavformat/librtmp.c | |
parent | 007aedeebf3f42ba44ba5201be77be71ae4d09f6 (diff) | |
download | ffmpeg-a91943bcef8c0220e43dcc52007249aa2b1a78a3.tar.gz |
librtmp: don't abuse a variable for two unrelated things.
Diffstat (limited to 'libavformat/librtmp.c')
-rw-r--r-- | libavformat/librtmp.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c index 4641c5d21e..883ecdfd80 100644 --- a/libavformat/librtmp.c +++ b/libavformat/librtmp.c @@ -81,19 +81,19 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) { LibRTMPContext *ctx = s->priv_data; RTMP *r = &ctx->rtmp; - int rc = 0; + int rc = 0, level; char *filename = s->filename; switch (av_log_get_level()) { default: - case AV_LOG_FATAL: rc = RTMP_LOGCRIT; break; - case AV_LOG_ERROR: rc = RTMP_LOGERROR; break; - case AV_LOG_WARNING: rc = RTMP_LOGWARNING; break; - case AV_LOG_INFO: rc = RTMP_LOGINFO; break; - case AV_LOG_VERBOSE: rc = RTMP_LOGDEBUG; break; - case AV_LOG_DEBUG: rc = RTMP_LOGDEBUG2; break; + case AV_LOG_FATAL: level = RTMP_LOGCRIT; break; + case AV_LOG_ERROR: level = RTMP_LOGERROR; break; + case AV_LOG_WARNING: level = RTMP_LOGWARNING; break; + case AV_LOG_INFO: level = RTMP_LOGINFO; break; + case AV_LOG_VERBOSE: level = RTMP_LOGDEBUG; break; + case AV_LOG_DEBUG: level = RTMP_LOGDEBUG2; break; } - RTMP_LogSetLevel(rc); + RTMP_LogSetLevel(level); RTMP_LogSetCallback(rtmp_log); if (ctx->app || ctx->playpath) { |